diff options
-rw-r--r-- | sw/PythonTest_sw_python.mk | 1 | ||||
-rw-r--r-- | sw/qa/python/testdocuments/xscriptprovider.odt | bin | 0 -> 10841 bytes | |||
-rw-r--r-- | sw/qa/python/xscriptprovider.py | 74 |
3 files changed, 75 insertions, 0 deletions
diff --git a/sw/PythonTest_sw_python.mk b/sw/PythonTest_sw_python.mk index c47c5cbcbbd3..b9d8d509ced3 100644 --- a/sw/PythonTest_sw_python.mk +++ b/sw/PythonTest_sw_python.mk @@ -28,6 +28,7 @@ $(eval $(call gb_PythonTest_add_modules,sw_python,$(SRCDIR)/sw/qa/python,\ set_expression \ text_portion_enumeration_test \ var_fields \ + xscriptprovider \ )) # vim: set noet sw=4 ts=4: diff --git a/sw/qa/python/testdocuments/xscriptprovider.odt b/sw/qa/python/testdocuments/xscriptprovider.odt Binary files differnew file mode 100644 index 000000000000..fa3b8ec75229 --- /dev/null +++ b/sw/qa/python/testdocuments/xscriptprovider.odt diff --git a/sw/qa/python/xscriptprovider.py b/sw/qa/python/xscriptprovider.py new file mode 100644 index 000000000000..b79b379ad16d --- /dev/null +++ b/sw/qa/python/xscriptprovider.py @@ -0,0 +1,74 @@ +#! /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 unohelper +from org.libreoffice.unotest import UnoInProcess +from com.sun.star.script.provider import ScriptFrameworkErrorException +import uno + + +class TestXScriptProvider(unittest.TestCase): + + @classmethod + def setUpClass(cls): + cls._uno = UnoInProcess() + cls._uno.setUp() + + @classmethod + def tearDownClass(cls): + cls._uno.tearDown() + + def test_getScriptApplication(self): + # getScript for built-in StarBasic function + xMasterScriptProviderFactory = self.createMasterScriptProviderFactory() + xScriptProvider = xMasterScriptProviderFactory.createScriptProvider("") + xScript = xScriptProvider.getScript( + "vnd.sun.star.script:Tools.Misc.CreateNewDocument?language=Basic&" + "location=application") + self.assertIsNotNone(xScript, "xScript was not loaded") + + def test_getScriptDocument(self): + # getScript for StarBasic function in loaded document + xDoc = self.__class__._uno.openTemplateFromTDOC("xscriptprovider.odt") + xMasterScriptProviderFactory = self.createMasterScriptProviderFactory() + xScriptProvider = xMasterScriptProviderFactory.createScriptProvider(xDoc) + xScript = xScriptProvider.getScript( + "vnd.sun.star.script:Standard.Module1.Main?language=Basic&" + "location=document") + self.assertIsNotNone(xScript, "xScript was not loaded") + xDoc.close(True) + + def test_getScriptInvalidURI(self): + # getScript fails with invalid URI + xMasterScriptProviderFactory = self.createMasterScriptProviderFactory() + xScriptProvider = xMasterScriptProviderFactory.createScriptProvider("") + with self.assertRaises(ScriptFrameworkErrorException): + xScript = xScriptProvider.getScript("invalid URI, isn't it?") + + def test_getScriptNotFound(self): + # getScript fails when script not found + xMasterScriptProviderFactory = self.createMasterScriptProviderFactory() + xScriptProvider = xMasterScriptProviderFactory.createScriptProvider("") + with self.assertRaises(ScriptFrameworkErrorException): + xScript = xScriptProvider.getScript( + "vnd.sun.star.script:NotExisting.NotExisting.NotExisting?" + "language=Basic&location=document") + + def createMasterScriptProviderFactory(self): + xServiceManager = uno.getComponentContext().ServiceManager + return xServiceManager.createInstanceWithContext( + "com.sun.star.script.provider.MasterScriptProviderFactory", + uno.getComponentContext()) + + +if __name__ == '__main__': + unittest.main() + +# vim: set shiftwidth=4 softtabstop=4 expandtab: |