summaryrefslogtreecommitdiff
path: root/sw/qa/uitest/table/sheetToTable.py
blob: e16ea93f85d58b2e524cc1ed33dc2b3518bcebac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# -*- 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_url_for_data_file
from uitest.uihelper.calc import enter_text_to_cell

#Calc sheet to Writer table

class sheetToTable(UITestCase):
    def test_sheet_to_table_without_hidden_rows(self):
        with self.ui_test.load_file(get_url_for_data_file("hiddenRow.ods")) as calc_doc:
            xCalcDoc = self.xUITest.getTopFocusWindow()
            self.xUITest.executeCommand(".uno:SelectAll")
            self.xUITest.executeCommand(".uno:Copy")

        with self.ui_test.load_file(get_url_for_data_file("tableToText.odt")) as writer_doc:
            document = self.ui_test.get_component()
            xWriterDoc = self.xUITest.getTopFocusWindow()
            self.xUITest.executeCommand(".uno:Paste")
            #verify (don't copy hidden cells)
            self.assertEqual(document.TextTables.getCount(), 1)
            table = document.getTextTables()[0]
            # This was 3 (copied hidden row)
            self.assertEqual(len(table.getRows()), 2)
            self.assertEqual(table.getCellByName("A1").getString(), "1")
            # This was "2 (hidden)" (copied hidden row)
            self.assertEqual(table.getCellByName("A2").getString(), "3")

    def test_tdf138688(self):
        with self.ui_test.load_file(get_url_for_data_file("hiddenRow.ods")) as calc_doc:
            xCalcDoc = self.xUITest.getTopFocusWindow()
            self.xUITest.executeCommand(".uno:SelectAll")
            self.xUITest.executeCommand(".uno:Copy")

        with self.ui_test.load_file(get_url_for_data_file("tableToText.odt")) as writer_doc:
            document = self.ui_test.get_component()
            xWriterDoc = self.xUITest.getTopFocusWindow()

            # set numbering in the paragraph after the table
            self.xUITest.executeCommand(".uno:GoDown")
            self.xUITest.executeCommand(".uno:GoDown")
            self.xUITest.executeCommand(".uno:DefaultNumbering")
            self.xUITest.executeCommand(".uno:GoUp")
            self.xUITest.executeCommand(".uno:GoUp")

            #verify (this was a freezing/crash)
            self.xUITest.executeCommand(".uno:Paste")

            #verify also tdf#124646 (don't copy hidden cells)
            self.assertEqual(document.TextTables.getCount(), 1)
            table = document.getTextTables()[0]
            # This was 3 (copied hidden row)
            self.assertEqual(len(table.getRows()), 2)
            self.assertEqual(table.getCellByName("A1").getString(), "1")
            # This was "2 (hidden)" (copied hidden row)
            self.assertEqual(table.getCellByName("A2").getString(), "3")

    def test_tdf129083(self):
        with self.ui_test.create_doc_in_start_center("calc"):

            xCalcDoc = self.xUITest.getTopFocusWindow()
            gridwin = xCalcDoc.getChild("grid_window")
            document = self.ui_test.get_component()

            enter_text_to_cell(gridwin, "A1", "Test 1")
            enter_text_to_cell(gridwin, "A2", "Test 2")
            enter_text_to_cell(gridwin, "A3", "Test 3")
            enter_text_to_cell(gridwin, "A4", "Test 4")

            gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:A4"}))

            self.xUITest.executeCommand(".uno:Copy")

        with self.ui_test.load_file(get_url_for_data_file("tdf129083.odt")) as writer_doc:
            document = self.ui_test.get_component()
            xWriterDoc = self.xUITest.getTopFocusWindow()

            self.xUITest.executeCommand(".uno:Paste")

            self.assertEqual(document.TextTables.getCount(), 1)
            table = document.getTextTables()[0]
            self.assertEqual(len(table.getRows()), 4)
            self.assertEqual(table.getCellByName("A1").getString(), "Test 1")
            self.assertEqual(table.getCellByName("A2").getString(), "Test 2")
            self.assertEqual(table.getCellByName("A3").getString(), "Test 3")
            self.assertEqual(table.getCellByName("A4").getString(), "Test 4")