1
0
Fork 0
libreoffice/sw/qa/uitest/classification/classification.py
Daniel Baumann 8e63e14cf6
Adding upstream version 4:25.2.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 16:20:04 +02:00

133 lines
7.7 KiB
Python

# -*- 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
from uitest.uihelper.common import select_by_text
from libreoffice.uno.propertyvalue import mkPropertyValues
#TSCP: add advanced classification dialog https://cgit.freedesktop.org/libreoffice/core/commit/?id=71ee09947d5a71105d64fd225bb3672dfa7ce834
# This adds an advanced classification dialog, which enables the user
# to manually construct a header/footer message from classification
# properties in cases where the user needs more control. All the
# text is inserted as fields into the end document and can be changed
# by changing the document properties. The simple classification
# still functions as it did before, which is what most users will
# want to use in this case.
#[Bug 122491] Classification: dialog (Paragraph) Classification doesn't show previously chosen classification
#https://wiki.documentfoundation.org/TSCP-classification
#new file; open Doc classification dialog
#add classification Confidential, save
#reopen and verify
#verify watermark Bug 122586 - Classification: by using the dialog, Watermark text from policy is not placed in the document
#open dialog and add intellectualProperty text, save
#verify in doc properties text of IP (in API, cannot verify in UI)
#reopen and verify classification and Content
#do the same for Paragraph classification
# verify the text on characters 0-6 : "(Conf)"
#+ new file and do it only for Paragraph classification (no watermark!)
#+ bug with bold text Bug 122565 - Classification dialog - Button "bold" works only in dialog
#variants of content written manually, IP strings, classification (Conf, NB, GB, IO)
#[Bug 122491] with testdoc
class classification(UITestCase):
def test_document_classification_dialog(self):
with self.ui_test.create_doc_in_start_center("writer") as document:
with self.ui_test.execute_dialog_through_command(".uno:ClassificationDialog") as xDialog:
classificationCB = xDialog.getChild("classificationCB")
internationalClassificationCB = xDialog.getChild("internationalClassificationCB")
select_by_text(classificationCB, "Confidential")
#verify International is set too
self.assertEqual(get_state_as_dict(internationalClassificationCB)["SelectEntryText"], "Confidential")
#verify textBox Content
# self.assertEqual(get_state_as_dict(classificationEditWindow)["Text"], "Conf")
header = document.StyleFamilies.PageStyles.Standard.HeaderText.createEnumeration().nextElement()
self.assertEqual(header.String, "Confidential")
controller = document.getCurrentController()
self.assertTrue(controller.hasInfobar("classification"))
#verify watermark
#Bug 122586 - Classification: by using the dialog, Watermark text from policy is not placed in the document
with self.ui_test.execute_dialog_through_command(".uno:Watermark", close_button="cancel") as xDialog:
xTextInput = xDialog.getChild("TextInput")
xAngle = xDialog.getChild("Angle")
xTransparency = xDialog.getChild("Transparency")
self.assertEqual(get_state_as_dict(xTextInput)["Text"], "Confidential")
self.assertEqual(get_state_as_dict(xAngle)["Text"], "45°")
self.assertEqual((get_state_as_dict(xTransparency)["Text"])[0:2], "50")
#TODO
#open dialog and add intellectualProperty text, save
#verify
#reopen and verify classification and Content
#do the same for Paragraph classification
with self.ui_test.execute_dialog_through_command(".uno:ParagraphClassificationDialog") as xDialog:
classificationCB = xDialog.getChild("classificationCB")
internationalClassificationCB = xDialog.getChild("internationalClassificationCB")
select_by_text(classificationCB, "Confidential")
#verify International is set too
self.assertEqual(get_state_as_dict(internationalClassificationCB)["SelectEntryText"], "Confidential")
#verify textBox Content TODO textbox not supported
#self.assertEqual(get_state_as_dict(classificationEditWindow)["Text"], "Conf")
self.assertEqual(document.Text.String[0:6], "(Conf)")
self.assertEqual(header.String, "Confidential")
self.assertTrue(controller.hasInfobar("classification"))
def test_paragraph_classification_dialog(self):
with self.ui_test.create_doc_in_start_center("writer") as document:
#+ new file and do it only for Paragraph classification (no watermark!)
with self.ui_test.execute_dialog_through_command(".uno:ParagraphClassificationDialog") as xDialog:
classificationCB = xDialog.getChild("classificationCB")
internationalClassificationCB = xDialog.getChild("internationalClassificationCB")
select_by_text(classificationCB, "Confidential")
#verify International is set too
self.assertEqual(get_state_as_dict(internationalClassificationCB)["SelectEntryText"], "Confidential")
#verify textBox Content TODO - texbox not supported yet
# self.assertEqual(get_state_as_dict(classificationEditWindow)["Text"], "Conf")
controller = document.getCurrentController()
self.assertEqual(document.Text.String[0:6], "(Conf)")
self.assertFalse(controller.hasInfobar("classification"))
self.assertFalse(document.StyleFamilies.PageStyles.Standard.HeaderIsOn)
def test_paragraph_classification_dialog_text(self):
with self.ui_test.create_doc_in_start_center("writer") as document:
#+ new file and do it only for Paragraph classification (no watermark!)
with self.ui_test.execute_dialog_through_command(".uno:ParagraphClassificationDialog") as xDialog:
classificationCB = xDialog.getChild("classificationCB")
internationalClassificationCB = xDialog.getChild("internationalClassificationCB")
intellectualPropertyPartEntry = xDialog.getChild("intellectualPropertyPartEntry")
intellectualPropertyPartAddButton = xDialog.getChild("intellectualPropertyPartAddButton")
#type text AA
intellectualPropertyPartEntry.executeAction("TYPE", mkPropertyValues({"TEXT":"AA"}))
intellectualPropertyPartAddButton.executeAction("CLICK", tuple())
select_by_text(classificationCB, "Internal Only")
#verify International is set too
self.assertEqual(get_state_as_dict(internationalClassificationCB)["SelectEntryText"], "Internal Only")
#verify textBox Content TODO - texbox not supported yet
# self.assertEqual(get_state_as_dict(classificationEditWindow)["Text"], "Conf")
controller = document.getCurrentController()
self.assertEqual(document.Text.String[0:6], "(AAIO)")
self.assertFalse(controller.hasInfobar("classification"))
self.assertFalse(document.StyleFamilies.PageStyles.Standard.HeaderIsOn)
# vim: set shiftwidth=4 softtabstop=4 expandtab: