summaryrefslogtreecommitdiffstats
path: root/sc/qa/uitest/sort/naturalSort.py
blob: 91c2f35c3f7103196f3ccc42a6901f45c40fb95f (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
92
93
94
95
96
97
98
99
100
101
# -*- 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.calc import enter_text_to_cell
from uitest.uihelper.common import get_state_as_dict, select_pos

from libreoffice.calc.document import get_cell_by_position
from libreoffice.uno.propertyvalue import mkPropertyValues


# Testcases Sorting TCS_Sorting
class CalcNaturalSorting(UITestCase):

    def test_natural_sorting_rows(self):
        with self.ui_test.create_doc_in_start_center("calc") as document:
            xCalcDoc = self.xUITest.getTopFocusWindow()
            gridwin = xCalcDoc.getChild("grid_window")
            #enter data
            enter_text_to_cell(gridwin, "A1", "MW100SSMOU456.996JIL4")
            enter_text_to_cell(gridwin, "A2", "MW180SSMOU456.996JIL4")
            enter_text_to_cell(gridwin, "A3", "MW110SSMOU456.993JIL4")
            enter_text_to_cell(gridwin, "A4", "MW180SSMOU456.994JIL4")
            enter_text_to_cell(gridwin, "A5", "MW101SSMOU456.996JIL4")
            #Open sort dialog by DATA - SORT
            with self.ui_test.execute_dialog_through_command(".uno:DataSort") as xDialog:
                xTabs = xDialog.getChild("tabcontrol")
                select_pos(xTabs, "0")
                xNatural = xDialog.getChild("naturalsort")
                xNatural.executeAction("CLICK", tuple())
            #Verify
            self.assertEqual(get_cell_by_position(document, 0, 0, 0).getString(), "MW100SSMOU456.996JIL4")
            self.assertEqual(get_cell_by_position(document, 0, 0, 1).getString(), "MW101SSMOU456.996JIL4")
            self.assertEqual(get_cell_by_position(document, 0, 0, 2).getString(), "MW110SSMOU456.993JIL4")
            self.assertEqual(get_cell_by_position(document, 0, 0, 3).getString(), "MW180SSMOU456.994JIL4")
            self.assertEqual(get_cell_by_position(document, 0, 0, 4).getString(), "MW180SSMOU456.996JIL4")
            #UNDO
            self.xUITest.executeCommand(".uno:Undo")
            #Verify
            self.assertEqual(get_cell_by_position(document, 0, 0, 0).getString(), "MW100SSMOU456.996JIL4")
            self.assertEqual(get_cell_by_position(document, 0, 0, 1).getString(), "MW180SSMOU456.996JIL4")
            self.assertEqual(get_cell_by_position(document, 0, 0, 2).getString(), "MW110SSMOU456.993JIL4")
            self.assertEqual(get_cell_by_position(document, 0, 0, 3).getString(), "MW180SSMOU456.994JIL4")
            self.assertEqual(get_cell_by_position(document, 0, 0, 4).getString(), "MW101SSMOU456.996JIL4")
            #enter data
            enter_text_to_cell(gridwin, "D1", "MW-2")
            enter_text_to_cell(gridwin, "D2", "MW-20")
            enter_text_to_cell(gridwin, "D3", "MW-1")
            enter_text_to_cell(gridwin, "D4", "MW-18")

            gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "D1:D4"}))

            #Open sort dialog by DATA - SORT
            with self.ui_test.execute_dialog_through_command(".uno:DataSort") as xDialog:
                xTabs = xDialog.getChild("tabcontrol")
                select_pos(xTabs, "1")
                xNatural = xDialog.getChild("naturalsort")
                if (get_state_as_dict(xNatural)["Selected"]) == "false":
                    xNatural.executeAction("CLICK", tuple())

            self.assertEqual(get_cell_by_position(document, 0, 3, 0).getString(), "MW-1")
            self.assertEqual(get_cell_by_position(document, 0, 3, 1).getString(), "MW-2")
            self.assertEqual(get_cell_by_position(document, 0, 3, 2).getString(), "MW-18")
            self.assertEqual(get_cell_by_position(document, 0, 3, 3).getString(), "MW-20")


    def test_natural_sorting_columns(self):
        with self.ui_test.create_doc_in_start_center("calc") as document:
            xCalcDoc = self.xUITest.getTopFocusWindow()
            gridwin = xCalcDoc.getChild("grid_window")
            #enter data
            enter_text_to_cell(gridwin, "A1", "MW-2")
            enter_text_to_cell(gridwin, "B1", "MW-20")
            enter_text_to_cell(gridwin, "C1", "MW-1")
            enter_text_to_cell(gridwin, "D1", "MW-18")

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

            #Open sort dialog by DATA - SORT
            with self.ui_test.execute_dialog_through_command(".uno:DataSort") as xDialog:
                xTabs = xDialog.getChild("tabcontrol")
                select_pos(xTabs, "1")
                xNatural = xDialog.getChild("naturalsort")
                if (get_state_as_dict(xNatural)["Selected"]) == "false":
                    xNatural.executeAction("CLICK", tuple())
                select_pos(xTabs, "0")
                xleftright = xDialog.getChild("rbLeftRight")
                xleftright.executeAction("CLICK", tuple())

            #Verify
            self.assertEqual(get_cell_by_position(document, 0, 0, 0).getString(), "MW-1")
            self.assertEqual(get_cell_by_position(document, 0, 1, 0).getString(), "MW-2")
            self.assertEqual(get_cell_by_position(document, 0, 2, 0).getString(), "MW-18")
            self.assertEqual(get_cell_by_position(document, 0, 3, 0).getString(), "MW-20")

# vim: set shiftwidth=4 softtabstop=4 expandtab: