summaryrefslogtreecommitdiff
path: root/sw/qa
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2024-03-20 16:48:58 +0100
committerXisco Fauli <xiscofauli@libreoffice.org>2024-03-21 08:52:26 +0100
commitb54dbc842491349ea1fd144988feb7e25ea5f106 (patch)
tree7358daff6d9429b5f41cdaf2781d5e05f0607ece /sw/qa
parent241e2d68664e0e53cf02fe9986462c4a9ecd8d42 (diff)
tdf#159418: sw: Add UItest
Change-Id: Ic41eac4909e85544f5c195cebb59e32745c09f40 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165070 Tested-by: Xisco Fauli <xiscofauli@libreoffice.org> Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'sw/qa')
-rw-r--r--sw/qa/uitest/data/tdf159418.odtbin0 -> 21787 bytes
-rw-r--r--sw/qa/uitest/writer_tests4/tdf159418.py49
2 files changed, 49 insertions, 0 deletions
diff --git a/sw/qa/uitest/data/tdf159418.odt b/sw/qa/uitest/data/tdf159418.odt
new file mode 100644
index 000000000000..730b36fff3b0
--- /dev/null
+++ b/sw/qa/uitest/data/tdf159418.odt
Binary files differ
diff --git a/sw/qa/uitest/writer_tests4/tdf159418.py b/sw/qa/uitest/writer_tests4/tdf159418.py
new file mode 100644
index 000000000000..76143a5dce71
--- /dev/null
+++ b/sw/qa/uitest/writer_tests4/tdf159418.py
@@ -0,0 +1,49 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This file is part of the LibreOffice project.
+#
+# 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, get_url_for_data_file
+
+class tdf159418(UITestCase):
+
+ def test_tdf159418(self):
+ with self.ui_test.load_file(get_url_for_data_file("tdf159418.odt")):
+
+ with self.ui_test.execute_dialog_through_command(".uno:IndexEntryDialog", close_button="close") as xDialog:
+
+ xEntry = xDialog.getChild("entryed")
+ xNext = xDialog.getChild("next")
+ xPrevious = xDialog.getChild("previous")
+
+ # Without the fix in place, this test would have failed with
+ # AssertionError: 'true' != 'false'
+ self.assertEqual("true", get_state_as_dict(xNext)["Visible"])
+ self.assertEqual("true", get_state_as_dict(xNext)["Enabled"])
+ self.assertEqual("true", get_state_as_dict(xPrevious)["Visible"])
+ self.assertEqual("false", get_state_as_dict(xPrevious)["Enabled"])
+ self.assertEqual("Function", get_state_as_dict(xEntry)["Text"])
+
+ xNext.executeAction("CLICK", tuple())
+
+ self.assertEqual("true", get_state_as_dict(xNext)["Visible"])
+ self.assertEqual("true", get_state_as_dict(xPrevious)["Visible"])
+ self.assertEqual("true", get_state_as_dict(xPrevious)["Visible"])
+ self.assertEqual("true", get_state_as_dict(xPrevious)["Enabled"])
+ self.assertEqual("vector", get_state_as_dict(xEntry)["Text"])
+
+ xPrevious.executeAction("CLICK", tuple())
+
+ self.assertEqual("true", get_state_as_dict(xNext)["Visible"])
+ self.assertEqual("true", get_state_as_dict(xNext)["Enabled"])
+ self.assertEqual("true", get_state_as_dict(xPrevious)["Visible"])
+ self.assertEqual("false", get_state_as_dict(xPrevious)["Enabled"])
+ self.assertEqual("Function", get_state_as_dict(xEntry)["Text"])
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab: