xref: /aoo41x/main/qadevOOo/tests/java/ifc/awt/_XView.java (revision ef39d40d)
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 
24cdf0e10cSrcweir package ifc.awt;
25cdf0e10cSrcweir 
26cdf0e10cSrcweir import lib.MultiMethodTest;
27cdf0e10cSrcweir 
28cdf0e10cSrcweir import com.sun.star.awt.Size;
29cdf0e10cSrcweir import com.sun.star.awt.XGraphics;
30cdf0e10cSrcweir import com.sun.star.awt.XView;
31cdf0e10cSrcweir 
32cdf0e10cSrcweir /**
33cdf0e10cSrcweir * Testing <code>com.sun.star.awt.XView</code>
34cdf0e10cSrcweir * interface methods:
35cdf0e10cSrcweir * <ul>
36cdf0e10cSrcweir *  <li><code> setGraphics() </code></li>
37cdf0e10cSrcweir *  <li><code> getGraphics() </code></li>
38cdf0e10cSrcweir *  <li><code> getSize() </code></li>
39cdf0e10cSrcweir *  <li><code> draw() </code></li>
40cdf0e10cSrcweir *  <li><code> setZoom() </code></li>
41cdf0e10cSrcweir * </ul><p>
42cdf0e10cSrcweir * This test needs the following object relations :
43cdf0e10cSrcweir * <ul>
44cdf0e10cSrcweir *  <li> <code>'GRAPHICS'</code> (of type <code>XGraphics</code>):
45cdf0e10cSrcweir *   used as a parameter to setGraphics() </li>
46cdf0e10cSrcweir * </ul> <p>
47cdf0e10cSrcweir * Test is <b> NOT </b> multithread compilant. <p>
48cdf0e10cSrcweir * @see com.sun.star.awt.XView
49cdf0e10cSrcweir */
50cdf0e10cSrcweir public class _XView extends MultiMethodTest {
51cdf0e10cSrcweir     public XView oObj = null;
52cdf0e10cSrcweir 
53cdf0e10cSrcweir     /**
54cdf0e10cSrcweir     * After obtaining object relation 'GRAPHICS', test calls the method. <p>
55cdf0e10cSrcweir     * Has <b> OK </b> status if the method returns true.
56cdf0e10cSrcweir     */
_setGraphics()57cdf0e10cSrcweir     public void _setGraphics() {
58cdf0e10cSrcweir         XGraphics graph = (XGraphics) tEnv.getObjRelation("GRAPHICS");
59cdf0e10cSrcweir         boolean isSet = oObj.setGraphics(graph);
60cdf0e10cSrcweir         if ( !isSet ) {
61cdf0e10cSrcweir             log.println("setGraphics() returns false");
62cdf0e10cSrcweir         }
63cdf0e10cSrcweir         tRes.tested("setGraphics()", isSet);
64cdf0e10cSrcweir     }
65cdf0e10cSrcweir 
66cdf0e10cSrcweir     /**
67cdf0e10cSrcweir     * Test calls the method. <p>
68cdf0e10cSrcweir     * Has <b> OK </b> status if the method does not return null. <p>
69cdf0e10cSrcweir     * The following method tests are to be completed successfully before :
70cdf0e10cSrcweir     * <ul>
71cdf0e10cSrcweir     *  <li> <code> setGraphics() </code> : sets the output device </li>
72cdf0e10cSrcweir     * </ul>
73cdf0e10cSrcweir     */
_getGraphics()74cdf0e10cSrcweir     public void _getGraphics() {
75cdf0e10cSrcweir         requiredMethod("setGraphics()");
76cdf0e10cSrcweir         XGraphics graph = oObj.getGraphics();
77cdf0e10cSrcweir         if (graph == null) {
78cdf0e10cSrcweir             log.println("getGraphics() returns NULL");
79cdf0e10cSrcweir         }
80cdf0e10cSrcweir         tRes.tested("getGraphics()", graph != null);
81cdf0e10cSrcweir     }
82cdf0e10cSrcweir 
83cdf0e10cSrcweir     /**
84cdf0e10cSrcweir     * Test calls the method. <p>
85cdf0e10cSrcweir     * Has <b> OK </b> status if the method returns structure with fields that
86cdf0e10cSrcweir     * are not equal to zero. <p>
87cdf0e10cSrcweir     * The following method tests are to be completed successfully before :
88cdf0e10cSrcweir     * <ul>
89cdf0e10cSrcweir     *  <li> <code> setGraphics() </code> : sets the output device </li>
90cdf0e10cSrcweir     * </ul>
91cdf0e10cSrcweir     */
_getSize()92cdf0e10cSrcweir     public void _getSize() {
93cdf0e10cSrcweir         requiredMethod("setGraphics()");
94cdf0e10cSrcweir         Size aSize = oObj.getSize();
95cdf0e10cSrcweir         boolean res = (aSize.Height != 0) && (aSize.Width != 0);
96cdf0e10cSrcweir         if ( !res ) {
97cdf0e10cSrcweir             log.println("Height: " + aSize.Height);
98cdf0e10cSrcweir             log.println("Width: " + aSize.Width);
99cdf0e10cSrcweir         }
100cdf0e10cSrcweir         tRes.tested("getSize()", res);
101cdf0e10cSrcweir     }
102cdf0e10cSrcweir 
103cdf0e10cSrcweir     /**
104cdf0e10cSrcweir     * Test calls the method. <p>
105cdf0e10cSrcweir     * Has <b> OK </b> status if no exceptions were thrown. <p>
106cdf0e10cSrcweir     * The following method tests are to be completed successfully before :
107cdf0e10cSrcweir     * <ul>
108cdf0e10cSrcweir     *  <li> <code> setGraphics() </code> : sets the output device </li>
109cdf0e10cSrcweir     * </ul>
110cdf0e10cSrcweir     */
_draw()111cdf0e10cSrcweir     public void _draw() {
112cdf0e10cSrcweir         requiredMethod("setGraphics()");
113cdf0e10cSrcweir         oObj.draw(20, 20);
114cdf0e10cSrcweir         tRes.tested("draw()", true);
115cdf0e10cSrcweir     }
116cdf0e10cSrcweir 
117cdf0e10cSrcweir     /**
118cdf0e10cSrcweir     * Test calls the method. <p>
119cdf0e10cSrcweir     * Has <b> OK </b> status if no exceptions were thrown. <p>
120cdf0e10cSrcweir     * The following method tests are to be completed successfully before :
121cdf0e10cSrcweir     * <ul>
122cdf0e10cSrcweir     *  <li> <code> setGraphics() </code> : sets the output device </li>
123cdf0e10cSrcweir     * </ul>
124cdf0e10cSrcweir     */
_setZoom()125cdf0e10cSrcweir     public void _setZoom() {
126cdf0e10cSrcweir         requiredMethod("setGraphics()");
127cdf0e10cSrcweir         oObj.setZoom(2,2);
128cdf0e10cSrcweir         tRes.tested("setZoom()", true);
129cdf0e10cSrcweir     }
130cdf0e10cSrcweir 
131cdf0e10cSrcweir     /**
132cdf0e10cSrcweir     * Forces environment recreation.
133cdf0e10cSrcweir     */
after()134cdf0e10cSrcweir     protected void after() {
135cdf0e10cSrcweir         disposeEnvironment();
136cdf0e10cSrcweir     }
137cdf0e10cSrcweir 
138cdf0e10cSrcweir }
139cdf0e10cSrcweir 
140