sw/qa/uitest/data/tdf159418.odt |binary sw/qa/uitest/writer_tests4/tdf159418.py | 49 ++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+)
New commits: commit b54dbc842491349ea1fd144988feb7e25ea5f106 Author: Xisco Fauli <xiscofa...@libreoffice.org> AuthorDate: Wed Mar 20 16:48:58 2024 +0100 Commit: Xisco Fauli <xiscofa...@libreoffice.org> CommitDate: Thu Mar 21 08:52:26 2024 +0100 tdf#159418: sw: Add UItest Change-Id: Ic41eac4909e85544f5c195cebb59e32745c09f40 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165070 Tested-by: Xisco Fauli <xiscofa...@libreoffice.org> Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org> diff --git a/sw/qa/uitest/data/tdf159418.odt b/sw/qa/uitest/data/tdf159418.odt new file mode 100644 index 000000000000..730b36fff3b0 Binary files /dev/null and b/sw/qa/uitest/data/tdf159418.odt 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: