sw/qa/uitest/table/tdf135693.py              |   37 +++++++++++++++++++++++++++
 sw/qa/uitest/writer_tests/data/tdf135693.odt |binary
 2 files changed, 37 insertions(+)

New commits:
commit 3ad21220992e348ccfc59ce5ffb67ee9dd0e4b88
Author:     Xisco Fauli <xiscofa...@libreoffice.org>
AuthorDate: Fri Sep 11 16:49:26 2020 +0200
Commit:     Xisco Fauli <xiscofa...@libreoffice.org>
CommitDate: Fri Sep 11 23:42:02 2020 +0200

    tdf#135693: sw: Add UItest
    
    Change-Id: If38daeb35ae8ba09aac50490a15c66dc0650f784
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102485
    Tested-by: Jenkins
    Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org>

diff --git a/sw/qa/uitest/table/tdf135693.py b/sw/qa/uitest/table/tdf135693.py
new file mode 100644
index 000000000000..31a6a176bb00
--- /dev/null
+++ b/sw/qa/uitest/table/tdf135693.py
@@ -0,0 +1,37 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+
+from uitest.framework import UITestCase
+from uitest.path import get_srcdir_url
+from uitest.uihelper.common import select_pos
+from uitest.uihelper.common import get_state_as_dict
+
+def get_url_for_data_file(file_name):
+    return get_srcdir_url() + "/sw/qa/uitest/writer_tests/data/" + file_name
+
+class tdf135693(UITestCase):
+
+    def test_tdf135693(self):
+        writer_doc = 
self.ui_test.load_file(get_url_for_data_file("tdf135693.odt"))
+
+        self.xUITest.getTopFocusWindow()
+
+        self.xUITest.executeCommand(".uno:GoRight")
+        self.xUITest.executeCommand(".uno:GoDown")
+
+        # Without the fix in place, this would have crashed here
+        self.ui_test.execute_dialog_through_command(".uno:TableDialog")
+
+        xTableDlg = self.xUITest.getTopFocusWindow()
+
+        xTabs = xTableDlg.getChild("tabcontrol")
+        select_pos(xTabs, "0")
+
+        # Check we are in the right table
+        self.assertEqual("Table1", 
get_state_as_dict(xTabs.getChild('name'))['Text'])
+
+        xok = xTableDlg.getChild("ok")
+        self.ui_test.close_dialog_through_button(xok)
+
+        self.ui_test.close_doc()
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:
diff --git a/sw/qa/uitest/writer_tests/data/tdf135693.odt 
b/sw/qa/uitest/writer_tests/data/tdf135693.odt
new file mode 100644
index 000000000000..b13ed48e5c95
Binary files /dev/null and b/sw/qa/uitest/writer_tests/data/tdf135693.odt differ
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to