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
10ef39d40dSAndrew Rist  *
11ef39d40dSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12ef39d40dSAndrew Rist  *
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.
19ef39d40dSAndrew Rist  *
20ef39d40dSAndrew Rist  *************************************************************/
21ef39d40dSAndrew Rist 
22ef39d40dSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir package mod._stm;
25cdf0e10cSrcweir 
26cdf0e10cSrcweir import java.io.PrintWriter;
27cdf0e10cSrcweir import java.util.Vector;
28cdf0e10cSrcweir 
29cdf0e10cSrcweir import lib.StatusException;
30cdf0e10cSrcweir import lib.TestCase;
31cdf0e10cSrcweir import lib.TestEnvironment;
32cdf0e10cSrcweir import lib.TestParameters;
33cdf0e10cSrcweir 
34cdf0e10cSrcweir import com.sun.star.io.XActiveDataSink;
35cdf0e10cSrcweir import com.sun.star.io.XActiveDataSource;
36cdf0e10cSrcweir import com.sun.star.io.XDataOutputStream;
37cdf0e10cSrcweir import com.sun.star.io.XInputStream;
38cdf0e10cSrcweir import com.sun.star.io.XOutputStream;
39cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory;
40cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
41cdf0e10cSrcweir import com.sun.star.uno.XInterface;
42cdf0e10cSrcweir 
43cdf0e10cSrcweir /**
44cdf0e10cSrcweir * Test for object which is represented by service
45cdf0e10cSrcweir * <code>com.sun.star.io.DataInputStream</code>.
46cdf0e10cSrcweir * <ul>
47cdf0e10cSrcweir *  <li> <code>com::sun::star::io::XInputStream</code></li>
48cdf0e10cSrcweir *  <li> <code>com::sun::star::io::XDataInputStream</code></li>
49cdf0e10cSrcweir *  <li> <code>com::sun::star::io::XConnectable</code></li>
50cdf0e10cSrcweir *  <li> <code>com::sun::star::io::XActiveDataSink</code></li>
51cdf0e10cSrcweir * </ul>
52cdf0e10cSrcweir * @see com.sun.star.io.DataInputStream
53cdf0e10cSrcweir * @see com.sun.star.io.XInputStream
54cdf0e10cSrcweir * @see com.sun.star.io.XDataInputStream
55cdf0e10cSrcweir * @see com.sun.star.io.XConnectable
56cdf0e10cSrcweir * @see com.sun.star.io.XActiveDataSink
57cdf0e10cSrcweir * @see ifc.io._XInputStream
58cdf0e10cSrcweir * @see ifc.io._XDataInputStream
59cdf0e10cSrcweir * @see ifc.io._XConnectable
60cdf0e10cSrcweir * @see ifc.io._XActiveDataSink
61cdf0e10cSrcweir */
62cdf0e10cSrcweir public class DataInputStream extends TestCase {
63cdf0e10cSrcweir 
64cdf0e10cSrcweir     /**
65cdf0e10cSrcweir     * Creates a Testenvironment for the interfaces to be tested.
66cdf0e10cSrcweir     * Creates <code>com.sun.star.io.DataInputStream</code> object,
67cdf0e10cSrcweir     * connects it to <code>com.sun.star.io.DataOutputStream</code>
68cdf0e10cSrcweir     * through <code>com.sun.star.io.Pipe</code>. All of possible data
69cdf0e10cSrcweir     * types are written into <code>DataOutputStream</code>.
70cdf0e10cSrcweir     * Object relations created :
71cdf0e10cSrcweir     * <ul>
72cdf0e10cSrcweir     *  <li> <code>'StreamData'</code> for
73cdf0e10cSrcweir     *      {@link ifc.io._XDataInputStream}(the data that should be written into
74cdf0e10cSrcweir     *      the stream) </li>
75cdf0e10cSrcweir     *  <li> <code>'ByteData'</code> for
76cdf0e10cSrcweir     *      {@link ifc.io._XInputStream}(the data that should be written into
77cdf0e10cSrcweir     *      the stream) </li>
78cdf0e10cSrcweir     *  <li> <code>'StreamWriter'</code> for
79cdf0e10cSrcweir     *      {@link ifc.io._XDataInputStream}
80cdf0e10cSrcweir     *      {@link ifc.io._XInputStream}(a stream to write data to) </li>
81cdf0e10cSrcweir     *  <li> <code>'Connectable'</code> for
82cdf0e10cSrcweir     *      {@link ifc.io._XConnectable}(another object that can be connected) </li>
83cdf0e10cSrcweir     *  <li> <code>'InputStream'</code> for
84cdf0e10cSrcweir     *      {@link ifc.io._XActiveDataSink}(an input stream to set and get) </li>
85cdf0e10cSrcweir     * </ul>
86cdf0e10cSrcweir     */
createTestEnvironment( TestParameters Param, PrintWriter log)87cdf0e10cSrcweir     public TestEnvironment createTestEnvironment(
88cdf0e10cSrcweir         TestParameters Param, PrintWriter log) throws StatusException {
89cdf0e10cSrcweir 
90cdf0e10cSrcweir         Object oInterface = null;
91cdf0e10cSrcweir 
92*170fb961SPedro Giffuni         XMultiServiceFactory xMSF = (XMultiServiceFactory)Param.getMSF();
93cdf0e10cSrcweir         try {
94cdf0e10cSrcweir             oInterface = xMSF.createInstance("com.sun.star.io.DataInputStream");
95cdf0e10cSrcweir         } catch(com.sun.star.uno.Exception e) {
96cdf0e10cSrcweir             e.printStackTrace(log);
97cdf0e10cSrcweir             throw new StatusException("Couldn't create instance", e);
98cdf0e10cSrcweir         }
99cdf0e10cSrcweir 
100cdf0e10cSrcweir         XInterface oObj = (XInterface) oInterface;
101cdf0e10cSrcweir 
102cdf0e10cSrcweir         // creating and connecting DataOutputStream to the
103cdf0e10cSrcweir         // DataInputStream created through the Pipe
104cdf0e10cSrcweir         XActiveDataSink xDataSink = (XActiveDataSink)
105cdf0e10cSrcweir             UnoRuntime.queryInterface(XActiveDataSink.class, oObj);
106cdf0e10cSrcweir 
107cdf0e10cSrcweir         XInterface oPipe = null;
108cdf0e10cSrcweir         try {
109cdf0e10cSrcweir             oPipe = (XInterface)
110cdf0e10cSrcweir                 xMSF.createInstance("com.sun.star.io.Pipe");
111cdf0e10cSrcweir         } catch(com.sun.star.uno.Exception e) {
112cdf0e10cSrcweir             e.printStackTrace(log);
113cdf0e10cSrcweir             throw new StatusException("Couldn't create instance", e);
114cdf0e10cSrcweir         }
115cdf0e10cSrcweir 
116cdf0e10cSrcweir         XInputStream xPipeInput = (XInputStream)
117cdf0e10cSrcweir             UnoRuntime.queryInterface(XInputStream.class, oPipe);
118cdf0e10cSrcweir         XOutputStream xPipeOutput = (XOutputStream)
119cdf0e10cSrcweir             UnoRuntime.queryInterface(XOutputStream.class, oPipe);
120cdf0e10cSrcweir 
121cdf0e10cSrcweir         XInterface oDataOutput = null;
122cdf0e10cSrcweir         try {
123cdf0e10cSrcweir             oDataOutput = (XInterface)
124cdf0e10cSrcweir                 xMSF.createInstance("com.sun.star.io.DataOutputStream");
125cdf0e10cSrcweir         } catch(com.sun.star.uno.Exception e) {
126cdf0e10cSrcweir             e.printStackTrace(log);
127cdf0e10cSrcweir             throw new StatusException("Couldn't create instance", e);
128cdf0e10cSrcweir         }
129cdf0e10cSrcweir 
130cdf0e10cSrcweir         XDataOutputStream xDataOutput = (XDataOutputStream)
131cdf0e10cSrcweir             UnoRuntime.queryInterface(XDataOutputStream.class, oDataOutput) ;
132cdf0e10cSrcweir         XActiveDataSource xDataSource = (XActiveDataSource)
133cdf0e10cSrcweir             UnoRuntime.queryInterface(XActiveDataSource.class, oDataOutput) ;
134cdf0e10cSrcweir 
135cdf0e10cSrcweir         xDataSource.setOutputStream(xPipeOutput) ;
136cdf0e10cSrcweir         xDataSink.setInputStream(xPipeInput) ;
137cdf0e10cSrcweir 
138cdf0e10cSrcweir         // all data types for writing to an XDataInputStream
139cdf0e10cSrcweir         Vector data = new Vector() ;
140cdf0e10cSrcweir         data.add(new Boolean(true)) ;
141cdf0e10cSrcweir         data.add(new Byte((byte)123)) ;
142cdf0e10cSrcweir         data.add(new Character((char)1234)) ;
143cdf0e10cSrcweir         data.add(new Short((short)1234)) ;
144cdf0e10cSrcweir         data.add(new Integer(123456)) ;
145cdf0e10cSrcweir         data.add(new Float(1.234)) ;
146cdf0e10cSrcweir         data.add(new Double(1.23456)) ;
147cdf0e10cSrcweir         data.add("DataInputStream") ;
148cdf0e10cSrcweir         // information for writing to the pipe
149cdf0e10cSrcweir         byte[] byteData = new byte[] {
150cdf0e10cSrcweir             1, 2, 3, 4, 5, 6, 7, 8 } ;
151cdf0e10cSrcweir 
152cdf0e10cSrcweir         // createing a connectable object for XConnectable interface
153cdf0e10cSrcweir         XInterface xConnect = null;
154cdf0e10cSrcweir         try {
155cdf0e10cSrcweir             xConnect = (XInterface)xMSF.createInstance(
156cdf0e10cSrcweir                                     "com.sun.star.io.DataInputStream") ;
157cdf0e10cSrcweir         } catch (Exception e) {
158cdf0e10cSrcweir             log.println("Can't create DataInputStream");
159cdf0e10cSrcweir             e.printStackTrace(log);
160cdf0e10cSrcweir             throw new StatusException("Can't create DataInputStream", e);
161cdf0e10cSrcweir         }
162cdf0e10cSrcweir 
163cdf0e10cSrcweir         // creating an input stream to set in XActiveDataSink
164cdf0e10cSrcweir         XInterface oDataInput = null;
165cdf0e10cSrcweir         try {
166cdf0e10cSrcweir             oDataInput = (XInterface) xMSF.createInstance(
167cdf0e10cSrcweir                                         "com.sun.star.io.Pipe" );
168cdf0e10cSrcweir         } catch (com.sun.star.uno.Exception e) {
169cdf0e10cSrcweir             log.println("Can't create new in stream") ;
170cdf0e10cSrcweir             e.printStackTrace(log) ;
171cdf0e10cSrcweir             throw new StatusException("Can't create input stream", e) ;
172cdf0e10cSrcweir         }
173cdf0e10cSrcweir 
174cdf0e10cSrcweir 
175cdf0e10cSrcweir         log.println("creating a new environment for object");
176cdf0e10cSrcweir         TestEnvironment tEnv = new TestEnvironment( oObj );
177cdf0e10cSrcweir 
178cdf0e10cSrcweir         // adding sequence of data that must be read
179cdf0e10cSrcweir         // by XDataInputStream interface methods
180cdf0e10cSrcweir         tEnv.addObjRelation("StreamData", data) ;
181cdf0e10cSrcweir         // add a writer
182cdf0e10cSrcweir         tEnv.addObjRelation("StreamWriter", xDataOutput);
183cdf0e10cSrcweir         // add a connectable
184cdf0e10cSrcweir         tEnv.addObjRelation("Connectable", xConnect);
185cdf0e10cSrcweir         // add an inputStream
186cdf0e10cSrcweir         tEnv.addObjRelation("InputStream", oDataInput);
187cdf0e10cSrcweir         tEnv.addObjRelation("ByteData", byteData);
188cdf0e10cSrcweir 
189cdf0e10cSrcweir         return tEnv;
190cdf0e10cSrcweir     } // finish method getTestEnvironment
191cdf0e10cSrcweir 
192cdf0e10cSrcweir }
193cdf0e10cSrcweir 
194