xref: /AOO42X/main/qadevOOo/tests/java/mod/_sfx/StandaloneDocumentInfo.java (revision 8f16a93e53a119c94f83c6f9c22e158409754b14)
1ef39d40dSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3ef39d40dSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4ef39d40dSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5ef39d40dSAndrew Rist  * distributed with this work for additional information
6ef39d40dSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7ef39d40dSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8ef39d40dSAndrew Rist  * "License"); you may not use this file except in compliance
9ef39d40dSAndrew Rist  * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir  *
11ef39d40dSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir  *
13ef39d40dSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14ef39d40dSAndrew Rist  * software distributed under the License is distributed on an
15ef39d40dSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16ef39d40dSAndrew Rist  * KIND, either express or implied.  See the License for the
17ef39d40dSAndrew Rist  * specific language governing permissions and limitations
18ef39d40dSAndrew Rist  * under the License.
19cdf0e10cSrcweir  *
20ef39d40dSAndrew Rist  *************************************************************/
21ef39d40dSAndrew Rist 
22cdf0e10cSrcweir package mod._sfx;
23cdf0e10cSrcweir 
24cdf0e10cSrcweir import java.io.PrintWriter;
25cdf0e10cSrcweir 
26cdf0e10cSrcweir import lib.StatusException;
27cdf0e10cSrcweir import lib.TestCase;
28cdf0e10cSrcweir import lib.TestEnvironment;
29cdf0e10cSrcweir import lib.TestParameters;
30cdf0e10cSrcweir import util.utils;
31cdf0e10cSrcweir 
32cdf0e10cSrcweir import com.sun.star.document.XStandaloneDocumentInfo;
33cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory;
34cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
35cdf0e10cSrcweir import com.sun.star.uno.XInterface;
36cdf0e10cSrcweir 
37cdf0e10cSrcweir /**
38cdf0e10cSrcweir  * Test for object which is represented by service
39cdf0e10cSrcweir  * <code>com.sun.star.document.StandaloneDocumentInfo</code>. <p>
40cdf0e10cSrcweir  * Object implements the following interfaces :
41cdf0e10cSrcweir  * <ul>
42cdf0e10cSrcweir  *  <li> <code>com::sun::star::lang::XComponent</code></li>
43cdf0e10cSrcweir  *  <li> <code>com::sun::star::document::DocumentInfo</code></li>
44cdf0e10cSrcweir  *  <li> <code>com::sun::star::document::XDocumentInfo</code></li>
45cdf0e10cSrcweir  *  <li> <code>com::sun::star::document::XStandaloneDocumentInfo</code></li>
46cdf0e10cSrcweir  *  <li> <code>com::sun::star::beans::XFastPropertySet</code></li>
47cdf0e10cSrcweir  *  <li> <code>com::sun::star::beans::XPropertySet</code></li>
48cdf0e10cSrcweir  * </ul> <p>
49cdf0e10cSrcweir  * The following files used by this test :
50cdf0e10cSrcweir  * <ul>
51cdf0e10cSrcweir  *  <li><b> SfxStandaloneDocInfoObject.sdw </b> : is copied
52cdf0e10cSrcweir  *   to SOffice temporary directory and is used to load and
53cdf0e10cSrcweir  *   save its info. </li>
54cdf0e10cSrcweir  * </ul> <p>
55cdf0e10cSrcweir  * This object test <b> is NOT </b> designed to be run in several
56737d737bSJohn Bampton  * threads concurrently.
57cdf0e10cSrcweir  *
58cdf0e10cSrcweir  * @see com.sun.star.lang.XComponent
59cdf0e10cSrcweir  * @see com.sun.star.document.DocumentInfo
60cdf0e10cSrcweir  * @see com.sun.star.document.XDocumentInfo
61cdf0e10cSrcweir  * @see com.sun.star.document.XStandaloneDocumentInfo
62cdf0e10cSrcweir  * @see com.sun.star.beans.XFastPropertySet
63cdf0e10cSrcweir  * @see com.sun.star.beans.XPropertySet
64cdf0e10cSrcweir  * @see ifc.lang._XComponent
65cdf0e10cSrcweir  * @see ifc.document._DocumentInfo
66cdf0e10cSrcweir  * @see ifc.document._XDocumentInfo
67cdf0e10cSrcweir  * @see ifc.document._XStandaloneDocumentInfo
68cdf0e10cSrcweir  * @see ifc.beans._XFastPropertySet
69cdf0e10cSrcweir  * @see ifc.beans._XPropertySet
70cdf0e10cSrcweir  */
71cdf0e10cSrcweir public class StandaloneDocumentInfo extends TestCase {
72cdf0e10cSrcweir 
73cdf0e10cSrcweir     String destUrl = null ;
74cdf0e10cSrcweir 
75cdf0e10cSrcweir     /**
76*8f16a93eSmseidel      * Copies file 'SfxStandaloneDocInfoObject.sdw' to temporary
77cdf0e10cSrcweir      * location (overwriting the old file if exists).
78cdf0e10cSrcweir      */
initialize( TestParameters tParam, PrintWriter log )79cdf0e10cSrcweir     protected void initialize( TestParameters tParam, PrintWriter log ) {
80cdf0e10cSrcweir         String srcUrl = utils.getFullTestURL("SfxStandaloneDocInfoObject.sdw") ;
81cdf0e10cSrcweir         destUrl = utils.getOfficeTemp((XMultiServiceFactory)tParam.getMSF()) +
82cdf0e10cSrcweir             "SfxStandaloneDocInfoObject.sdw";
83cdf0e10cSrcweir 
84cdf0e10cSrcweir         utils.doOverwriteFile((XMultiServiceFactory)tParam.getMSF(), srcUrl, destUrl) ;
85cdf0e10cSrcweir     }
86cdf0e10cSrcweir 
87cdf0e10cSrcweir     /**
88cdf0e10cSrcweir      * Creating a Testenvironment for the interfaces to be tested.
89cdf0e10cSrcweir      * Creates an instance of the service
90cdf0e10cSrcweir      * <code>com.sun.star.document.StandaloneDocumentInfo</code>.
91cdf0e10cSrcweir      *     Object relations created :
92cdf0e10cSrcweir      * <ul>
93cdf0e10cSrcweir      *  <li> <code>'DOCURL'</code> for
94cdf0e10cSrcweir      *      {@link ifc.document._XStandaloneDocumentInfo} :
95cdf0e10cSrcweir      *      the Writer file URL in temporary location. </li>
96cdf0e10cSrcweir      * </ul>
97cdf0e10cSrcweir      */
createTestEnvironment(TestParameters tParam, PrintWriter log)98cdf0e10cSrcweir     protected TestEnvironment createTestEnvironment
99cdf0e10cSrcweir             (TestParameters tParam, PrintWriter log) {
100cdf0e10cSrcweir         XMultiServiceFactory xMSF = (XMultiServiceFactory)tParam.getMSF();
101cdf0e10cSrcweir         XInterface oObj = null;
102cdf0e10cSrcweir 
103cdf0e10cSrcweir         try {
104cdf0e10cSrcweir             oObj = (XInterface)xMSF.createInstance
105cdf0e10cSrcweir                 ("com.sun.star.document.StandaloneDocumentInfo");
106cdf0e10cSrcweir         } catch (com.sun.star.uno.Exception e) {
107cdf0e10cSrcweir             e.printStackTrace(log);
108cdf0e10cSrcweir             throw new StatusException("Unexpected exception", e);
109cdf0e10cSrcweir         }
110cdf0e10cSrcweir 
111cdf0e10cSrcweir         String Iname = util.utils.getImplName(oObj);
112cdf0e10cSrcweir         log.println("Implementation Name: "+Iname);
113cdf0e10cSrcweir         TestEnvironment tEnv = new TestEnvironment(oObj);
114cdf0e10cSrcweir         XStandaloneDocumentInfo the_info = (XStandaloneDocumentInfo)
115cdf0e10cSrcweir                 UnoRuntime.queryInterface(XStandaloneDocumentInfo.class, oObj);
116cdf0e10cSrcweir         try {
117cdf0e10cSrcweir             the_info.loadFromURL(destUrl);
118cdf0e10cSrcweir         } catch (com.sun.star.io.IOException e) {
119cdf0e10cSrcweir             e.printStackTrace(log);
120cdf0e10cSrcweir             throw new StatusException("Couldn't load document: " + destUrl,e);
121cdf0e10cSrcweir         }
122cdf0e10cSrcweir         tEnv.addObjRelation("DOCURL",destUrl);
123cdf0e10cSrcweir         return tEnv;
124cdf0e10cSrcweir     }
125cdf0e10cSrcweir 
126cdf0e10cSrcweir }    // finish class TestCase
127