diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-03-14 12:02:36 +0100 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-03-14 13:05:56 +0100 |
commit | c4c8146c9982313fd11f27894360ceaee3b3cbca (patch) | |
tree | 77d86e8ef6643504d8737f032cc5b40174a5d8e5 /sc/qa | |
parent | 74f6f2cd88a4905e796d9b66393f4e9cd9eac3a7 (diff) |
tdf#147767: sc: Add UItest
Change-Id: I87d94c33af9676a147a07380b5f39add59b26038
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131530
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'sc/qa')
-rw-r--r-- | sc/qa/uitest/calc_tests3/tdf147767.py | 49 | ||||
-rw-r--r-- | sc/qa/uitest/data/tdf147767.html | 12 |
2 files changed, 61 insertions, 0 deletions
diff --git a/sc/qa/uitest/calc_tests3/tdf147767.py b/sc/qa/uitest/calc_tests3/tdf147767.py new file mode 100644 index 000000000000..4a3b3c78843c --- /dev/null +++ b/sc/qa/uitest/calc_tests3/tdf147767.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 uitest.uihelper.common import get_state_as_dict +from uitest.uihelper.common import select_pos +from libreoffice.uno.propertyvalue import mkPropertyValues +from uitest.uihelper.common import get_url_for_data_file +from libreoffice.calc.document import get_cell_by_position + +class tdf147767(UITestCase): + + def test_tdf147767(self): + + with self.ui_test.create_doc_in_start_center("calc") as calc_doc: + + with self.ui_test.execute_dialog_through_command(".uno:InsertExternalDataSource", close_button="") as xDialog: + xUrl = xDialog.getChild("url") + xUrl.executeAction("TYPE", mkPropertyValues({"TEXT": get_url_for_data_file("tdf147767.html")})) + + with self.ui_test.execute_blocking_action(xUrl.executeAction, args=("TYPE", mkPropertyValues({"KEYCODE": "RETURN"}))): + pass + + xRanges = xDialog.getChild("ranges") + self.assertEqual("3", get_state_as_dict(xRanges)["Children"]) + + self.assertEqual("HTML_all", get_state_as_dict(xRanges.getChild("0"))["Text"]) + self.assertEqual("HTML_tables", get_state_as_dict(xRanges.getChild("1"))["Text"]) + + # FIXME: close_dialog_through_button fails here + xOkBtn = xDialog.getChild("ok") + xOkBtn.executeAction("CLICK", tuple()) + + xCell = get_cell_by_position(calc_doc, 0, 0, 0) + + # Without the fix in place, this test would have failed with + # AssertionError: 14.0 != 0.699999988079071 + self.assertEqual(14.0, xCell.CharHeight) + self.assertEqual("0x90080c", hex(xCell.CellBackColor)) + self.assertEqual("0xffffff", hex(xCell.CharColor)) + self.assertEqual("Fecha", xCell.getString()) + +# vim: set shiftwidth=4 softtabstop=4 expandtab: diff --git a/sc/qa/uitest/data/tdf147767.html b/sc/qa/uitest/data/tdf147767.html new file mode 100644 index 000000000000..86a10e2d1675 --- /dev/null +++ b/sc/qa/uitest/data/tdf147767.html @@ -0,0 +1,12 @@ +<!doctype html> +<html> +<body> + <table> + <tr> + <td width="126" bgcolor="#90080c" style="background: #90080c; border-top: 1px double #808080; border-bottom: 1px double #808080; border-left: 1px double #808080; border-right: 1px double #808080; padding: 0.11cm"><p align="center"> + <strong><font color="#ffffff"><font size="4" style="font-size: 14pt">Fecha</font></font></strong></p> + </td> + </tr> + </table> +</body> +</html> |