update dev300-m58
[ooovba.git] / qadevOOo / tests / basic / ifc / container / XHierarchicalNameAccess / container_XHierarchicalNameAccess.xba
blobb160b82d26823bd0ee4d1a2c284271d5c595da2f
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="container_XHierarchicalNameAccess" 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: container_XHierarchicalNameAccess.xba,v $
16 ' $Revision: 1.4 $
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 '*************************************************************************
38 ' This Interface/Service test depends on the following object relations
39 ' variables, which must be specified in the object creation:
41 ' ObjectRelation: oObjRelation(0).Name = "ElementName"
42 ' ObjectRelation: oObjRelation(0).Value = "MyAccessibleElementName"
44 Sub RunTest()
46 '*************************************************************************
47 ' INTERFACE:
48 ' com.sun.star.container.XHierarchicalNameAccess
49 '*************************************************************************
50 On Error Goto ErrHndl
51 Dim bOK As Boolean
53 Dim cObjRelation as Variant
54 cObjRelation = utils.getObjectRelation("ElementName")
55 if isNull(cObjRelation) then
56 cObjRelation = cIfcLongName
57 end if
59 Test.StartMethod("getByHierarchicalName()")
60 bOK = true
61 Dim oRet as Variant
62 oRet = oObj.getByHierarchicalName(cObjRelation)
63 if TypeName(oRet) = "String" then
64 out.log("oRet = " + oRet)
65 bOK = bOK and (oRet = cObjRelation)
66 else
67 bOK = bOK AND oRet.Name = cObjRelation
68 end if
69 Test.MethodTested("getByHierarchicalName()", bOK)
71 Test.StartMethod("hasByHierarchicalName()")
72 bOK = true
73 bOK = bOK AND oObj.hasByHierarchicalName(cObjRelation)
74 bOK = bOK AND NOT oObj.hasByHierarchicalName(cObjRelation + "ThisIsAnInvalidName")
75 Test.MethodTested("hasByHierarchicalName()", bOK)
77 Exit Sub
78 ErrHndl:
79 Test.Exception()
80 bOK = false
81 resume next
82 End Sub
83 </script:module>