diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2020-05-29 13:36:09 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2020-05-29 14:57:57 +0200 |
commit | d5971a5b1ec19b3c8ff39b32fc9bc57f1083b8ab (patch) | |
tree | ff963695d0ee2543f287d393c3a44d9ec6e4c391 | |
parent | 198546d0fae471a8a1808b337008faa8bfa457a7 (diff) |
tdf#131963: sw: Add UItest
Change-Id: I44a3ce4c4a032a22882563567fdb966e6c14922c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95134
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
-rw-r--r-- | sw/qa/uitest/writer_tests/data/tdf131963.docx | bin | 0 -> 34251 bytes | |||
-rw-r--r-- | sw/qa/uitest/writer_tests7/tdf131963.py | 43 |
2 files changed, 43 insertions, 0 deletions
diff --git a/sw/qa/uitest/writer_tests/data/tdf131963.docx b/sw/qa/uitest/writer_tests/data/tdf131963.docx Binary files differnew file mode 100644 index 000000000000..15db34ee9dca --- /dev/null +++ b/sw/qa/uitest/writer_tests/data/tdf131963.docx diff --git a/sw/qa/uitest/writer_tests7/tdf131963.py b/sw/qa/uitest/writer_tests7/tdf131963.py new file mode 100644 index 000000000000..6039ab569fec --- /dev/null +++ b/sw/qa/uitest/writer_tests7/tdf131963.py @@ -0,0 +1,43 @@ +# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*- +# +# 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.path import get_srcdir_url + +def get_url_for_data_file(file_name): + return get_srcdir_url() + "/sw/qa/uitest/writer_tests/data/" + file_name + +class tdf131963(UITestCase): + + def test_tdf131963(self): + writer_doc = self.ui_test.load_file(get_url_for_data_file("tdf131963.docx")) + + self.xUITest.executeCommand(".uno:SelectAll") + self.xUITest.executeCommand(".uno:Copy") + self.ui_test.execute_dialog_through_command(".uno:PasteSpecial") + xDialog = self.xUITest.getTopFocusWindow() + + xList = xDialog.getChild('list') + + for childName in xList.getChildren(): + xChild = xList.getChild(childName) + if get_state_as_dict(xChild)['Text'] == "Rich text formatting (RTF)": + break + + xChild.executeAction("SELECT", tuple()) + self.assertEqual(get_state_as_dict(xList)['SelectEntryText'], "Rich text formatting (RTF)") + + xOkBtn = xDialog.getChild("ok") + self.ui_test.close_dialog_through_button(xOkBtn) + + # Without the fix in place, it would have crashed here + + self.ui_test.close_doc() + +# vim: set shiftwidth=4 softtabstop=4 expandtab: + |