Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/LibreOffice/sw/qa/uitest/writer_tests7/   (Office von Apache Version 25.8.3.2©)  Datei vom 5.10.2025 mit Größe 2 kB image not shown  

Quelle  tdf133348.py   Sprache: 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 libreoffice.uno.propertyvalue import mkPropertyValues

class tdf133348(UITestCase):

    def change_author_name(self, name):
        with self.ui_test.execute_dialog_through_command(".uno:OptionsTreeDialog"as xDialogOpt:
            xPages = xDialogOpt.getChild("pages")
            xEntry = xPages.getChild('0')
            xEntry.executeAction("EXPAND", tuple())
            xGeneralEntry = xEntry.getChild('0')
            xGeneralEntry.executeAction("SELECT", tuple())
            xFirstName = xDialogOpt.getChild("firstname")
            props = {"TEXT": name}
            actionProps = mkPropertyValues(props)
            xFirstName.executeAction("TYPE", actionProps)

    def test_tdf133348(self):

        with self.ui_test.create_doc_in_start_center("writer"as document:

            try:
                self.xUITest.executeCommand(".uno:SelectAll")
                xArgs = mkPropertyValues({"Text""C1"})
                self.xUITest.executeCommandWithParameters(".uno:InsertAnnotation", xArgs)

                self.change_author_name("Known Author")

                xArgs = mkPropertyValues({"Text""C2"})
                self.xUITest.executeCommandWithParameters(".uno:ReplyComment", xArgs)

                # Wait for async events to be processed
                xToolkit = self.xContext.ServiceManager.createInstance('com.sun.star.awt.Toolkit')
                xToolkit.processEventsToIdle()

                xEnum = document.TextFields.createEnumeration()
                self.assertEqual(xEnum.nextElement().Author.strip(), 'Unknown Author')
                self.assertEqual(xEnum.nextElement().Author.strip(), 'Known Author')

                self.xUITest.executeCommand(".uno:Undo")
                self.xUITest.executeCommand(".uno:Undo")

                # Without the fix in place, it would have crashed here
                self.xUITest.executeCommand(".uno:Undo")
                self.xUITest.executeCommand(".uno:Undo")

                # all comments have been deleted
                self.assertFalse(document.TextFields.createEnumeration().hasMoreElements())
            finally:
                self.change_author_name("")

# vim: set shiftwidth=4 softtabstop=4 expandtab:

Messung V0.5
C=99 H=98 G=98

¤ Dauer der Verarbeitung: 0.19 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

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.