1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir package testtools.servicetests;
29*cdf0e10cSrcweir 
30*cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
31*cdf0e10cSrcweir import complexlib.ComplexTestCase;
32*cdf0e10cSrcweir import util.WaitUnreachable;
33*cdf0e10cSrcweir 
34*cdf0e10cSrcweir public abstract class TestBase extends ComplexTestCase {
35*cdf0e10cSrcweir     public final String[] getTestMethodNames() {
36*cdf0e10cSrcweir         return new String[] { "test" };
37*cdf0e10cSrcweir     }
38*cdf0e10cSrcweir 
39*cdf0e10cSrcweir     public final void test() throws Exception {
40*cdf0e10cSrcweir         TestServiceFactory factory = getTestServiceFactory();
41*cdf0e10cSrcweir         TestService2 t = UnoRuntime.queryInterface(
42*cdf0e10cSrcweir             TestService2.class, factory.get());
43*cdf0e10cSrcweir         assure(t != null);
44*cdf0e10cSrcweir         assure(UnoRuntime.queryInterface(TestService1.class, t) == t);
45*cdf0e10cSrcweir         assure(UnoRuntime.queryInterface(XTestService1.class, t) == t);
46*cdf0e10cSrcweir         assure(UnoRuntime.queryInterface(XTestService2.class, t) == t);
47*cdf0e10cSrcweir         assure(t.fn1() == 1);
48*cdf0e10cSrcweir         assure(t.getProp1() == 1);
49*cdf0e10cSrcweir         t.setProp1(0);
50*cdf0e10cSrcweir         assure(t.getProp1() == 0);
51*cdf0e10cSrcweir         assure(t.getProp2() == 2);
52*cdf0e10cSrcweir         /*try {
53*cdf0e10cSrcweir             t.getProp3Void();
54*cdf0e10cSrcweir             failed();
55*cdf0e10cSrcweir         } catch (VoidPropertyException e) {
56*cdf0e10cSrcweir         }*/
57*cdf0e10cSrcweir         assure(t.getProp3Long() == 3);
58*cdf0e10cSrcweir         /*try {
59*cdf0e10cSrcweir             t.getProp4None();
60*cdf0e10cSrcweir             failed();
61*cdf0e10cSrcweir         } catch (OptionalPropertyException e) {
62*cdf0e10cSrcweir         }*/
63*cdf0e10cSrcweir         assure(t.getProp4Long() == 4);
64*cdf0e10cSrcweir         /*try {
65*cdf0e10cSrcweir             t.getProp5None();
66*cdf0e10cSrcweir             failed();
67*cdf0e10cSrcweir         } catch (OptionalPropertyException e) {
68*cdf0e10cSrcweir         }
69*cdf0e10cSrcweir         try {
70*cdf0e10cSrcweir             t.getProp5Void();
71*cdf0e10cSrcweir             failed();
72*cdf0e10cSrcweir         } catch (VoidPropertyException e) {
73*cdf0e10cSrcweir         }*/
74*cdf0e10cSrcweir         assure(t.getProp5Long() == 5);
75*cdf0e10cSrcweir         assure(t.getProp6() == 6);
76*cdf0e10cSrcweir         /*t.clearProp6();
77*cdf0e10cSrcweir         try {
78*cdf0e10cSrcweir             t.getProp6();
79*cdf0e10cSrcweir             failed();
80*cdf0e10cSrcweir         } catch (VoidPropertyException e) {
81*cdf0e10cSrcweir         }*/
82*cdf0e10cSrcweir         t.setProp6(0);
83*cdf0e10cSrcweir         assure(t.getProp6() == 0);
84*cdf0e10cSrcweir         /*try {
85*cdf0e10cSrcweir             t.getProp7None();
86*cdf0e10cSrcweir             failed();
87*cdf0e10cSrcweir         } catch (OptionalPropertyException e) {
88*cdf0e10cSrcweir         }
89*cdf0e10cSrcweir         try {
90*cdf0e10cSrcweir             t.setProp7None(0);
91*cdf0e10cSrcweir             failed();
92*cdf0e10cSrcweir         } catch (OptionalPropertyException e) {
93*cdf0e10cSrcweir         }
94*cdf0e10cSrcweir         try {
95*cdf0e10cSrcweir             t.clearProp7None();
96*cdf0e10cSrcweir             failed();
97*cdf0e10cSrcweir         } catch (OptionalPropertyException e) {
98*cdf0e10cSrcweir         }*/
99*cdf0e10cSrcweir         assure(t.getProp7() == 7);
100*cdf0e10cSrcweir         /*t.clearProp7();
101*cdf0e10cSrcweir         try {
102*cdf0e10cSrcweir             t.getProp7();
103*cdf0e10cSrcweir             failed();
104*cdf0e10cSrcweir         } catch (VoidPropertyException e) {
105*cdf0e10cSrcweir         }*/
106*cdf0e10cSrcweir         t.setProp7(0);
107*cdf0e10cSrcweir         assure(t.getProp7() == 0);
108*cdf0e10cSrcweir         /*try {
109*cdf0e10cSrcweir             t.getProp8None();
110*cdf0e10cSrcweir             failed();
111*cdf0e10cSrcweir         } catch (OptionalPropertyException e) {
112*cdf0e10cSrcweir         }
113*cdf0e10cSrcweir         try {
114*cdf0e10cSrcweir             t.setProp8None(0);
115*cdf0e10cSrcweir             failed();
116*cdf0e10cSrcweir         } catch (OptionalPropertyException e) {
117*cdf0e10cSrcweir         }*/
118*cdf0e10cSrcweir         assure(t.getProp8Long() == 8);
119*cdf0e10cSrcweir         t.setProp8Long(0);
120*cdf0e10cSrcweir         assure(t.getProp8Long() == 0);
121*cdf0e10cSrcweir         assure(t.fn2() == 2);
122*cdf0e10cSrcweir         XTestService3 t3 = UnoRuntime.queryInterface(XTestService3.class, t);
123*cdf0e10cSrcweir         assure(t3 != null);
124*cdf0e10cSrcweir         assure(t3.fn3() == 3);
125*cdf0e10cSrcweir         XTestService4 t4 = UnoRuntime.queryInterface(XTestService4.class, t);
126*cdf0e10cSrcweir         assure(t4 == null);
127*cdf0e10cSrcweir         WaitUnreachable u = new WaitUnreachable(t);
128*cdf0e10cSrcweir         t = null;
129*cdf0e10cSrcweir         WaitUnreachable.ensureFinalization(t3);
130*cdf0e10cSrcweir         t3 = null;
131*cdf0e10cSrcweir         WaitUnreachable.ensureFinalization(t4);
132*cdf0e10cSrcweir         t4 = null;
133*cdf0e10cSrcweir         u.waitUnreachable();
134*cdf0e10cSrcweir         factory.dispose();
135*cdf0e10cSrcweir     }
136*cdf0e10cSrcweir 
137*cdf0e10cSrcweir     protected abstract TestServiceFactory getTestServiceFactory()
138*cdf0e10cSrcweir         throws Exception;
139*cdf0e10cSrcweir 
140*cdf0e10cSrcweir     protected interface TestServiceFactory {
141*cdf0e10cSrcweir         Object get() throws Exception;
142*cdf0e10cSrcweir 
143*cdf0e10cSrcweir         void dispose() throws Exception;
144*cdf0e10cSrcweir     }
145*cdf0e10cSrcweir }
146