185 lines
9 KiB
Python
185 lines
9 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
|
|
import os
|
|
import re
|
|
from uitest.uihelper.common import get_state_as_dict, select_pos
|
|
from libreoffice.uno.propertyvalue import mkPropertyValues
|
|
|
|
#test Hyperlink dialog
|
|
class HyperlinkDialog(UITestCase):
|
|
|
|
def test_hyperlink_dialog_vertical_tab(self):
|
|
|
|
with self.ui_test.create_doc_in_start_center("writer"):
|
|
|
|
with self.ui_test.execute_dialog_through_command(".uno:HyperlinkDialog", close_button="cancel") as xDialog:
|
|
|
|
# Test the vertical tab
|
|
xtab=xDialog.getChild("tabcontrol")
|
|
self.assertEqual(get_state_as_dict(xtab)["PageCount"], "4")
|
|
|
|
select_pos(xtab, "0")
|
|
self.assertEqual(get_state_as_dict(xtab)["CurrPageTitel"], "~Internet")
|
|
self.assertEqual(get_state_as_dict(xtab)["CurrPagePos"], "0")
|
|
|
|
select_pos(xtab, "1")
|
|
self.assertEqual(get_state_as_dict(xtab)["CurrPageTitel"], "~Mail")
|
|
self.assertEqual(get_state_as_dict(xtab)["CurrPagePos"], "1")
|
|
|
|
select_pos(xtab, "2")
|
|
self.assertEqual(get_state_as_dict(xtab)["CurrPageTitel"], "~Document")
|
|
self.assertEqual(get_state_as_dict(xtab)["CurrPagePos"], "2")
|
|
|
|
select_pos(xtab, "3")
|
|
self.assertEqual(get_state_as_dict(xtab)["CurrPageTitel"], "~New Document")
|
|
self.assertEqual(get_state_as_dict(xtab)["CurrPagePos"], "3")
|
|
|
|
|
|
|
|
def test_insert_hyperlink(self):
|
|
|
|
with self.ui_test.create_doc_in_start_center("writer"):
|
|
xMainWindow = self.xUITest.getTopFocusWindow()
|
|
|
|
with self.ui_test.execute_dialog_through_command(".uno:HyperlinkDialog") as xDialog:
|
|
|
|
# insert link
|
|
xtab=xDialog.getChild("tabcontrol")
|
|
select_pos(xtab, "0")
|
|
|
|
xtarget = xDialog.getChild("target")
|
|
xtarget.executeAction("TYPE", mkPropertyValues({"TEXT": "http://www.libreoffice.org/"}))
|
|
self.assertEqual(get_state_as_dict(xtarget)["Text"], "http://www.libreoffice.org/")
|
|
|
|
xindication = xDialog.getChild("indication")
|
|
xindication.executeAction("TYPE", mkPropertyValues({"TEXT": "link"}))
|
|
self.assertEqual(get_state_as_dict(xindication)["Text"], "link")
|
|
|
|
|
|
# Check that the link is added
|
|
xMainWindow = self.xUITest.getTopFocusWindow()
|
|
xedit = xMainWindow.getChild("writer_edit")
|
|
xedit.executeAction("SELECT", mkPropertyValues({"START_POS": "0", "END_POS": "4"}))
|
|
self.assertEqual(get_state_as_dict(xedit)["SelectedText"], "link")
|
|
|
|
|
|
def test_insert_hyperlink_without_scheme(self):
|
|
|
|
with self.ui_test.create_doc_in_start_center("writer"):
|
|
xMainWindow = self.xUITest.getTopFocusWindow()
|
|
|
|
with self.ui_test.execute_dialog_through_command(".uno:HyperlinkDialog") as xDialog:
|
|
|
|
# insert link
|
|
xtab=xDialog.getChild("tabcontrol")
|
|
select_pos(xtab, "0")
|
|
|
|
xtarget = xDialog.getChild("target")
|
|
xtarget.executeAction("TYPE", mkPropertyValues({"TEXT": "www.libreoffice.org:80"}))
|
|
|
|
# Check that the link is added with http scheme
|
|
xMainWindow = self.xUITest.getTopFocusWindow()
|
|
xedit = xMainWindow.getChild("writer_edit")
|
|
xedit.executeAction("SELECT", mkPropertyValues({"START_POS": "0", "END_POS": "29"}))
|
|
self.assertEqual(get_state_as_dict(xedit)["SelectedText"], "http://www.libreoffice.org:80")
|
|
|
|
def test_tdf90496(self):
|
|
with self.ui_test.create_doc_in_start_center("writer"):
|
|
with self.ui_test.execute_dialog_through_command(".uno:HyperlinkDialog", close_button="cancel") as xDialog:
|
|
# Select a random tab to check the preselection in the hyperlink dialog
|
|
xTab = xDialog.getChild("tabcontrol")
|
|
select_pos(xTab, "1")
|
|
|
|
with self.ui_test.execute_dialog_through_command(".uno:HyperlinkDialog", close_button="cancel") as xDialog:
|
|
xTab = xDialog.getChild("tabcontrol")
|
|
# Without the fix in place, this test would have failed with
|
|
# AssertionError: '1' != '0'
|
|
# i.e. the last used tab in the hyperlink dialog was not remembered
|
|
self.assertEqual("1", get_state_as_dict(xTab)["CurrPagePos"])
|
|
|
|
def test_tdf146576_propose_clipboard_content(self):
|
|
with self.ui_test.create_doc_in_start_center("writer"):
|
|
xWriterDoc = self.xUITest.getTopFocusWindow()
|
|
xWriterEdit = xWriterDoc.getChild("writer_edit")
|
|
|
|
sampleURLs = [
|
|
("libreoffice", ""),
|
|
("http://www.libreoffice.org", "http://www.libreoffice.org/"),
|
|
(" http://www.libreoffice.org ", "http://www.libreoffice.org/")
|
|
]
|
|
|
|
# Insert sample URLs
|
|
for sampleURL, expectedURL in sampleURLs:
|
|
self.xUITest.executeCommand(".uno:SelectAll")
|
|
xWriterEdit.executeAction("TYPE", mkPropertyValues({"TEXT": sampleURL}))
|
|
|
|
# Copy URL and open the hyperlink dialog
|
|
self.xUITest.executeCommand(".uno:SelectAll")
|
|
self.xUITest.executeCommand(".uno:Copy")
|
|
with self.ui_test.execute_dialog_through_command(".uno:HyperlinkDialog", close_button="cancel") as xDialog:
|
|
xTab = xDialog.getChild("tabcontrol")
|
|
select_pos(xTab, "0")
|
|
# Check if the content of the clipboard is proposed as expected
|
|
xTarget = xDialog.getChild("target")
|
|
self.assertEqual(get_state_as_dict(xTarget)["Text"].lower(), expectedURL)
|
|
|
|
def test_tdf162753_propose_clipboard_content_internet(self):
|
|
with self.ui_test.create_doc_in_start_center("writer"):
|
|
# Insert a sample URL
|
|
xWriterDoc = self.xUITest.getTopFocusWindow()
|
|
xWriterEdit = xWriterDoc.getChild("writer_edit")
|
|
xWriterEdit.executeAction("TYPE", mkPropertyValues({"TEXT": "http://www.libreoffice.org"}))
|
|
|
|
# Copy URL and open the hyperlink dialog
|
|
self.xUITest.executeCommand(".uno:SelectAll")
|
|
self.xUITest.executeCommand(".uno:Copy")
|
|
with self.ui_test.execute_dialog_through_command(".uno:HyperlinkDialog", close_button="cancel") as xDialog:
|
|
xTab = xDialog.getChild("tabcontrol")
|
|
select_pos(xTab, "0")
|
|
# Check if the content of the clipboard is proposed as URL in the hyperlink dialog
|
|
xTarget = xDialog.getChild("target")
|
|
self.assertEqual(get_state_as_dict(xTarget)["Text"].lower(), "http://www.libreoffice.org/")
|
|
select_pos(xTab, "2")
|
|
# Select document dialog and check if the content of the clipboard is not proposed as URL
|
|
xPath = xDialog.getChild("path")
|
|
self.assertEqual(get_state_as_dict(xPath)["Text"], "")
|
|
# Select internet dialog and check if the content of the clipboard is again proposed as URL
|
|
select_pos(xTab, "0")
|
|
xTarget = xDialog.getChild("target")
|
|
self.assertEqual(get_state_as_dict(xTarget)["Text"].lower(), "http://www.libreoffice.org/")
|
|
|
|
def test_tdf141166(self):
|
|
# Skip this test for --with-help=html and --with-help=online, as that would fail with a
|
|
# DialogNotExecutedException("did not execute a dialog for a blocking action") thrown from
|
|
# the below execute_blocking_action call (and would leave behind the relevant HTML page
|
|
# opened in the user's default browser):
|
|
if os.getenv('ENABLE_HTMLHELP') == 'TRUE':
|
|
return
|
|
# Skip this test for --enable-xmlhelp, as that would fail with a
|
|
# "uno.com.sun.star.uno.RuntimeException: Could not find child with id: cancel" thrown from
|
|
# the below execute_blocking_action call, as it would open the "LibreOffice Help" window
|
|
# instead of the apparently expected "LibreOffice Help Not Installed" dialog that has a
|
|
# "Cancel" button:
|
|
if re.compile(r'XMLHELP\b').search(os.getenv('BUILD_TYPE')):
|
|
return
|
|
|
|
with self.ui_test.create_doc_in_start_center("writer"):
|
|
|
|
with self.ui_test.execute_dialog_through_command(".uno:HyperlinkDialog", close_button="") as xDialog:
|
|
xHelp = xDialog.getChild("help")
|
|
xHelp.executeAction('FOCUS', tuple())
|
|
|
|
# Without the fix in place, this test would have crashed here
|
|
with self.ui_test.execute_blocking_action(xHelp.executeAction,
|
|
args=("CLICK", tuple()), close_button="cancel"):
|
|
pass
|
|
|
|
# vim: set shiftwidth=4 softtabstop=4 expandtab:
|