summaryrefslogtreecommitdiff
path: root/smoketestdoc/data/Test_Ext.xml
blob: ac39f4816d7bddbf2b4e06d2878eda7cc75b5d02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?xml version="1.0" encoding="UTF-8"?>
<!--**********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org.  If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
**********************************************************************-->
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Test_Ext" script:language="StarBasic">REM  *****  BASIC  *****

const cMessageExtensionService = &quot;Extension Service&quot;
const cMessageExtensionInstall = &quot;Install Extension&quot;
const cMessageExtensionUninstall = &quot;Uninstall Extension&quot;

Sub TestExtensions
    Dim oTestExtension as Object, obj_null as Object
    Dim sCurrentMessage as String
    Dim bResult as Boolean
    Dim sImplementationNameString as String
    sImplementationNameString = cUnoSmoketestTestExtension + &quot;$_TestExtension&quot;

    On Local Error GoTo EXTERROR

    gCurrentTestCase = cLogfileFailed
    LocalTestLog% = OpenLogDat (GetLogFileName(gCurrentDocTest))

    sCurrentMessage = cMessageExtensionService
    gCurrentTestCase = cEXTService

    &apos;Create an implementation of com.sun.star.ucb.XCommandEnvironment which is needed for
    &apos;adding the extension. The implementation is in
    &apos;javaunohelper/com/sun/star/comp/juhtest/SmoketestCommandEnvironment.java and the code is in juh.jar
    cmdEnv = createUnoService(cUnoSmoketestCommandEnvironment)

    &apos;Create the component context and then get the singleton ExtensionManager
    &apos;A singleton cannot be created with createUnoService
    ctx = getDefaultContext
    ext_mgr = ctx.getValueByName(&quot;/singletons/&quot; + cExtensionManager)

    LogTestResult( &quot;Extension &quot;+ cMessageExtensionService, not IsNull (ext_mgr) )
    if (IsNull(ext_mgr)) then
        Close #LocalTestLog%
        LocalTestLog = 0
        Exit Sub
    End If

    sCurrentMessage = cMessageExtensionInstall
    gCurrentTestCase = cEXTInstall

    &apos;Add the extension. We must provide a file URL here.
    &apos;By passing &quot;user&quot; we determine that the actions we perform on
    &apos;XExtensionManager only affect the user installation. To modify the share installation one would pass &quot;share&quot;.

    Dim props() as Object
    ext_mgr.addExtension(sExtensionURL + cExtensionFileName, props, &quot;user&quot;, obj_null, cmdEnv)

    &apos;Check if the extension has been added by creating a service which is contained in the extension.
    oTestExtension = createUnoService(cUnoSmoketestTestExtension)
    bResult = (oTestExtension.getImplementationName = sImplementationNameString)
    LogTestResult( &quot;Extension &quot;+ cMessageExtensionInstall, bResult )
    if (not bResult) then
        Close #LocalTestLog%
        LocalTestLog = 0
        Exit Sub
    End If

    sCurrentMessage = cMessageExtensionUninstall
    gCurrentTestCase = cEXTUninstall

    &apos;Remove the package
    ext_mgr.removeExtension(&quot;org.openoffice.legacy.&quot; + cExtensionFileName, cExtensionFileName, &quot;user&quot;,obj_null, cmdEnv)

    &apos;Try to create the service which is contained in the now removed extension.
    oTestExtension = createUnoService(cUnoSmoketestTestExtension)

    &apos;The service must not be available anymore. Therefor isNull must return true.
    LogTestResult( &quot;Extension &quot;+ cMessageExtensionUninstall, IsNull (oTestExtension) )

    Print #LocalTestLog, &quot;---&quot;
    Close #LocalTestLog%
    LocalTestLog = 0
    Exit Sub &apos; Without error

    EXTERROR:
    If ( gCurrentTestCase = cLogfileFailed ) then
        LogTestResult( &quot; &quot;, False )
        Exit Sub
    else
        LogTestResult( &quot;Extension &quot;+ sCurrentMessage, False )
        Close #LocalTestLog%
        LocalTestLog = 0
    End If
    Exit Sub &apos; With error

End Sub
</script:module>