summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorVasily Melenchuk <vasily.melenchuk@cib.de>2018-09-17 21:57:26 +0300
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2018-09-19 23:50:01 +0200
commit62cd86977ca41677c56fb2d1f97bb1c5cbdbd416 (patch)
treeb12b16d0e405c79b52163fc295c553e523556035 /sw
parentaf8c304b8f984066d80d64f9a821ee9433e97781 (diff)
sw: new unit test for XScriptProvider
Change-Id: I2954bff51d6a507fef4d8a22ff5964735f1cee60 Reviewed-on: https://gerrit.libreoffice.org/60640 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'sw')
-rw-r--r--sw/PythonTest_sw_python.mk1
-rw-r--r--sw/qa/python/testdocuments/xscriptprovider.odtbin0 -> 10841 bytes
-rw-r--r--sw/qa/python/xscriptprovider.py74
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
new file mode 100644
index 000000000000..fa3b8ec75229
--- /dev/null
+++ b/sw/qa/python/testdocuments/xscriptprovider.odt
Binary files 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: