1ef39d40dSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3ef39d40dSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4ef39d40dSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5ef39d40dSAndrew Rist  * distributed with this work for additional information
6ef39d40dSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7ef39d40dSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8ef39d40dSAndrew Rist  * "License"); you may not use this file except in compliance
9ef39d40dSAndrew Rist  * with the License.  You may obtain a copy of the License at
10ef39d40dSAndrew Rist  *
11ef39d40dSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12ef39d40dSAndrew Rist  *
13ef39d40dSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14ef39d40dSAndrew Rist  * software distributed under the License is distributed on an
15ef39d40dSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16ef39d40dSAndrew Rist  * KIND, either express or implied.  See the License for the
17ef39d40dSAndrew Rist  * specific language governing permissions and limitations
18ef39d40dSAndrew Rist  * under the License.
19ef39d40dSAndrew Rist  *
20ef39d40dSAndrew Rist  *************************************************************/
21ef39d40dSAndrew Rist 
22ef39d40dSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir package ifc.container;
25cdf0e10cSrcweir 
26cdf0e10cSrcweir import lib.MultiMethodTest;
27cdf0e10cSrcweir 
28cdf0e10cSrcweir import com.sun.star.container.XContentEnumerationAccess;
29cdf0e10cSrcweir import com.sun.star.container.XEnumeration;
30cdf0e10cSrcweir 
31cdf0e10cSrcweir /**
32cdf0e10cSrcweir * Testing <code>com.sun.star.container.XContentEnumerationAccess</code>
33cdf0e10cSrcweir * interface methods :
34cdf0e10cSrcweir * <ul>
35cdf0e10cSrcweir *  <li><code> createContentEnumeration()</code></li>
36cdf0e10cSrcweir *  <li><code> getAvailableServiceNames()</code></li>
37cdf0e10cSrcweir * </ul> <p>
38cdf0e10cSrcweir * @see com.sun.star.container.XContentEnumerationAccess
39cdf0e10cSrcweir */
40cdf0e10cSrcweir public class _XContentEnumerationAccess extends MultiMethodTest{
41cdf0e10cSrcweir     public XContentEnumerationAccess oObj = null;
42cdf0e10cSrcweir     String[] serviceNames = null;
43cdf0e10cSrcweir 
44cdf0e10cSrcweir     /**
45cdf0e10cSrcweir     * Retrieves service names and stores them. <p>
46cdf0e10cSrcweir     * Has <b> OK </b> status if not <code>null</code>
47cdf0e10cSrcweir     * value returned.
48cdf0e10cSrcweir     */
_getAvailableServiceNames()49cdf0e10cSrcweir     public void _getAvailableServiceNames(){
50cdf0e10cSrcweir         boolean bResult = true;
51cdf0e10cSrcweir         try {
52cdf0e10cSrcweir             serviceNames = oObj.getAvailableServiceNames();
53cdf0e10cSrcweir             bResult = serviceNames != null ;
54cdf0e10cSrcweir         } catch (Exception e) {
55*bb6af6bcSPedro Giffuni             log.println("Exception occurred. " + e);
56cdf0e10cSrcweir             bResult = false;
57cdf0e10cSrcweir         }
58cdf0e10cSrcweir         tRes.tested("getAvailableServiceNames()", bResult);
59cdf0e10cSrcweir     }
60cdf0e10cSrcweir 
61cdf0e10cSrcweir     /**
62cdf0e10cSrcweir     * If at least one service available then an enumeration for
63cdf0e10cSrcweir     * it created. <p>
64cdf0e10cSrcweir     * Has <b> OK </b> status if no services available or enumeration
65cdf0e10cSrcweir     * created for available service is not <code>null</code>.
66cdf0e10cSrcweir     * The following method tests are to be completed successfully before :
67cdf0e10cSrcweir     * <ul>
68cdf0e10cSrcweir     *  <li> <code>getAvailableServiceNames()</code> :
69cdf0e10cSrcweir     *    to have at least one service name for enumeration to create for.</li>
70cdf0e10cSrcweir     * </ul>
71cdf0e10cSrcweir     */
_createContentEnumeration()72cdf0e10cSrcweir     public void _createContentEnumeration(){
73cdf0e10cSrcweir         requiredMethod("getAvailableServiceNames()");
74cdf0e10cSrcweir 
75cdf0e10cSrcweir         if (serviceNames.length == 0) {
76cdf0e10cSrcweir             log.println("No service name available") ;
77cdf0e10cSrcweir             tRes.tested("createContentEnumeration()", true) ;
78cdf0e10cSrcweir             return ;
79cdf0e10cSrcweir         }
80cdf0e10cSrcweir 
81cdf0e10cSrcweir         boolean bResult = true;
82cdf0e10cSrcweir 
83cdf0e10cSrcweir         log.println( "creating Enumeration" );
84cdf0e10cSrcweir         XEnumeration oEnum = oObj.createContentEnumeration(serviceNames[0]);
85cdf0e10cSrcweir         bResult &= oEnum != null;
86cdf0e10cSrcweir 
87cdf0e10cSrcweir         tRes.tested( "createContentEnumeration()",  bResult);
88cdf0e10cSrcweir     }
89cdf0e10cSrcweir }
90cdf0e10cSrcweir 
91cdf0e10cSrcweir 
92