# -*- 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 type_text from uitest.uihelper.common import get_state_as_dict from uitest.uihelper.common import get_url_for_data_file from libreoffice.uno.propertyvalue import mkPropertyValues from org.libreoffice.unotest import systemPathToFileUrl from tempfile import TemporaryDirectory import os.path #Bug 90401 - remove personal info on redlines and annotations
with self.ui_test.execute_blocking_action(xOptions.executeAction, args=('CLICK', ()), close_button="") as dialog:
xRemovePersonal = dialog.getChild('removepersonal') if get_state_as_dict(xRemovePersonal)['Selected'] != enabled:
xRemovePersonal.executeAction('CLICK', tuple())
self.ui_test.wait_until_property_is_updated(xRemovePersonal, "Selected", enabled)
self.assertEqual(get_state_as_dict(xRemovePersonal)["Selected"], enabled)
xOkBtn = dialog.getChild('ok') # FIXME: we can't use close_dialog_through_button here, the dialog doesn't emit the # event DialogClosed after closing
xOkBtn.executeAction('CLICK', tuple())
def test_tdf90401_remove_personal_info(self): # load a test document with a tracked change, and add a comment
with TemporaryDirectory() as tempdir: try:
self.change_security_option("true")
with self.ui_test.load_file(get_url_for_data_file('redline-autocorrect.fodt')):
self.xUITest.executeCommand('.uno:SelectAll')
self.xUITest.executeCommand('.uno:InsertAnnotation')
# Save Copy as with self.ui_test.execute_dialog_through_command('.uno:SaveAs', close_button="open") as xDialog:
xFileName = xDialog.getChild('file_name')
xFileName.executeAction('TYPE', mkPropertyValues({'KEYCODE':'CTRL+A'}))
xFileName.executeAction('TYPE', mkPropertyValues({'KEYCODE':'BACKSPACE'}))
xFileName.executeAction('TYPE', mkPropertyValues({'TEXT': xFilePath}))
with self.ui_test.load_file(systemPathToFileUrl(xFilePath)) as writer_doc2:
# check removed personal info on comments
textfields = writer_doc2.getTextFields()
author = ""
year = -1 for textfield in textfields: if textfield.supportsService("com.sun.star.text.TextField.Annotation"):
author = textfield.Author
year = textfield.Date.Year # This was 'Unknown Author'
self.assertEqual(author, 'Author2') # This was 2021
self.assertEqual(year, 0)
# check removed personal info on tracked changes with self.ui_test.execute_modeless_dialog_through_command('.uno:AcceptTrackedChanges', close_button="close") as xTrackDlg:
xTreeList = xTrackDlg.getChild('writerchanges')
xTreeList.getChild('0').executeAction("SELECT", tuple())
state = get_state_as_dict(xTreeList) # This was 'NL\t11/03/2020 19:19:05\t', containing personal info
self.assertEqual(state['SelectEntryText'], 'Author1\t01/01/1970 00:00:00\t') finally:
self.change_security_option("false")
def test_tdf142902_remove_personal_info_in_DOCX(self): # load a test document with a tracked change, and add a comment with TemporaryDirectory() as tempdir: try:
self.change_security_option("true")
# Save Copy as with self.ui_test.execute_dialog_through_command('.uno:SaveAs', close_button="") asxDialog:
xFileName = xDialog.getChild('file_name')
xFileName.executeAction('TYPE', mkPropertyValues({'KEYCODE':'CTRL+A'}))
xFileName.executeAction('TYPE', mkPropertyValues({'KEYCODE':'BACKSPACE'}))
xFileName.executeAction('TYPE', mkPropertyValues({'TEXT': xFilePath}))
xOpen = xDialog.getChild("open") # DOCX confirmation dialog is displayed with self.ui_test.execute_dialog_through_action(xOpen, "CLICK", close_button="btnYes"): pass
with self.ui_test.load_file(systemPathToFileUrl(xFilePath)) as writer_doc2:
# check removed personal info on comments
textfields = writer_doc2.getTextFields()
author = ""
year = -1 for textfield in textfields: if textfield.supportsService("com.sun.star.text.TextField.Annotation"):
author = textfield.Author
year = textfield.Date.Year # This was 'Unknown Author'
self.assertEqual(author, 'Author2') # This was 2021
self.assertEqual(year, 0)
# check removed personal info on tracked changes
with self.ui_test.execute_modeless_dialog_through_command('.uno:AcceptTrackedChanges', close_button="close") as xTrackDlg:
xTreeList = xTrackDlg.getChild('writerchanges')
xTreeList.getChild('0').executeAction("SELECT", tuple())
state = get_state_as_dict(xTreeList) # This was 'NL\t11/03/2020 19:19:05\t', containing personal info
self.assertEqual(state['SelectEntryText'], 'Author1\t01/01/1970 00:00:00\t') finally:
self.change_security_option("false")
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.