merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / basic / ifc / uno / XNamingService / uno_XNamingService.xba
blob5fef8e07e047fc6ffe240ba09a2d4380de90e3b4
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
3 <script:module xmlns:script="http://openoffice.org/2000/script" script:name="uno_XNamingService" script:language="StarBasic">
6 '*************************************************************************
8 ' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9 '
10 ' Copyright 2008 by Sun Microsystems, Inc.
12 ' OpenOffice.org - a multi-platform office productivity suite
14 ' $RCSfile: uno_XNamingService.xba,v $
16 ' $Revision: 1.3 $
18 ' This file is part of OpenOffice.org.
20 ' OpenOffice.org is free software: you can redistribute it and/or modify
21 ' it under the terms of the GNU Lesser General Public License version 3
22 ' only, as published by the Free Software Foundation.
24 ' OpenOffice.org is distributed in the hope that it will be useful,
25 ' but WITHOUT ANY WARRANTY; without even the implied warranty of
26 ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 ' GNU Lesser General Public License version 3 for more details
28 ' (a copy is included in the LICENSE file that accompanied this code).
30 ' You should have received a copy of the GNU Lesser General Public License
31 ' version 3 along with OpenOffice.org. If not, see
32 ' <http://www.openoffice.org/license.html>
33 ' for a copy of the LGPLv3 License.
35 '*************************************************************************
36 '*************************************************************************
40 '*************************************************************************
41 ' This Interface/Service test depends on the following GLOBAL variables,
42 ' which must be specified in the object creation:
44 ' - Global oObjectToRegister As Object
46 '*************************************************************************
52 Sub RunTest()
54 '*************************************************************************
55 ' INTERFACE:
56 ' com.sun.star.uno.XNamingService
57 '*************************************************************************
58 On Error Goto ErrHndl
59 Dim bOK As Boolean
61 Test.StartMethod("registerObject()")
62 bOK = true
63 oObj.registerObject(cIfcShortName, oObjectToRegister)
64 Test.MethodTested("registerObject()", bOK)
66 Test.StartMethod("getRegisteredObject()")
67 bOK = true
68 objregObj = oObj.getRegisteredObject(cIfcShortName)
69 bOK = bOK AND NOT isNULL(objregObj)
70 bOK = bOK AND objregObj.implementationName = oObjectToRegister.implementationName
71 Test.MethodTested("getRegisteredObject()", bOK)
73 Test.StartMethod("revokeObject()")
74 bOK = true
75 oObj.revokeObject(cIfcShortName)
76 Out.Log("Object was revoked")
77 on Error goto GoodExc
78 Out.Log("Trying to getRegistered object ...")
79 objregObj = oObj.getRegisteredObject(cIfcShortName)
80 Out.Log("No exception.")
81 bOK = bOK AND isNULL(objregObj)
82 if (bOK) then Out.Log("But NULL was returned")
83 goto cont
84 GoodExc:
85 Out.Log("Expected exception - OK")
86 cont:
87 Test.MethodTested("revokeObject()", bOK)
90 Exit Sub
91 ErrHndl:
92 Test.Exception()
93 bOK = false
94 resume next
95 End Sub
96 </script:module>