From 62cd86977ca41677c56fb2d1f97bb1c5cbdbd416 Mon Sep 17 00:00:00 2001 From: Vasily Melenchuk Date: Mon, 17 Sep 2018 21:57:26 +0300 Subject: sw: new unit test for XScriptProvider Change-Id: I2954bff51d6a507fef4d8a22ff5964735f1cee60 Reviewed-on: https://gerrit.libreoffice.org/60640 Tested-by: Jenkins Reviewed-by: Thorsten Behrens --- sw/PythonTest_sw_python.mk | 1 + sw/qa/python/testdocuments/xscriptprovider.odt | Bin 0 -> 10841 bytes sw/qa/python/xscriptprovider.py | 74 +++++++++++++++++++++++++ 3 files changed, 75 insertions(+) create mode 100644 sw/qa/python/testdocuments/xscriptprovider.odt create mode 100644 sw/qa/python/xscriptprovider.py 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 new file mode 100644 index 000000000000..fa3b8ec75229 Binary files /dev/null and b/sw/qa/python/testdocuments/xscriptprovider.odt differ 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: -- cgit