# -*- 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 uitest.uihelper.common import change_measurement_unit from uitest.uihelper.common import select_by_text from libreoffice.uno.propertyvalue import mkPropertyValues
class Forms(UITestCase):
def test_tdf140486(self):
with self.ui_test.load_file(get_url_for_data_file("tdf140486.odt")):
with self.ui_test.execute_modeless_dialog_through_command(".uno:ControlProperties", close_button=""):
xChild = self.ui_test.wait_until_child_is_available('listbox-Empty string is NULL')
# Without the fix in place, this test would have failed with # AssertionError: 'Yes' != 'No'
self.assertEqual("Yes", get_state_as_dict(xChild)['SelectEntryText'])
def test_tdf140198(self):
with self.ui_test.load_file(get_url_for_data_file("tdf140198.odt")):
with self.ui_test.execute_modeless_dialog_through_command(".uno:ControlProperties", close_button=""):
xChild = self.ui_test.wait_until_child_is_available('listbox-Text type')
# Without the fix in place, this test would have failed with # AssertionError: 'Multi-line' != 'Single-line'
self.assertEqual("Multi-line", get_state_as_dict(xChild)['SelectEntryText'])
def test_tdf141084(self):
# Reuse document from tdf#140239 with self.ui_test.load_file(get_url_for_data_file("tdf140239.odt")):
with self.ui_test.execute_modeless_dialog_through_command(".uno:FormProperties", close_button=""):
xURL = self.ui_test.wait_until_child_is_available('urlcontrol-URL')
# Without the fix in place, this test would have failed with # AssertionError: '12345' != 'file:///tmp/tmp/5file:///tmp/tmp/4file://[40 chars]mp/1'
self.assertEqual("12345", get_state_as_dict(xURL)['Text'])
def test_tdf140239(self):
with self.ui_test.load_file(get_url_for_data_file("tdf140239.odt")):
# Without the fix in place, this test would have failed with # AssertionError: '12345' != '54321'
self.assertEqual("12345", get_state_as_dict(xURL)['Text'])
# Move the focus to another element so the changes done before will take effect
xAction.executeAction("FOCUS", tuple())
# tdf#131522: Without the fix in place, this test would have failed with # AssertionError: 'Push' != 'Push Button'
self.assertEqual("Push", get_state_as_dict(xEntry)['Text'])
def test_tdf138701(self):
# Reuse file from another test with self.ui_test.load_file(get_url_for_data_file("tdf140198.odt")):
# Without the fix in place, this test would have failed with # AssertionError: '12345' != '54321'
self.assertEqual("12345", get_state_as_dict(xChild)['Text'])
def test_tdf139486(self):
# Reuse file from another test with self.ui_test.load_file(get_url_for_data_file("tdf140198.odt")) as document:
# Move the focus to another element so the changes done before take effect on the document
xDialog = self.xUITest.getTopFocusWindow()
xDialog.getChild('numericfield-PositionY').executeAction("FOCUS", tuple())
# Without the fix in place, the size of the form wouldn't have changed
self.assertEqual(20001, shape.getSize().Width)
self.assertEqual(5001, shape.getSize().Height)
def test_tdf138271(self):
with self.ui_test.load_file(get_url_for_data_file("tdf138271.odt")):
#Close the dialog and open it again
self.xUITest.executeCommand(".uno:ControlProperties")
with self.ui_test.execute_modeless_dialog_through_command(".uno:ControlProperties", close_button=""):
xChild = self.ui_test.wait_until_child_is_available(name)
# Without the fix in place, this test would have failed here because # the values wouldn't have changed
self.assertEqual(aNewValue[i], get_state_as_dict(xChild)['Text'])
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.