#! /usr/bin/env 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/. #
import unittest import uno
from org.libreoffice.unotest import UnoInProcess from com.sun.star.script.provider import ScriptFrameworkErrorException
def test_get_script_application(self): #getScript for built-in StarBasic function
xScript = self.xScriptProvider.getScript( "vnd.sun.star.script:Tools.Misc.CreateNewDocument?language=Basic&" "location=application")
self.assertIsNotNone(xScript, "xScript was not loaded")
def test_get_script_document(self): #getScript for StarBasic function in loaded document
x_doc = self.__class__._uno.openTemplateFromTDOC("xscriptprovider.odt")
self.assertIsNotNone(xScript, "xScript was not loaded")
x_doc.close(True)
def test_get_script_invalid_uri(self): # getScript fails with invalid URI with self.assertRaises(ScriptFrameworkErrorException):
self.xScriptProvider.getScript("invalid URI, isn't it?")
def test_get_script_not_found(self): # getScript fails when script not found with self.assertRaises(ScriptFrameworkErrorException):
self.xScriptProvider.getScript( "vnd.sun.star.script:NotExisting.NotExisting.NotExisting?" "language=Basic&location=document")
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 ist noch experimentell.