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
|
# -*- 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_state_as_dict, get_url_for_data_file
from libreoffice.uno.propertyvalue import mkPropertyValues
import datetime
class compareDocuments(UITestCase):
def test_tdf130960(self):
with self.ui_test.load_file(get_url_for_data_file("tdf130960.odt")) as writer_doc:
xWriterDoc = self.xUITest.getTopFocusWindow()
with self.ui_test.execute_dialog_through_command(".uno:CompareDocuments", close_button="") as xOpenDialog:
xFileName = xOpenDialog.getChild("file_name")
xFileName.executeAction("TYPE", mkPropertyValues({"TEXT": get_url_for_data_file("tdf130960_2.odt")}))
xOpenBtn = xOpenDialog.getChild("open")
# Close the dialog and open it again so the list of changes is updated
with self.ui_test.execute_dialog_through_action(xOpenBtn, 'CLICK', close_button="close"):
pass
with self.ui_test.execute_modeless_dialog_through_command(".uno:AcceptTrackedChanges", close_button="close") as xTrackDlg:
changesList = xTrackDlg.getChild("writerchanges")
text = "Unknown Author\t" + datetime.datetime.now().strftime("%m/%d/%Y")
self.assertEqual(2, len(changesList.getChildren()))
self.assertTrue(get_state_as_dict(changesList.getChild('0'))["Text"].startswith(text))
self.assertTrue(get_state_as_dict(changesList.getChild('1'))["Text"].startswith(text))
def test_tdf137855(self):
with self.ui_test.load_file(get_url_for_data_file("tdf137855.odt")) as writer_doc:
xWriterDoc = self.xUITest.getTopFocusWindow()
with self.ui_test.execute_dialog_through_command(".uno:CompareDocuments", close_button="") as xOpenDialog:
xFileName = xOpenDialog.getChild("file_name")
xFileName.executeAction("TYPE", mkPropertyValues({"TEXT": get_url_for_data_file("tdf137855_2.odt")}))
xOpenBtn = xOpenDialog.getChild("open")
# Close the dialog and open it again so the list of changes is updated
with self.ui_test.execute_dialog_through_action(xOpenBtn, 'CLICK', close_button="close"):
pass
with self.ui_test.execute_modeless_dialog_through_command(".uno:AcceptTrackedChanges", close_button="close") as xTrackDlg:
changesList = xTrackDlg.getChild("writerchanges")
# Check the number of changes
self.assertEqual(263, len(changesList.getChildren()))
# Without the fix in place, this test would have crashed here
xAccBtn = xTrackDlg.getChild("acceptall")
xAccBtn.executeAction("CLICK", tuple())
self.assertEqual(0, len(changesList.getChildren()))
# vim: set shiftwidth=4 softtabstop=4 expandtab:
|