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
|
#
# 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 select_pos, get_state_as_dict
from com.sun.star.uno import RuntimeException
from com.sun.star.awt.GradientStyle import LINEAR
from com.sun.star.drawing.HatchStyle import SINGLE
from com.sun.star.drawing.BitmapMode import REPEAT
from com.sun.star.drawing.RectanglePoint import MIDDLE_MIDDLE
from libreoffice.uno.propertyvalue import mkPropertyValues
#Bug 128431 - Synchronize padding in header borders it is not working
class tdf128431(UITestCase):
def test_tdf128431_pageFormat_sync_padding(self):
self.ui_test.create_doc_in_start_center("writer")
document = self.ui_test.get_component()
#set cm Tools-options-StarOffice Writer-General
self.ui_test.execute_dialog_through_command(".uno:OptionsTreeDialog") #optionsdialog
xDialog = self.xUITest.getTopFocusWindow()
xPages = xDialog.getChild("pages")
xWriterEntry = xPages.getChild('3') # Writer
xWriterEntry.executeAction("EXPAND", tuple())
xWriterGeneralEntry = xWriterEntry.getChild('0')
xWriterGeneralEntry.executeAction("SELECT", tuple()) #General
xMetric = xDialog.getChild("metric")
props = {"TEXT": "Centimeter"}
actionProps = mkPropertyValues(props)
xMetric.executeAction("SELECT", actionProps)
xOKBtn = xDialog.getChild("ok")
self.ui_test.close_dialog_through_button(xOKBtn)
self.ui_test.execute_dialog_through_command(".uno:PageDialog")
xDialog = self.xUITest.getTopFocusWindow()
tabcontrol = xDialog.getChild("tabcontrol")
select_pos(tabcontrol, 6) #borders
sync = xDialog.getChild("sync")
bottomft = xDialog.getChild("bottommf")
topft = xDialog.getChild("topmf")
rightft = xDialog.getChild("rightmf")
leftft = xDialog.getChild("leftmf")
self.assertEqual(get_state_as_dict(sync)["Selected"], "true")
bottomft.executeAction("UP", tuple())
self.assertEqual(get_state_as_dict(bottomft)["Text"], "0.10 cm")
self.assertEqual(get_state_as_dict(topft)["Text"], "0.10 cm")
self.assertEqual(get_state_as_dict(rightft)["Text"], "0.10 cm")
self.assertEqual(get_state_as_dict(leftft)["Text"], "0.10 cm")
okBtn = xDialog.getChild("ok")
self.ui_test.close_dialog_through_button(okBtn)
self.ui_test.close_doc()
# vim: set shiftwidth=4 softtabstop=4 expandtab:
|