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 mod._sw;
25cdf0e10cSrcweir 
26cdf0e10cSrcweir import com.sun.star.beans.PropertyAttribute;
27cdf0e10cSrcweir import com.sun.star.beans.XPropertySet;
28cdf0e10cSrcweir import com.sun.star.container.XIndexAccess;
29cdf0e10cSrcweir import com.sun.star.container.XNameAccess;
30cdf0e10cSrcweir import com.sun.star.container.XNameContainer;
31cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory;
32cdf0e10cSrcweir import com.sun.star.style.XStyle;
33cdf0e10cSrcweir import com.sun.star.style.XStyleFamiliesSupplier;
34cdf0e10cSrcweir import com.sun.star.text.XText;
35cdf0e10cSrcweir import com.sun.star.text.XTextCursor;
36cdf0e10cSrcweir import com.sun.star.text.XTextDocument;
37cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
38cdf0e10cSrcweir import com.sun.star.uno.XInterface;
39cdf0e10cSrcweir import java.io.PrintWriter;
40cdf0e10cSrcweir import lib.StatusException;
41cdf0e10cSrcweir import lib.TestCase;
42cdf0e10cSrcweir import lib.TestEnvironment;
43cdf0e10cSrcweir import lib.TestParameters;
44cdf0e10cSrcweir import util.DesktopTools;
45cdf0e10cSrcweir import util.SOfficeFactory;
46cdf0e10cSrcweir import util.utils;
47cdf0e10cSrcweir 
48cdf0e10cSrcweir /**
49cdf0e10cSrcweir  * Test for object which is represented by service
50cdf0e10cSrcweir  * <code>com.sun.star.style.CharacterStyle</code>. <p>
51cdf0e10cSrcweir  * @see com.sun.star.style.CharacterStyle
52cdf0e10cSrcweir  */
53cdf0e10cSrcweir public class CharacterStyle extends TestCase {
54cdf0e10cSrcweir     private XTextDocument xTextDoc;
55cdf0e10cSrcweir 
56cdf0e10cSrcweir     /**
57cdf0e10cSrcweir     * Creates text document.
58cdf0e10cSrcweir     */
initialize( TestParameters tParam, PrintWriter log )59cdf0e10cSrcweir     protected void initialize( TestParameters tParam, PrintWriter log ) {
60cdf0e10cSrcweir         SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF() );
61cdf0e10cSrcweir         try {
62cdf0e10cSrcweir             log.println( "creating a textdocument" );
63cdf0e10cSrcweir             xTextDoc = SOF.createTextDoc( null );
64cdf0e10cSrcweir         } catch ( com.sun.star.uno.Exception e ) {
65cdf0e10cSrcweir             e.printStackTrace( log );
66cdf0e10cSrcweir             throw new StatusException( "Couldn't create document", e );
67cdf0e10cSrcweir         }
68cdf0e10cSrcweir     }
69cdf0e10cSrcweir 
70cdf0e10cSrcweir     /**
71cdf0e10cSrcweir     * Disposes text document.
72cdf0e10cSrcweir     */
cleanup( TestParameters tParam, PrintWriter log )73cdf0e10cSrcweir     protected void cleanup( TestParameters tParam, PrintWriter log ) {
74cdf0e10cSrcweir         log.println( "    disposing xTextDoc " );
75cdf0e10cSrcweir         DesktopTools.closeDoc(xTextDoc);
76cdf0e10cSrcweir     }
77cdf0e10cSrcweir 
78cdf0e10cSrcweir     /**
79cdf0e10cSrcweir     * Creating a Testenvironment for the interfaces to be tested.
80cdf0e10cSrcweir     * At first style families are gotten from a text document using
81cdf0e10cSrcweir     * <code>XStyleFamiliesSupplier</code> interface, then family indexed '0' is
82cdf0e10cSrcweir     * gotten from this style family using <code>XIndexAccess</code> interface.
83cdf0e10cSrcweir     * Next, method creates an instance of the service
84cdf0e10cSrcweir     * <code>com.sun.star.style.CharacterStyle</code> and inserts it to a
85cdf0e10cSrcweir     * previously obtained style family using <code>XNameContainer</code>
86cdf0e10cSrcweir     * interface. Finally, method creates a cursor of a major text of text
87cdf0e10cSrcweir     * document and sets it's property 'CharStyleName' value to the name of
88cdf0e10cSrcweir     * previously created style's name.
89cdf0e10cSrcweir     *     Object relations created :
90cdf0e10cSrcweir     * <ul>
91cdf0e10cSrcweir     *  <li> <code>'PoolStyle'</code> for
92cdf0e10cSrcweir     *      {@link ifc.style._XStyle} : style indexed '10' obtained from
93cdf0e10cSrcweir     *  StyleFamily indexed '0' from text document using
94cdf0e10cSrcweir     *  <code>XIndexAccess</code> interface.</li>
95cdf0e10cSrcweir     * </ul>
96cdf0e10cSrcweir     */
createTestEnvironment(TestParameters tParam, PrintWriter log)97cdf0e10cSrcweir     protected TestEnvironment createTestEnvironment(TestParameters tParam, PrintWriter log) {
98cdf0e10cSrcweir 
99cdf0e10cSrcweir         TestEnvironment tEnv = null;
100cdf0e10cSrcweir         XNameAccess oSFNA = null;
101cdf0e10cSrcweir         XStyle oStyle = null;
102cdf0e10cSrcweir         XStyle oMyStyle = null;
103cdf0e10cSrcweir 
104cdf0e10cSrcweir         log.println("creating a test environment");
105cdf0e10cSrcweir 
106cdf0e10cSrcweir         try {
107cdf0e10cSrcweir             log.println("getting style");
108cdf0e10cSrcweir             XStyleFamiliesSupplier oSFS = (XStyleFamiliesSupplier)
109cdf0e10cSrcweir                 UnoRuntime.queryInterface(XStyleFamiliesSupplier.class,
110cdf0e10cSrcweir                 xTextDoc);
111cdf0e10cSrcweir             XNameAccess oSF = oSFS.getStyleFamilies();
112cdf0e10cSrcweir             XIndexAccess oSFsIA = (XIndexAccess)
113cdf0e10cSrcweir                 UnoRuntime.queryInterface(XIndexAccess.class, oSF);
114cdf0e10cSrcweir             oSFNA = (XNameAccess) UnoRuntime.queryInterface(
115cdf0e10cSrcweir                             XNameAccess.class,oSFsIA.getByIndex(0));
116cdf0e10cSrcweir             XIndexAccess oSFIA = (XIndexAccess)
117cdf0e10cSrcweir                 UnoRuntime.queryInterface(XIndexAccess.class, oSFNA);
118cdf0e10cSrcweir             oStyle = (XStyle) UnoRuntime.queryInterface(
119cdf0e10cSrcweir                             XStyle.class,oSFIA.getByIndex(0));
120cdf0e10cSrcweir         } catch ( com.sun.star.lang.WrappedTargetException e ) {
121cdf0e10cSrcweir             log.println("Error: exception occured.");
122cdf0e10cSrcweir             e.printStackTrace(log);
123cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
124cdf0e10cSrcweir         } catch ( com.sun.star.lang.IndexOutOfBoundsException e ) {
125cdf0e10cSrcweir             log.println("Error: exception occured.");
126cdf0e10cSrcweir             e.printStackTrace(log);
127cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
128cdf0e10cSrcweir         }
129cdf0e10cSrcweir 
130cdf0e10cSrcweir         try {
131cdf0e10cSrcweir             log.print("Creating a user-defined style... ");
132cdf0e10cSrcweir             XMultiServiceFactory oMSF = (XMultiServiceFactory)
133cdf0e10cSrcweir                 UnoRuntime.queryInterface(XMultiServiceFactory.class, xTextDoc);
134cdf0e10cSrcweir             XInterface oInt = (XInterface)
135cdf0e10cSrcweir                 oMSF.createInstance("com.sun.star.style.CharacterStyle");
136cdf0e10cSrcweir             oMyStyle = (XStyle) UnoRuntime.queryInterface(XStyle.class, oInt);
137cdf0e10cSrcweir         } catch ( com.sun.star.uno.Exception e ) {
138cdf0e10cSrcweir             log.println("Error: exception occured.");
139cdf0e10cSrcweir             e.printStackTrace(log);
140cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
141cdf0e10cSrcweir         }
142cdf0e10cSrcweir 
143cdf0e10cSrcweir 
144cdf0e10cSrcweir         if (oMyStyle == null)
145cdf0e10cSrcweir             log.println("FAILED");
146cdf0e10cSrcweir         else
147cdf0e10cSrcweir             log.println("OK");
148cdf0e10cSrcweir             XNameContainer oSFNC = (XNameContainer)
149cdf0e10cSrcweir             UnoRuntime.queryInterface(XNameContainer.class, oSFNA);
150cdf0e10cSrcweir 
151cdf0e10cSrcweir         try {
152cdf0e10cSrcweir             if ( oSFNC.hasByName("My Style") )
153cdf0e10cSrcweir                 oSFNC.removeByName("My Style");
154cdf0e10cSrcweir             oSFNC.insertByName("My Style", oMyStyle);
155cdf0e10cSrcweir         } catch ( com.sun.star.lang.WrappedTargetException e ) {
156cdf0e10cSrcweir             e.printStackTrace(log);
157cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
158cdf0e10cSrcweir         } catch     ( com.sun.star.lang.IllegalArgumentException e ) {
159cdf0e10cSrcweir             e.printStackTrace(log);
160cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
161cdf0e10cSrcweir         } catch ( com.sun.star.container.NoSuchElementException e ) {
162cdf0e10cSrcweir             e.printStackTrace(log);
163cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
164cdf0e10cSrcweir         } catch ( com.sun.star.container.ElementExistException e ) {
165cdf0e10cSrcweir             e.printStackTrace(log);
166cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
167cdf0e10cSrcweir         }
168cdf0e10cSrcweir 
169cdf0e10cSrcweir         XText oText = xTextDoc.getText();
170cdf0e10cSrcweir         XTextCursor oCursor = oText.createTextCursor();
171cdf0e10cSrcweir         XPropertySet xProp = (XPropertySet)
172cdf0e10cSrcweir             UnoRuntime.queryInterface(XPropertySet.class, oCursor);
173cdf0e10cSrcweir 
174cdf0e10cSrcweir         try {
175cdf0e10cSrcweir             xProp.setPropertyValue("CharStyleName", oMyStyle.getName());
176cdf0e10cSrcweir         } catch ( com.sun.star.lang.WrappedTargetException e ) {
177cdf0e10cSrcweir             e.printStackTrace( log );
178cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
179cdf0e10cSrcweir         } catch ( com.sun.star.lang.IllegalArgumentException e ) {
180cdf0e10cSrcweir             e.printStackTrace( log );
181cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
182cdf0e10cSrcweir         } catch ( com.sun.star.beans.PropertyVetoException e ) {
183cdf0e10cSrcweir             e.printStackTrace( log );
184cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
185cdf0e10cSrcweir         } catch ( com.sun.star.beans.UnknownPropertyException e ) {
186cdf0e10cSrcweir             e.printStackTrace( log );
187cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
188cdf0e10cSrcweir         }
189cdf0e10cSrcweir 
190cdf0e10cSrcweir         log.println("creating a new environment for object");
191cdf0e10cSrcweir         tEnv = new TestEnvironment(oMyStyle);
192cdf0e10cSrcweir         tEnv.addObjRelation("PoolStyle", oStyle);
193cdf0e10cSrcweir 
194cdf0e10cSrcweir         XPropertySet xStyleProp = (XPropertySet)
195cdf0e10cSrcweir             UnoRuntime.queryInterface(XPropertySet.class, oMyStyle);
196cdf0e10cSrcweir 
197cdf0e10cSrcweir         short exclude = PropertyAttribute.MAYBEVOID + PropertyAttribute.READONLY;
198cdf0e10cSrcweir         tEnv.addObjRelation("PropertyNames",utils.getFilteredPropertyNames(xStyleProp, (short)0, exclude));
199cdf0e10cSrcweir 
200cdf0e10cSrcweir         return tEnv;
201cdf0e10cSrcweir     }
202cdf0e10cSrcweir 
203cdf0e10cSrcweir }
204