sc/qa/uitest/chart/tdf43175.py |   48 +++++++++++++++++++++++++++++++++++++++++
 sc/qa/uitest/data/tdf43175.ods |binary
 2 files changed, 48 insertions(+)

New commits:
commit 55fc9ea0f40fced82d71379b535fc0c4a24061b0
Author:     Xisco Fauli <xiscofa...@libreoffice.org>
AuthorDate: Tue Mar 2 10:40:11 2021 +0100
Commit:     Xisco Fauli <xiscofa...@libreoffice.org>
CommitDate: Sun May 9 15:23:27 2021 +0200

    tdf#43175: sc: Add UItest
    
    Change-Id: I1a327038769102ce377136bf0598b1340a0068d4
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111808
    Tested-by: Jenkins
    Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org>

diff --git a/sc/qa/uitest/chart/tdf43175.py b/sc/qa/uitest/chart/tdf43175.py
new file mode 100644
index 000000000000..fe837197e6a5
--- /dev/null
+++ b/sc/qa/uitest/chart/tdf43175.py
@@ -0,0 +1,48 @@
+# -*- 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 uitest.uihelper.common import get_url_for_data_file
+
+class Tdf43175(UITestCase):
+
+    def test_tdf43175(self):
+        self.ui_test.load_file(get_url_for_data_file("tdf43175.ods"))
+
+        self.xUITest.executeCommand(".uno:TableSelectAll")
+
+        self.ui_test.execute_dialog_through_command(".uno:Move")
+        xDialog = self.xUITest.getTopFocusWindow()
+        insertBefore = xDialog.getChild("insertBefore")
+
+        # Select - move to end position -
+        xTreeEntry = insertBefore.getChild('2')
+        xTreeEntry.executeAction("SELECT", tuple())
+
+        xOKBtn = xDialog.getChild("ok")
+        self.ui_test.close_dialog_through_button(xOKBtn)
+
+        document = self.ui_test.get_component()
+
+        aSheetNames = ['Blad1', 'Blad2', 'Blad1_2', 'Blad2_2']
+
+        self.assertEqual(4, document.Sheets.getCount())
+        for i in range(4):
+            self.assertEqual(aSheetNames[i], document.Sheets[i].Name)
+
+            xChart = document.Sheets[i].Charts[0]
+            xDataSeries = 
xChart.getEmbeddedObject().getFirstDiagram().CoordinateSystems[0].ChartTypes[0].DataSeries
+            self.assertEqual(1, len(xDataSeries))
+
+            # Without the fix in place, this test would have failed with
+            # AssertionError: '$Blad1_2.$A$1:$A$5' != '$Blad1.$A$1:$A$5'
+            aExpectedRangeName = '$' + aSheetNames[i] + '.$A$1:$A$5'
+            self.assertEqual(aExpectedRangeName, 
xDataSeries[0].DataSequences[0].Values.SourceRangeRepresentation)
+
+        self.ui_test.close_doc()
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:
diff --git a/sc/qa/uitest/data/tdf43175.ods b/sc/qa/uitest/data/tdf43175.ods
new file mode 100644
index 000000000000..63f498627d60
Binary files /dev/null and b/sc/qa/uitest/data/tdf43175.ods differ
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to