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.XPropertySet;
35cdf0e10cSrcweir import com.sun.star.container.XIndexAccess;
36cdf0e10cSrcweir import com.sun.star.container.XNameAccess;
37cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory;
38cdf0e10cSrcweir import com.sun.star.style.XStyle;
39cdf0e10cSrcweir import com.sun.star.style.XStyleFamiliesSupplier;
40cdf0e10cSrcweir import com.sun.star.text.ControlCharacter;
41cdf0e10cSrcweir import com.sun.star.text.XText;
42cdf0e10cSrcweir import com.sun.star.text.XTextColumns;
43cdf0e10cSrcweir import com.sun.star.text.XTextCursor;
44cdf0e10cSrcweir import com.sun.star.text.XTextDocument;
45cdf0e10cSrcweir import com.sun.star.uno.AnyConverter;
46cdf0e10cSrcweir import com.sun.star.uno.Type;
47cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
48cdf0e10cSrcweir import com.sun.star.uno.XInterface;
49cdf0e10cSrcweir 
50cdf0e10cSrcweir /**
51cdf0e10cSrcweir  * Test for object which is represented by service
52cdf0e10cSrcweir  * <code>com.sun.star.text.TextColumns</code>. <p>
53cdf0e10cSrcweir  * Object implements the following interfaces :
54cdf0e10cSrcweir  * <ul>
55cdf0e10cSrcweir  *  <li> <code>com::sun::star::text::XTextColumns</code></li>
56cdf0e10cSrcweir  *  <li> <code>com::sun::star::text::TextColumns</code></li>
57cdf0e10cSrcweir  * </ul> <p>
58cdf0e10cSrcweir  * This object test <b> is NOT </b> designed to be run in several
59cdf0e10cSrcweir  * threads concurently.
60cdf0e10cSrcweir  * @see com.sun.star.text.XTextColumns
61cdf0e10cSrcweir  * @see com.sun.star.text.TextColumns
62cdf0e10cSrcweir  * @see ifc.text._XTextColumns
63cdf0e10cSrcweir  * @see ifc.text._TextColumns
64cdf0e10cSrcweir  */
65cdf0e10cSrcweir public class SwXTextColumns extends TestCase {
66cdf0e10cSrcweir     XTextDocument xTextDoc;
67cdf0e10cSrcweir 
68cdf0e10cSrcweir     /**
69cdf0e10cSrcweir     * Creates text document.
70cdf0e10cSrcweir     */
initialize( TestParameters tParam, PrintWriter log )71cdf0e10cSrcweir     protected void initialize( TestParameters tParam, PrintWriter log ) {
72cdf0e10cSrcweir         SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF() );
73cdf0e10cSrcweir         try {
74cdf0e10cSrcweir             log.println( "creating a textdocument" );
75cdf0e10cSrcweir             xTextDoc = SOF.createTextDoc( null );
76cdf0e10cSrcweir         } catch ( com.sun.star.uno.Exception e ) {
77cdf0e10cSrcweir             e.printStackTrace( log );
78cdf0e10cSrcweir             throw new StatusException( "Couldn't create document", e );
79cdf0e10cSrcweir         }
80cdf0e10cSrcweir     }
81cdf0e10cSrcweir 
82cdf0e10cSrcweir     /**
83cdf0e10cSrcweir     * Disposes text document.
84cdf0e10cSrcweir     */
cleanup( TestParameters tParam, PrintWriter log )85cdf0e10cSrcweir     protected void cleanup( TestParameters tParam, PrintWriter log ) {
86cdf0e10cSrcweir         log.println( "    disposing xTextDoc " );
87cdf0e10cSrcweir         util.DesktopTools.closeDoc(xTextDoc);
88cdf0e10cSrcweir     }
89cdf0e10cSrcweir 
90cdf0e10cSrcweir     /**
91cdf0e10cSrcweir     * Creating a Testenvironment for the interfaces to be tested. After style
92cdf0e10cSrcweir     * families are gotten from text document using
93cdf0e10cSrcweir     * <code>XStyleFamiliesSupplier</code> interface, style family indexed '2'
94cdf0e10cSrcweir     * is obtained using <code>XIndexAccess</code> interface. Then style
95cdf0e10cSrcweir     * named 'Standard' is gotten from previously obtained style family using
96cdf0e10cSrcweir     * <code>XNameAccess</code> interface, and 'TextColumns' property value
97cdf0e10cSrcweir     * of this style is returned as a test component. Finally, several
98cdf0e10cSrcweir     * paragraphs within the text are inserted to a text document.
99cdf0e10cSrcweir     */
createTestEnvironment(TestParameters tParam, PrintWriter log)100cdf0e10cSrcweir     protected TestEnvironment createTestEnvironment(TestParameters tParam, PrintWriter log) {
101cdf0e10cSrcweir         XInterface oObj = null;
102cdf0e10cSrcweir         TestEnvironment tEnv = null;
103cdf0e10cSrcweir         XStyle oStyle = null;
104cdf0e10cSrcweir 
105cdf0e10cSrcweir         log.println( "creating a test environment" );
106cdf0e10cSrcweir         log.println("getting PageStyle");
107cdf0e10cSrcweir         XStyleFamiliesSupplier oSFS = (XStyleFamiliesSupplier)
108cdf0e10cSrcweir             UnoRuntime.queryInterface(XStyleFamiliesSupplier.class, xTextDoc);
109cdf0e10cSrcweir         XNameAccess oSF = oSFS.getStyleFamilies();
110cdf0e10cSrcweir         XIndexAccess oSFIA = (XIndexAccess)
111cdf0e10cSrcweir             UnoRuntime.queryInterface(XIndexAccess.class, oSF);
112cdf0e10cSrcweir 
113cdf0e10cSrcweir         try {
114cdf0e10cSrcweir             XNameAccess oSFNA = (XNameAccess) AnyConverter.toObject(
115cdf0e10cSrcweir                         new Type(XNameAccess.class),oSFIA.getByIndex(2));
116cdf0e10cSrcweir             oStyle = (XStyle) AnyConverter.toObject(
117cdf0e10cSrcweir                     new Type(XStyle.class),oSFNA.getByName("Standard"));
118cdf0e10cSrcweir         } catch ( com.sun.star.lang.WrappedTargetException e ) {
119cdf0e10cSrcweir             log.println("Error, exception occured while getting style.");
120cdf0e10cSrcweir             e.printStackTrace(log);
121cdf0e10cSrcweir         } catch ( com.sun.star.lang.IndexOutOfBoundsException e ) {
122cdf0e10cSrcweir             log.println("Error, exception occured while getting style.");
123cdf0e10cSrcweir             e.printStackTrace(log);
124cdf0e10cSrcweir         } catch ( com.sun.star.container.NoSuchElementException e ) {
125cdf0e10cSrcweir             log.println("Error, exception occured while getting style.");
126cdf0e10cSrcweir             e.printStackTrace(log);
127cdf0e10cSrcweir         } catch ( com.sun.star.lang.IllegalArgumentException e ) {
128cdf0e10cSrcweir             log.println("Error, exception occured while getting style.");
129cdf0e10cSrcweir             e.printStackTrace(log);
130cdf0e10cSrcweir         }
131cdf0e10cSrcweir 
132cdf0e10cSrcweir         try {
133cdf0e10cSrcweir             log.println("Getting property ('TextColumns') value of style "
134cdf0e10cSrcweir                 + oStyle.getName());
135cdf0e10cSrcweir             XPropertySet xProps = (XPropertySet)
136cdf0e10cSrcweir                 UnoRuntime.queryInterface(XPropertySet.class,oStyle);
137cdf0e10cSrcweir             oObj = (XTextColumns) AnyConverter.toObject(
138cdf0e10cSrcweir                 new Type(XTextColumns.class),xProps.getPropertyValue("TextColumns"));
139cdf0e10cSrcweir         } catch ( com.sun.star.lang.WrappedTargetException e ) {
140cdf0e10cSrcweir             log.println("Exception occured while getting style property");
141cdf0e10cSrcweir             e.printStackTrace(log);
142cdf0e10cSrcweir         } catch ( com.sun.star.beans.UnknownPropertyException e ) {
143cdf0e10cSrcweir             log.println("Exception occured while getting style property");
144cdf0e10cSrcweir             e.printStackTrace(log);
145cdf0e10cSrcweir         } catch ( com.sun.star.lang.IllegalArgumentException e ) {
146cdf0e10cSrcweir             log.println("Exception occured while getting style property");
147cdf0e10cSrcweir             e.printStackTrace(log);
148cdf0e10cSrcweir         }
149cdf0e10cSrcweir 
150cdf0e10cSrcweir         XText oText = xTextDoc.getText();
151cdf0e10cSrcweir         XTextCursor oCursor = oText.createTextCursor();
152cdf0e10cSrcweir 
153cdf0e10cSrcweir         log.println( "inserting some text to text document..." );
154cdf0e10cSrcweir         try {
155cdf0e10cSrcweir             for (int i =0; i < 5; i++){
156cdf0e10cSrcweir                 oText.insertString( oCursor,"Paragraph Number: " + i, false);
157cdf0e10cSrcweir                 oText.insertString( oCursor,
158cdf0e10cSrcweir                     "The quick brown fox jumps over the lazy Dog: SwXParagraph",
159cdf0e10cSrcweir                     false);
160cdf0e10cSrcweir                 oText.insertControlCharacter( oCursor,
161cdf0e10cSrcweir                     ControlCharacter.PARAGRAPH_BREAK, false );
162cdf0e10cSrcweir                 oText.insertString( oCursor,
163cdf0e10cSrcweir                     "THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG: SwXParagraph",
164cdf0e10cSrcweir                     false);
165cdf0e10cSrcweir                 oText.insertControlCharacter( oCursor,
166cdf0e10cSrcweir                     ControlCharacter.PARAGRAPH_BREAK, false );
167cdf0e10cSrcweir                 oText.insertControlCharacter( oCursor,
168cdf0e10cSrcweir                     ControlCharacter.LINE_BREAK, false );
169cdf0e10cSrcweir             }
170cdf0e10cSrcweir         } catch ( com.sun.star.lang.IllegalArgumentException e ){
171cdf0e10cSrcweir             log.println("Exception occured while inserting Text");
172cdf0e10cSrcweir             e.printStackTrace(log);
173cdf0e10cSrcweir         }
174cdf0e10cSrcweir 
175cdf0e10cSrcweir         log.println("creating a new environment for object");
176cdf0e10cSrcweir         tEnv = new TestEnvironment(oObj);
177cdf0e10cSrcweir         return tEnv;
178cdf0e10cSrcweir     } // finish method getTestEnvironment
179cdf0e10cSrcweir 
180cdf0e10cSrcweir }    // finish class SwXTextColumns
181