diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-04-11 20:07:31 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-04-11 22:47:15 +0200 |
commit | 9fcd2dc178ebc68617d7c8212bbc62db72bae469 (patch) | |
tree | b347f5995647249d64f2f9e58e1fad89d33ba2e2 /sw | |
parent | b5e2a004dc355c4e6a8abeac9d1d414f25d8db2c (diff) |
tdf#148395: sw: Add UItest
Change-Id: Id0e49ba6f0834dc85a26f4d9064dfe029a50fa35
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132837
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/qa/uitest/writer_dialogs/openDialogs.py | 3 | ||||
-rw-r--r-- | sw/qa/uitest/writer_tests4/tdf148395.py | 48 |
2 files changed, 50 insertions, 1 deletions
diff --git a/sw/qa/uitest/writer_dialogs/openDialogs.py b/sw/qa/uitest/writer_dialogs/openDialogs.py index b4537836ec00..ed3585e2923d 100644 --- a/sw/qa/uitest/writer_dialogs/openDialogs.py +++ b/sw/qa/uitest/writer_dialogs/openDialogs.py @@ -39,7 +39,8 @@ dialogs = [ # tested in sw/qa/uitest/writer_tests2/exchangeDatabase.py # {"command": ".uno:InsertBreak", "closeButton": "cancel"}, # tested in uitest/writer_tests/insertBreakDialog.py - {"command": ".uno:InsertObject", "closeButton": "cancel"}, + # {"command": ".uno:InsertObject", "closeButton": "cancel"}, + # tested in sw/qa/uitest/writer_tests4/tdf148395.py # {"command": ".uno:InsertSection", "closeButton": "cancel"}, # tested in sw/qa/uitest/writer_tests7/tdf140863.py {"command": ".uno:InsertFrame", "closeButton": "cancel"}, diff --git a/sw/qa/uitest/writer_tests4/tdf148395.py b/sw/qa/uitest/writer_tests4/tdf148395.py new file mode 100644 index 000000000000..813b0028ed33 --- /dev/null +++ b/sw/qa/uitest/writer_tests4/tdf148395.py @@ -0,0 +1,48 @@ +# -*- 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 +from uitest.uihelper.common import select_pos + +class Tdf148395(UITestCase): + + def test_tdf148395(self): + + with self.ui_test.create_doc_in_start_center("writer") as document: + + with self.ui_test.execute_dialog_through_command(".uno:InsertObject") as xDialog: + xTypes = xDialog.getChild("types") + xCreateNew = xDialog.getChild("createnew") + + self.assertEqual('true', get_state_as_dict(xCreateNew)['Checked']) + + xSelectedEntry = get_state_as_dict(xTypes)['SelectEntryText'] + self.assertTrue('Spreadsheet' in xSelectedEntry ) + self.assertEqual('5', get_state_as_dict(xTypes)['Children']) + + for i in range(5): + xTypes.executeAction("TYPE", mkPropertyValues({"KEYCODE": "DOWN"})) + xSelectedEntry = get_state_as_dict(xTypes)['SelectEntryText'] + if 'Chart' in xSelectedEntry: + break + + self.assertEqual(1, document.EmbeddedObjects.Count) + self.assertEqual("SwXTextEmbeddedObject", document.CurrentSelection.getImplementationName()) + + xChartMainTop = self.xUITest.getTopFocusWindow() + xChartMain = xChartMainTop.getChild("chart_window") + xSeriesObj = xChartMain.getChild("CID/Page=") + + # Without the fix in place, this test would have crashed here + with self.ui_test.execute_dialog_through_action(xSeriesObj, "COMMAND", mkPropertyValues({"COMMAND": "DiagramArea"})) as xDialog: + pass + +# vim: set shiftwidth=4 softtabstop=4 expandtab: |