sc/qa/uitest/chart/chartDataLabels.py |   41 ++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

New commits:
commit 647958099600923d9ba3a57101891f62de326f4b
Author:     Xisco Fauli <xiscofa...@libreoffice.org>
AuthorDate: Wed Sep 30 19:37:23 2020 +0200
Commit:     Xisco Fauli <xiscofa...@libreoffice.org>
CommitDate: Fri Oct 2 09:47:00 2020 +0200

    tdf#136430, tdf#136573: sc: Add UItest
    
    Change-Id: Ieeea326c567e6ea74340b094ec1e89276110c444
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103727
    Tested-by: Jenkins
    Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org>

diff --git a/sc/qa/uitest/chart/chartDataLabels.py 
b/sc/qa/uitest/chart/chartDataLabels.py
index 378670faec51..9db1cf454766 100644
--- a/sc/qa/uitest/chart/chartDataLabels.py
+++ b/sc/qa/uitest/chart/chartDataLabels.py
@@ -7,6 +7,7 @@
 from uitest.framework import UITestCase
 from uitest.uihelper.common import get_state_as_dict
 from uitest.uihelper.common import select_pos
+from uitest.uihelper.common import change_measurement_unit
 from uitest.uihelper.calc import enter_text_to_cell
 from libreoffice.calc.document import get_cell_by_position
 from libreoffice.uno.propertyvalue import mkPropertyValues
@@ -320,4 +321,44 @@ class chartDataLabels(UITestCase):
     self.assertEqual(xDataSeries[0].NumberFormat, xFormat)
     self.ui_test.close_doc()
 
+   def test_tdf136573(self):
+    calc_doc = self.ui_test.load_file(get_url_for_data_file("dataLabels.ods"))
+    xCalcDoc = self.xUITest.getTopFocusWindow()
+    gridwin = xCalcDoc.getChild("grid_window")
+
+    change_measurement_unit(self, "Centimeter")
+
+    gridwin.executeAction("SELECT", mkPropertyValues({"OBJECT": "Object 1"}))
+    gridwin.executeAction("ACTIVATE", tuple())
+    xChartMainTop = self.xUITest.getTopFocusWindow()
+    xChartMain = xChartMainTop.getChild("chart_window")
+
+    # Select the first label
+    xDataLabel = 
xChartMain.getChild("CID/MultiClick/CID/D=0:CS=0:CT=0:Series=0:DataLabels=:DataLabel=0")
+    xDataLabel.executeAction("SELECT", tuple())
+
+    self.ui_test.execute_dialog_through_action(xDataLabel, "COMMAND", 
mkPropertyValues({"COMMAND": "TransformDialog"}))
+
+    xDialog = self.xUITest.getTopFocusWindow()
+    self.assertEqual("0.43", 
get_state_as_dict(xDialog.getChild("MTR_FLD_POS_X"))['Value'])
+    self.assertEqual("2.84", 
get_state_as_dict(xDialog.getChild("MTR_FLD_POS_Y"))['Value'])
+
+    xCanBtn = xDialog.getChild("cancel")
+    xCanBtn.executeAction("CLICK", tuple())
+
+    xChartMain.executeAction("TYPE", mkPropertyValues({"KEYCODE": "UP"}))
+    xChartMain.executeAction("TYPE", mkPropertyValues({"KEYCODE": "LEFT"}))
+
+    self.ui_test.execute_dialog_through_action(xDataLabel, "COMMAND", 
mkPropertyValues({"COMMAND": "TransformDialog"}))
+
+    # Check the position has changed after moving the label using the arrows 
keys
+    xDialog = self.xUITest.getTopFocusWindow()
+    self.assertEqual("0.33", 
get_state_as_dict(xDialog.getChild("MTR_FLD_POS_X"))['Value'])
+    self.assertEqual("2.74", 
get_state_as_dict(xDialog.getChild("MTR_FLD_POS_Y"))['Value'])
+
+    xCanBtn = xDialog.getChild("ok")
+    xCanBtn.executeAction("CLICK", tuple())
+
+    self.ui_test.close_doc()
+
 # vim: set shiftwidth=4 softtabstop=4 expandtab:
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to