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
|
# -*- 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.common import get_url_for_data_file
from libreoffice.uno.propertyvalue import mkPropertyValues
from com.sun.star.text.TextContentAnchorType import AT_PAGE, AT_PARAGRAPH
class tdf137802(UITestCase):
def test_tdf137802(self):
with self.ui_test.load_file(get_url_for_data_file("tdf137802.odt")) as document:
xWriterDoc = self.xUITest.getTopFocusWindow()
xWriterEdit = xWriterDoc.getChild("writer_edit")
self.assertEqual(document.DrawPage.getCount(), 2)
self.assertEqual(AT_PARAGRAPH, document.DrawPage.getByIndex(0).AnchorType)
self.xUITest.executeCommand(".uno:JumpToNextFrame")
self.ui_test.wait_until_child_is_available('metricfield')
with self.ui_test.execute_dialog_through_command(".uno:TransformDialog") as xDialog:
xDialog.getChild('topage').executeAction("CLICK", tuple())
self.assertEqual(AT_PAGE, document.DrawPage.getByIndex(0).AnchorType)
self.assertEqual(document.DrawPage.getCount(), 2)
xWriterDoc = self.xUITest.getTopFocusWindow()
xWriterEdit = xWriterDoc.getChild("writer_edit")
# When shape 1 is selected, esc key doesn't put the focus back to the document
# because the shape has a textbox. Move the focus to another shape with tab key
# and then use escape
xWriterEdit.executeAction("TYPE", mkPropertyValues({"KEYCODE": "TAB"}))
xWriterEdit.executeAction("TYPE", mkPropertyValues({"KEYCODE": "ESC"}))
# Wait until the shape is deselected and the cursor is on the document
self.ui_test.wait_until_child_is_available('FontNameBox')
# Delete the second paragraph. Shape 2 is anchored to this paragraph
# so it should be deleted
# tdf#137587 fly is no longer deleted by backspace so explicitly select
xWriterEdit.executeAction("TYPE", mkPropertyValues({"KEYCODE": "SHIFT+LEFT"}))
xWriterEdit.executeAction("TYPE", mkPropertyValues({"KEYCODE": "BACKSPACE"}))
self.assertEqual(document.DrawPage.getCount(), 1)
self.xUITest.executeCommand(".uno:JumpToNextFrame")
self.xUITest.executeCommand(".uno:Delete")
self.assertEqual(document.DrawPage.getCount(), 0)
self.xUITest.executeCommand(".uno:Undo")
self.assertEqual(document.DrawPage.getCount(), 1)
self.xUITest.executeCommand(".uno:Undo")
self.assertEqual(document.DrawPage.getCount(), 2)
self.xUITest.executeCommand(".uno:Undo")
self.assertEqual(AT_PARAGRAPH, document.DrawPage.getByIndex(0).AnchorType)
# vim: set shiftwidth=4 softtabstop=4 expandtab:
|