diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2024-03-20 16:48:58 +0100 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2024-03-21 08:52:26 +0100 |
commit | b54dbc842491349ea1fd144988feb7e25ea5f106 (patch) | |
tree | 7358daff6d9429b5f41cdaf2781d5e05f0607ece /sw/qa/uitest/writer_tests4 | |
parent | 241e2d68664e0e53cf02fe9986462c4a9ecd8d42 (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/uitest/writer_tests4')
-rw-r--r-- | sw/qa/uitest/writer_tests4/tdf159418.py | 49 |
1 files changed, 49 insertions, 0 deletions
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: |