[Libreoffice-commits] core.git: sw/qa

Zdeněk Crhonek (via logerrit) logerrit at kemper.freedesktop.org
Thu Nov 21 05:39:55 UTC 2019


 sw/qa/uitest/writer_tests6/tdf128431.py |   63 ++++++++++++++++++++++++++++++++
 1 file changed, 63 insertions(+)

New commits:
commit 6b1fb5eaaa170b578797819a83dccf7c89397829
Author:     Zdeněk Crhonek <zcrhonek at gmail.com>
AuthorDate: Wed Nov 20 22:16:19 2019 +0100
Commit:     Zdenek Crhonek <zcrhonek at gmail.com>
CommitDate: Thu Nov 21 06:38:34 2019 +0100

    uitest for bug tdf#128431
    
    Change-Id: I390ac076136140f6aaa391212afeca49ebbd1dc3
    Reviewed-on: https://gerrit.libreoffice.org/83355
    Tested-by: Jenkins
    Reviewed-by: Zdenek Crhonek <zcrhonek at gmail.com>

diff --git a/sw/qa/uitest/writer_tests6/tdf128431.py b/sw/qa/uitest/writer_tests6/tdf128431.py
new file mode 100644
index 000000000000..17dde483e6e5
--- /dev/null
+++ b/sw/qa/uitest/writer_tests6/tdf128431.py
@@ -0,0 +1,63 @@
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+from uitest.framework import UITestCase
+from uitest.uihelper.common import select_pos, get_state_as_dict
+from com.sun.star.uno import RuntimeException
+from com.sun.star.awt.GradientStyle import LINEAR
+from com.sun.star.drawing.HatchStyle import SINGLE
+from com.sun.star.drawing.BitmapMode import REPEAT
+from com.sun.star.drawing.RectanglePoint import MIDDLE_MIDDLE
+
+from libreoffice.uno.propertyvalue import mkPropertyValues
+#Bug 128431 - Synchronize padding in header borders it is not working
+
+class tdf128431(UITestCase):
+
+    def test_tdf128431_pageFormat_sync_padding(self):
+        self.ui_test.create_doc_in_start_center("writer")
+        document = self.ui_test.get_component()
+
+        #set cm Tools-options-StarOffice Writer-General
+        self.ui_test.execute_dialog_through_command(".uno:OptionsTreeDialog")  #optionsdialog
+        xDialog = self.xUITest.getTopFocusWindow()
+
+        xPages = xDialog.getChild("pages")
+        xWriterEntry = xPages.getChild('3')                 # Writer
+        xWriterEntry.executeAction("EXPAND", tuple())
+        xWriterGeneralEntry = xWriterEntry.getChild('0')
+        xWriterGeneralEntry.executeAction("SELECT", tuple())          #General
+        xMetric = xDialog.getChild("metric")
+        props = {"TEXT": "Centimeter"}
+        actionProps = mkPropertyValues(props)
+        xMetric.executeAction("SELECT", actionProps)
+        xOKBtn = xDialog.getChild("ok")
+        self.ui_test.close_dialog_through_button(xOKBtn)
+
+        self.ui_test.execute_dialog_through_command(".uno:PageDialog")
+        xDialog = self.xUITest.getTopFocusWindow()
+        tabcontrol = xDialog.getChild("tabcontrol")
+        select_pos(tabcontrol, 6) #borders
+
+        sync = xDialog.getChild("sync")
+        bottomft = xDialog.getChild("bottommf")
+        topft = xDialog.getChild("topmf")
+        rightft = xDialog.getChild("rightmf")
+        leftft = xDialog.getChild("leftmf")
+
+        self.assertEqual(get_state_as_dict(sync)["Selected"], "true")
+        bottomft.executeAction("UP", tuple())
+        self.assertEqual(get_state_as_dict(bottomft)["Text"], "0.10 cm")
+        self.assertEqual(get_state_as_dict(topft)["Text"], "0.10 cm")
+        self.assertEqual(get_state_as_dict(rightft)["Text"], "0.10 cm")
+        self.assertEqual(get_state_as_dict(leftft)["Text"], "0.10 cm")
+
+        okBtn = xDialog.getChild("ok")
+        self.ui_test.close_dialog_through_button(okBtn)
+
+        self.ui_test.close_doc()
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:


More information about the Libreoffice-commits mailing list