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