1*ef39d40dSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*ef39d40dSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*ef39d40dSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*ef39d40dSAndrew Rist  * distributed with this work for additional information
6*ef39d40dSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*ef39d40dSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*ef39d40dSAndrew Rist  * "License"); you may not use this file except in compliance
9*ef39d40dSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*ef39d40dSAndrew Rist  *
11*ef39d40dSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*ef39d40dSAndrew Rist  *
13*ef39d40dSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*ef39d40dSAndrew Rist  * software distributed under the License is distributed on an
15*ef39d40dSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*ef39d40dSAndrew Rist  * KIND, either express or implied.  See the License for the
17*ef39d40dSAndrew Rist  * specific language governing permissions and limitations
18*ef39d40dSAndrew Rist  * under the License.
19*ef39d40dSAndrew Rist  *
20*ef39d40dSAndrew Rist  *************************************************************/
21*ef39d40dSAndrew Rist 
22*ef39d40dSAndrew Rist 
23cdf0e10cSrcweir package ifc.configuration.backend;
24cdf0e10cSrcweir 
25cdf0e10cSrcweir import com.sun.star.configuration.backend.XSchema;
26cdf0e10cSrcweir import com.sun.star.configuration.backend.XSchemaSupplier;
27cdf0e10cSrcweir 
28cdf0e10cSrcweir import lib.MultiMethodTest;
29cdf0e10cSrcweir import util.XSchemaHandlerImpl;
30cdf0e10cSrcweir 
31cdf0e10cSrcweir public class _XSchemaSupplier extends MultiMethodTest {
32cdf0e10cSrcweir     public XSchemaSupplier oObj;
33cdf0e10cSrcweir 
_getComponentSchema()34cdf0e10cSrcweir     public void _getComponentSchema() {
35cdf0e10cSrcweir         boolean res = true;
36cdf0e10cSrcweir         XSchema aSchema = null;
37cdf0e10cSrcweir 
38cdf0e10cSrcweir         try {
39cdf0e10cSrcweir             aSchema = oObj.getComponentSchema("org.openoffice.Office.Linguistic");
40cdf0e10cSrcweir             res &= (aSchema != null);
41cdf0e10cSrcweir 
42cdf0e10cSrcweir             if (aSchema == null) {
43cdf0e10cSrcweir                 log.println("\treturned Layer is NULL -- FAILED");
44cdf0e10cSrcweir             }
45cdf0e10cSrcweir 
46cdf0e10cSrcweir             res &= checkSchema(aSchema);
47cdf0e10cSrcweir         } catch (com.sun.star.configuration.backend.BackendAccessException e) {
48cdf0e10cSrcweir             log.println("Unexpected Exception (" + e + ") -- FAILED");
49cdf0e10cSrcweir             res &= false;
50cdf0e10cSrcweir         } catch (com.sun.star.lang.IllegalArgumentException e) {
51cdf0e10cSrcweir             log.println("Unexpected Exception (" + e + ") -- FAILED");
52cdf0e10cSrcweir             res &= false;
53cdf0e10cSrcweir         }
54cdf0e10cSrcweir         tRes.tested("getComponentSchema()",res);
55cdf0e10cSrcweir     }
56cdf0e10cSrcweir 
checkSchema(XSchema aSchema)57cdf0e10cSrcweir     protected boolean checkSchema(XSchema aSchema) {
58cdf0e10cSrcweir         boolean res = false;
59cdf0e10cSrcweir         XSchemaHandlerImpl xSchemaHandlerImpl = new XSchemaHandlerImpl();
60cdf0e10cSrcweir         log.println("Checking for Exception in case of null argument");
61cdf0e10cSrcweir 
62cdf0e10cSrcweir         try {
63cdf0e10cSrcweir             aSchema.readTemplates(null);
64cdf0e10cSrcweir             log.println("NoException thrown for null argument -- FAILED");
65cdf0e10cSrcweir         } catch (com.sun.star.lang.NullPointerException e) {
66cdf0e10cSrcweir             log.println("Expected Exception -- OK");
67cdf0e10cSrcweir             res = true;
68cdf0e10cSrcweir         } catch (com.sun.star.lang.WrappedTargetException e) {
69cdf0e10cSrcweir             log.println("Unexpected Exception (" + e + ") -- FAILED");
70cdf0e10cSrcweir         } catch (com.sun.star.configuration.backend.MalformedDataException e) {
71cdf0e10cSrcweir             log.println("Unexpected Exception (" + e + ") -- FAILED");
72cdf0e10cSrcweir         }
73cdf0e10cSrcweir 
74cdf0e10cSrcweir         log.println(
75cdf0e10cSrcweir                 "checking readComponent with own XSchemaHandler implementation");
76cdf0e10cSrcweir 
77cdf0e10cSrcweir         try {
78cdf0e10cSrcweir             aSchema.readComponent(xSchemaHandlerImpl);
79cdf0e10cSrcweir 
80cdf0e10cSrcweir             String implCalled = xSchemaHandlerImpl.getCalls();
81cdf0e10cSrcweir             int sc = implCalled.indexOf("startComponent");
82cdf0e10cSrcweir 
83cdf0e10cSrcweir             if (sc < 0) {
84cdf0e10cSrcweir                 log.println("startComponent wasn't called -- FAILED");
85cdf0e10cSrcweir                 res &= false;
86cdf0e10cSrcweir             } else {
87cdf0e10cSrcweir                 log.println("startComponent was called -- OK");
88cdf0e10cSrcweir                 res &= true;
89cdf0e10cSrcweir             }
90cdf0e10cSrcweir 
91cdf0e10cSrcweir             int ec = implCalled.indexOf("endComponent");
92cdf0e10cSrcweir 
93cdf0e10cSrcweir             if (ec < 0) {
94cdf0e10cSrcweir                 log.println("endComponent wasn't called -- FAILED");
95cdf0e10cSrcweir                 res &= false;
96cdf0e10cSrcweir             } else {
97cdf0e10cSrcweir                 log.println("endComponent was called -- OK");
98cdf0e10cSrcweir                 res &= true;
99cdf0e10cSrcweir             }
100cdf0e10cSrcweir         } catch (com.sun.star.lang.NullPointerException e) {
101cdf0e10cSrcweir             log.println("Unexpected Exception (" + e + ") -- FAILED");
102cdf0e10cSrcweir             res &= false;
103cdf0e10cSrcweir         } catch (com.sun.star.lang.WrappedTargetException e) {
104cdf0e10cSrcweir             log.println("Unexpected Exception (" + e + ") -- FAILED");
105cdf0e10cSrcweir             res &= false;
106cdf0e10cSrcweir         } catch (com.sun.star.configuration.backend.MalformedDataException e) {
107cdf0e10cSrcweir             log.println("Unexpected Exception (" + e + ") -- FAILED");
108cdf0e10cSrcweir             res &= false;
109cdf0e10cSrcweir         }
110cdf0e10cSrcweir 
111cdf0e10cSrcweir         return res;
112cdf0e10cSrcweir 
113cdf0e10cSrcweir     }
114cdf0e10cSrcweir }