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

Zdeněk Crhonek zcrhonek at gmail.com
Fri Nov 24 09:05:40 UTC 2017


 uitest/writer_tests/data/3pages.odt |binary
 uitest/writer_tests/goToPage.py     |   40 ++++++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

New commits:
commit ee64bf10051f9dce5c9983e715e7dce9b3ca1535
Author: Zdeněk Crhonek <zcrhonek at gmail.com>
Date:   Mon Nov 20 22:31:02 2017 +0100

    uitest - writer Go to page dialog
    
    Change-Id: I3088bb4b802b533db46dc3ab1d9d2fd241aa1fb0
    Reviewed-on: https://gerrit.libreoffice.org/45009
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Miklos Vajna <vmiklos at collabora.co.uk>

diff --git a/uitest/writer_tests/data/3pages.odt b/uitest/writer_tests/data/3pages.odt
new file mode 100644
index 000000000000..73097d91305e
Binary files /dev/null and b/uitest/writer_tests/data/3pages.odt differ
diff --git a/uitest/writer_tests/goToPage.py b/uitest/writer_tests/goToPage.py
new file mode 100644
index 000000000000..63a21f04d840
--- /dev/null
+++ b/uitest/writer_tests/goToPage.py
@@ -0,0 +1,40 @@
+#
+# 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 libreoffice.uno.propertyvalue import mkPropertyValues
+from uitest.uihelper.common import get_state_as_dict
+import time
+from uitest.path import get_srcdir_url
+
+def get_url_for_data_file(file_name):
+    return get_srcdir_url() + "/uitest/writer_tests/data/" + file_name
+
+class GoToPage_dialog(UITestCase):
+
+   def test_go_to_page(self):
+    writer_doc = self.ui_test.load_file(get_url_for_data_file("3pages.odt"))
+    xWriterDoc = self.xUITest.getTopFocusWindow()
+    xWriterEdit = xWriterDoc.getChild("writer_edit")
+
+    self.ui_test.execute_dialog_through_command(".uno:GotoPage")
+    xDialog = self.xUITest.getTopFocusWindow()
+    xPageText = xDialog.getChild("page")
+    xPageText.executeAction("TYPE", mkPropertyValues({"TEXT":"2"}))
+    xOkBtn = xDialog.getChild("ok")
+    xOkBtn.executeAction("CLICK", tuple())
+
+    self.assertEqual(get_state_as_dict(xWriterEdit)["CurrentPage"], "2")
+
+    self.ui_test.execute_dialog_through_command(".uno:GotoPage")
+    xDialog = self.xUITest.getTopFocusWindow()
+    xPageText = xDialog.getChild("page")
+    xPageText.executeAction("TYPE", mkPropertyValues({"TEXT":"3a"}))
+    xOkBtn = xDialog.getChild("ok")
+    xOkBtn.executeAction("CLICK", tuple())
+
+    self.assertEqual(get_state_as_dict(xWriterEdit)["CurrentPage"], "3")
+
+    self.ui_test.close_doc()


More information about the Libreoffice-commits mailing list