1 # -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 from libreoffice
.uno
.propertyvalue
import mkPropertyValues
11 from uitest
.framework
import UITestCase
12 from libreoffice
.calc
.document
import get_cell_by_position
13 from uitest
.uihelper
.common
import select_pos
14 from uitest
.uihelper
.common
import select_by_text
15 from uitest
.uihelper
.common
import get_url_for_data_file
16 #Bug 118638 - subtotal option loses doesn't contain existing format for column
17 class Subtotals(UITestCase
):
20 def test_tdf118638_subtotal_format(self
):
21 with self
.ui_test
.load_file(get_url_for_data_file("tdf118638.ods")) as calc_doc
:
22 XcalcDoc
= self
.xUITest
.getTopFocusWindow()
23 gridwin
= XcalcDoc
.getChild("grid_window")
25 gridwin
.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:B15"}))
27 with self
.ui_test
.execute_dialog_through_command(".uno:DataSubTotals") as xDialog
:
28 xTabs
= xDialog
.getChild("tabcontrol")
29 select_pos(xTabs
, "0")
30 xGroupBy
= xDialog
.getChild("group_by1")
31 select_by_text(xGroupBy
, "Store Name")
32 xCheckListMenu
= xDialog
.getChild("grid1")
33 xTreeList
= xCheckListMenu
.getChild("columns1")
34 xEntry
= xTreeList
.getChild("1")
35 xEntry
.executeAction("CLICK", tuple())
38 # xfunctions = xDialog.getChild("functions")
39 # propsF = {"TEXT": "Sum"}
40 # actionPropsF = mkPropertyValues(propsF)
41 # xfunctions.executeAction("SELECT", actionPropsF)
45 self
.assertEqual(get_cell_by_position(calc_doc
, 0, 0, 15).getString(), "5408 Sum")
46 self
.assertEqual(get_cell_by_position(calc_doc
, 0, 0, 16).getString(), "Grand Sum")
48 self
.assertEqual(round(get_cell_by_position(calc_doc
, 0, 1, 15).getValue(),12), 238.89)
49 self
.assertEqual(round(get_cell_by_position(calc_doc
, 0, 1, 16).getValue(),12), 238.89)
51 self
.assertEqual(get_cell_by_position(calc_doc
, 0, 1, 15).getString(), "$238.89")
52 self
.assertEqual(get_cell_by_position(calc_doc
, 0, 1, 16).getString(), "$238.89")
54 # vim: set shiftwidth=4 softtabstop=4 expandtab: