[Libreoffice-commits] core.git: uitest/impress_tests

Xisco Fauli anistenis at gmail.com
Tue Mar 7 20:06:57 UTC 2017


 uitest/impress_tests/tdf105677.py |   50 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)

New commits:
commit c10088a535b8a0ef4da2773547423ef169d08743
Author: Xisco Fauli <anistenis at gmail.com>
Date:   Tue Mar 7 18:37:51 2017 +0100

    tdf#105677: Add uitest
    
    Change-Id: I00365541922785f4f33e762d034e921d5502d5f0
    Reviewed-on: https://gerrit.libreoffice.org/34955
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Xisco FaulĂ­ <xiscofauli at libreoffice.org>

diff --git a/uitest/impress_tests/tdf105677.py b/uitest/impress_tests/tdf105677.py
new file mode 100644
index 0000000..1c60c7d
--- /dev/null
+++ b/uitest/impress_tests/tdf105677.py
@@ -0,0 +1,50 @@
+#
+# 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
+
+class tdf105677(UITestCase):
+
+    def test_background_dialog(self):
+
+        self.ui_test.create_doc_in_start_center("impress")
+
+        xTemplateDlg = self.xUITest.getTopFocusWindow()
+        xCancelBtn = xTemplateDlg.getChild("cancel")
+        self.ui_test.close_dialog_through_button(xCancelBtn)
+
+        self.ui_test.execute_dialog_through_command(".uno:PageSetup")
+
+        xPageSetupDlg = self.xUITest.getTopFocusWindow()
+        tabcontrol = xPageSetupDlg.getChild("tabcontrol")
+        select_pos(tabcontrol, "1")
+
+        xColorBtn = xPageSetupDlg.getChild("btncolor")
+        xColorBtn.executeAction("CLICK", tuple())
+
+        xOkBtn = xPageSetupDlg.getChild("ok")
+        xOkBtn.executeAction("CLICK", tuple())
+
+        xConfirmDlg = self.xUITest.getTopFocusWindow()
+
+        xYesBtn = xConfirmDlg.getChild("no")
+        xYesBtn.executeAction("CLICK", tuple())
+
+        document = self.ui_test.get_component()
+
+        self.assertEqual(document.DrawPages.getByIndex(0).Background.FillColor, 7512015)
+
+        #Somehow we need to use undo twice in order to revert the background
+        self.xUITest.executeCommand(".uno:Undo")
+        self.xUITest.executeCommand(".uno:Undo")
+
+        document = self.ui_test.get_component()
+        self.assertEqual(document.DrawPages.getByIndex(0).Background, None)
+
+        self.ui_test.close_doc()
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:


More information about the Libreoffice-commits mailing list