xref: /AOO41X/main/odk/examples/java/Storage/Test05.java (revision ae15d43ae9bc0d57b88b38bfa728519a0f7db121)
1*ae15d43aSAndrew Rist /**************************************************************
2*ae15d43aSAndrew Rist  *
3*ae15d43aSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*ae15d43aSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*ae15d43aSAndrew Rist  * distributed with this work for additional information
6*ae15d43aSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*ae15d43aSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*ae15d43aSAndrew Rist  * "License"); you may not use this file except in compliance
9*ae15d43aSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*ae15d43aSAndrew Rist  *
11*ae15d43aSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*ae15d43aSAndrew Rist  *
13*ae15d43aSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*ae15d43aSAndrew Rist  * software distributed under the License is distributed on an
15*ae15d43aSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*ae15d43aSAndrew Rist  * KIND, either express or implied.  See the License for the
17*ae15d43aSAndrew Rist  * specific language governing permissions and limitations
18*ae15d43aSAndrew Rist  * under the License.
19*ae15d43aSAndrew Rist  *
20*ae15d43aSAndrew Rist  *************************************************************/
21*ae15d43aSAndrew Rist 
22cdf0e10cSrcweir package storagetesting;
23cdf0e10cSrcweir 
24cdf0e10cSrcweir import com.sun.star.uno.XInterface;
25cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory;
26cdf0e10cSrcweir import com.sun.star.lang.XSingleServiceFactory;
27cdf0e10cSrcweir 
28cdf0e10cSrcweir import com.sun.star.bridge.XUnoUrlResolver;
29cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
30cdf0e10cSrcweir import com.sun.star.uno.XInterface;
31cdf0e10cSrcweir import com.sun.star.io.XStream;
32cdf0e10cSrcweir 
33cdf0e10cSrcweir import com.sun.star.embed.*;
34cdf0e10cSrcweir 
35cdf0e10cSrcweir import storagetesting.TestHelper;
36cdf0e10cSrcweir import storagetesting.StorageTest;
37cdf0e10cSrcweir 
38cdf0e10cSrcweir public class Test05 implements StorageTest {
39cdf0e10cSrcweir 
40cdf0e10cSrcweir 	XMultiServiceFactory m_xMSF;
41cdf0e10cSrcweir 	XSingleServiceFactory m_xStorageFactory;
42cdf0e10cSrcweir 	TestHelper m_aTestHelper;
43cdf0e10cSrcweir 
Test05( XMultiServiceFactory xMSF, XSingleServiceFactory xStorageFactory )44cdf0e10cSrcweir 	public Test05( XMultiServiceFactory xMSF, XSingleServiceFactory xStorageFactory )
45cdf0e10cSrcweir 	{
46cdf0e10cSrcweir 		m_xMSF = xMSF;
47cdf0e10cSrcweir 		m_xStorageFactory = xStorageFactory;
48cdf0e10cSrcweir 		m_aTestHelper = new TestHelper( "Test05: " );
49cdf0e10cSrcweir 	}
50cdf0e10cSrcweir 
test()51cdf0e10cSrcweir     public boolean test()
52cdf0e10cSrcweir 	{
53cdf0e10cSrcweir 		try
54cdf0e10cSrcweir 		{
55cdf0e10cSrcweir 			String sTempFileURL = m_aTestHelper.CreateTempFile( m_xMSF );
56cdf0e10cSrcweir 			if ( sTempFileURL == null || sTempFileURL == "" )
57cdf0e10cSrcweir 			{
58cdf0e10cSrcweir 				m_aTestHelper.Error( "No valid temporary file was created!" );
59cdf0e10cSrcweir 				return false;
60cdf0e10cSrcweir 			}
61cdf0e10cSrcweir 
62cdf0e10cSrcweir 			// create temporary storage based on a previously created temporary file
63cdf0e10cSrcweir 			Object pArgs[] = new Object[2];
64cdf0e10cSrcweir 			pArgs[0] = (Object) sTempFileURL;
65cdf0e10cSrcweir 			pArgs[1] = new Integer( ElementModes.ELEMENT_WRITE );
66cdf0e10cSrcweir 
67cdf0e10cSrcweir 			Object oTempFileStorage = m_xStorageFactory.createInstanceWithArguments( pArgs );
68cdf0e10cSrcweir 			XStorage xTempFileStorage = (XStorage)UnoRuntime.queryInterface( XStorage.class, oTempFileStorage );
69cdf0e10cSrcweir 			if ( xTempFileStorage == null )
70cdf0e10cSrcweir 			{
71cdf0e10cSrcweir 				m_aTestHelper.Error( "Can't create storage based on temporary file!" );
72cdf0e10cSrcweir 				return false;
73cdf0e10cSrcweir 			}
74cdf0e10cSrcweir 
75cdf0e10cSrcweir 			// open a new substorage
76cdf0e10cSrcweir 			XStorage xTempSubStorage = m_aTestHelper.openSubStorage( xTempFileStorage,
77cdf0e10cSrcweir 																		"SubStorage1",
78cdf0e10cSrcweir 																		ElementModes.ELEMENT_WRITE );
79cdf0e10cSrcweir 			if ( xTempSubStorage == null )
80cdf0e10cSrcweir 			{
81cdf0e10cSrcweir 				m_aTestHelper.Error( "Can't create substorage!" );
82cdf0e10cSrcweir 				return false;
83cdf0e10cSrcweir 			}
84cdf0e10cSrcweir 
85cdf0e10cSrcweir 			// open a new substorage
86cdf0e10cSrcweir 			XStorage xSubSubStorage = m_aTestHelper.openSubStorage( xTempSubStorage,
87cdf0e10cSrcweir 																		"SubSubStorage1",
88cdf0e10cSrcweir 																		ElementModes.ELEMENT_WRITE );
89cdf0e10cSrcweir 			if ( xSubSubStorage == null )
90cdf0e10cSrcweir 			{
91cdf0e10cSrcweir 				m_aTestHelper.Error( "Can't create substorage!" );
92cdf0e10cSrcweir 				return false;
93cdf0e10cSrcweir 			}
94cdf0e10cSrcweir 
95cdf0e10cSrcweir 
96cdf0e10cSrcweir 			byte pBytes1[] = { 1, 1, 1, 1, 1 };
97cdf0e10cSrcweir 
98cdf0e10cSrcweir 			// open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes
99cdf0e10cSrcweir 			if ( !m_aTestHelper.WriteBytesToSubstream( xSubSubStorage, "SubStream1", "MediaType1", true, pBytes1 ) )
100cdf0e10cSrcweir 				return false;
101cdf0e10cSrcweir 
102cdf0e10cSrcweir 			byte pBytes2[] = { 2, 2, 2, 2, 2 };
103cdf0e10cSrcweir 
104cdf0e10cSrcweir 			// open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes
105cdf0e10cSrcweir 			if ( !m_aTestHelper.WriteBytesToSubstream( xSubSubStorage, "SubStream2", "MediaType2", false, pBytes2 ) )
106cdf0e10cSrcweir 				return false;
107cdf0e10cSrcweir 
108cdf0e10cSrcweir 			// set "MediaType" property for storages and check that "IsRoot" and "OpenMode" properties are set correctly
109cdf0e10cSrcweir 			if ( !m_aTestHelper.setStorageTypeAndCheckProps( xTempFileStorage,
110cdf0e10cSrcweir 															"MediaType3",
111cdf0e10cSrcweir 															true,
112cdf0e10cSrcweir 															ElementModes.ELEMENT_WRITE ) )
113cdf0e10cSrcweir 				return false;
114cdf0e10cSrcweir 
115cdf0e10cSrcweir 			// set "MediaType" property for storages and check that "IsRoot" and "OpenMode" properties are set correctly
116cdf0e10cSrcweir 			if ( !m_aTestHelper.setStorageTypeAndCheckProps( xTempSubStorage,
117cdf0e10cSrcweir 															"MediaType4",
118cdf0e10cSrcweir 															false,
119cdf0e10cSrcweir 															ElementModes.ELEMENT_WRITE ) )
120cdf0e10cSrcweir 				return false;
121cdf0e10cSrcweir 
122cdf0e10cSrcweir 			// set "MediaType" property for storages and check that "IsRoot" and "OpenMode" properties are set correctly
123cdf0e10cSrcweir 			if ( !m_aTestHelper.setStorageTypeAndCheckProps( xSubSubStorage,
124cdf0e10cSrcweir 															"MediaType5",
125cdf0e10cSrcweir 															false,
126cdf0e10cSrcweir 															ElementModes.ELEMENT_WRITE ) )
127cdf0e10cSrcweir 				return false;
128cdf0e10cSrcweir 
129cdf0e10cSrcweir 
130cdf0e10cSrcweir 			// commit all the storages
131cdf0e10cSrcweir 			if ( !m_aTestHelper.commitStorage( xSubSubStorage ) )
132cdf0e10cSrcweir 				return false;
133cdf0e10cSrcweir 
134cdf0e10cSrcweir 			if ( !m_aTestHelper.commitStorage( xTempSubStorage ) )
135cdf0e10cSrcweir 				return false;
136cdf0e10cSrcweir 
137cdf0e10cSrcweir 			if ( !m_aTestHelper.commitStorage( xTempFileStorage ) )
138cdf0e10cSrcweir 				return false;
139cdf0e10cSrcweir 
140cdf0e10cSrcweir 			// try to open an opened substorage, open call must fail
141cdf0e10cSrcweir 			if ( !m_aTestHelper.cantOpenStorage( xTempFileStorage, "SubStorage1" ) )
142cdf0e10cSrcweir 				return false;
143cdf0e10cSrcweir 
144cdf0e10cSrcweir 
145cdf0e10cSrcweir 			// reopen created streams
146cdf0e10cSrcweir 			XStream xSubStream1 = m_aTestHelper.OpenStream( xSubSubStorage,
147cdf0e10cSrcweir 															"SubStream1",
148cdf0e10cSrcweir 															ElementModes.ELEMENT_READWRITE | ElementModes.ELEMENT_NOCREATE );
149cdf0e10cSrcweir 			XStream xSubStream2 = m_aTestHelper.OpenStream( xSubSubStorage,
150cdf0e10cSrcweir 															"SubStream2",
151cdf0e10cSrcweir 															ElementModes.ELEMENT_READ | ElementModes.ELEMENT_NOCREATE );
152cdf0e10cSrcweir 			if ( xSubStream1 == null || xSubStream2 == null )
153cdf0e10cSrcweir 				return false;
154cdf0e10cSrcweir 
155cdf0e10cSrcweir 			// it should be possible to have more then one copy of stream for reading
156cdf0e10cSrcweir 			XStream xSubStream2clone = m_aTestHelper.OpenStream( xSubSubStorage,
157cdf0e10cSrcweir 																"SubStream2",
158cdf0e10cSrcweir 																ElementModes.ELEMENT_READ | ElementModes.ELEMENT_NOCREATE );
159cdf0e10cSrcweir 			if ( xSubStream2 == null )
160cdf0e10cSrcweir 				return false;
161cdf0e10cSrcweir 
162cdf0e10cSrcweir 
163cdf0e10cSrcweir 			// so now the first stream can not be open neither for reading nor for writing
164cdf0e10cSrcweir 			if ( !m_aTestHelper.cantOpenStream( xSubSubStorage, "SubStream1", ElementModes.ELEMENT_WRITE )
165cdf0e10cSrcweir 			  || !m_aTestHelper.cantOpenStream( xSubSubStorage, "SubStream1", ElementModes.ELEMENT_READ ) )
166cdf0e10cSrcweir 				return false;
167cdf0e10cSrcweir 
168cdf0e10cSrcweir 			// the second stream can not be open for writing
169cdf0e10cSrcweir 			if ( !m_aTestHelper.cantOpenStream( xSubSubStorage, "SubStream2", ElementModes.ELEMENT_WRITE ) )
170cdf0e10cSrcweir 				return false;
171cdf0e10cSrcweir 
172cdf0e10cSrcweir 
173cdf0e10cSrcweir 			// dispose xTestSubStorage, all the subtree must be disposed
174cdf0e10cSrcweir 			if ( !m_aTestHelper.disposeStorage( xTempSubStorage ) )
175cdf0e10cSrcweir 				return false;
176cdf0e10cSrcweir 
177cdf0e10cSrcweir 			// check that subtree was disposed correctly
178cdf0e10cSrcweir 			try
179cdf0e10cSrcweir 			{
180cdf0e10cSrcweir 				xSubSubStorage.isStreamElement( "SubStream1" );
181cdf0e10cSrcweir 				m_aTestHelper.Error( "Substorage was not disposed!" );
182cdf0e10cSrcweir 				return false;
183cdf0e10cSrcweir 			}
184cdf0e10cSrcweir 			catch ( com.sun.star.lang.DisposedException de )
185cdf0e10cSrcweir 			{}
186cdf0e10cSrcweir 			catch ( Exception e )
187cdf0e10cSrcweir 			{
188cdf0e10cSrcweir 				m_aTestHelper.Error( "Wrong exception is thrown by disposed storage: " + e );
189cdf0e10cSrcweir 				return false;
190cdf0e10cSrcweir 			}
191cdf0e10cSrcweir 
192cdf0e10cSrcweir 			try
193cdf0e10cSrcweir 			{
194cdf0e10cSrcweir 				xSubStream1.getInputStream();
195cdf0e10cSrcweir 				m_aTestHelper.Error( "Writeable substream was not disposed!" );
196cdf0e10cSrcweir 				return false;
197cdf0e10cSrcweir 			}
198cdf0e10cSrcweir 			catch ( com.sun.star.lang.DisposedException de )
199cdf0e10cSrcweir 			{}
200cdf0e10cSrcweir 			catch ( Exception e )
201cdf0e10cSrcweir 			{
202cdf0e10cSrcweir 				m_aTestHelper.Error( "Wrong exception is thrown by disposed stream: " + e );
203cdf0e10cSrcweir 				return false;
204cdf0e10cSrcweir 			}
205cdf0e10cSrcweir 
206cdf0e10cSrcweir 			try
207cdf0e10cSrcweir 			{
208cdf0e10cSrcweir 				xSubStream2.getInputStream();
209cdf0e10cSrcweir 				m_aTestHelper.Error( "Readonly substream was not disposed!" );
210cdf0e10cSrcweir 				return false;
211cdf0e10cSrcweir 			}
212cdf0e10cSrcweir 			catch ( com.sun.star.lang.DisposedException de )
213cdf0e10cSrcweir 			{}
214cdf0e10cSrcweir 			catch ( Exception e )
215cdf0e10cSrcweir 			{
216cdf0e10cSrcweir 				m_aTestHelper.Error( "Wrong exception is thrown by disposed stream: " + e );
217cdf0e10cSrcweir 				return false;
218cdf0e10cSrcweir 			}
219cdf0e10cSrcweir 
220cdf0e10cSrcweir 
221cdf0e10cSrcweir 			// dispose root storage
222cdf0e10cSrcweir 			if ( !m_aTestHelper.disposeStorage( xTempFileStorage ) )
223cdf0e10cSrcweir 				return false;
224cdf0e10cSrcweir 
225cdf0e10cSrcweir 
226cdf0e10cSrcweir 			// ================================================
227cdf0e10cSrcweir 			// now check all the written and copied information
228cdf0e10cSrcweir 			// ================================================
229cdf0e10cSrcweir 
230cdf0e10cSrcweir 			pArgs[1] = new Integer( ElementModes.ELEMENT_READ );
231cdf0e10cSrcweir 			Object oResultStorage = m_xStorageFactory.createInstanceWithArguments( pArgs );
232cdf0e10cSrcweir 			XStorage xResultStorage = (XStorage) UnoRuntime.queryInterface( XStorage.class, oResultStorage );
233cdf0e10cSrcweir 			if ( xResultStorage == null )
234cdf0e10cSrcweir 			{
235cdf0e10cSrcweir 				m_aTestHelper.Error( "Can't reopen storage based on temporary file!" );
236cdf0e10cSrcweir 				return false;
237cdf0e10cSrcweir 			}
238cdf0e10cSrcweir 
239cdf0e10cSrcweir 			if ( !m_aTestHelper.checkStorageProperties( xResultStorage, "MediaType3", true, ElementModes.ELEMENT_READ ) )
240cdf0e10cSrcweir 				return false;
241cdf0e10cSrcweir 
242cdf0e10cSrcweir 			// open existing substorage
243cdf0e10cSrcweir 			XStorage xResSubStorage = m_aTestHelper.openSubStorage( xResultStorage,
244cdf0e10cSrcweir 																	"SubStorage1",
245cdf0e10cSrcweir 																	ElementModes.ELEMENT_READ );
246cdf0e10cSrcweir 			if ( xResSubStorage == null )
247cdf0e10cSrcweir 			{
248cdf0e10cSrcweir 				m_aTestHelper.Error( "Can't open existing substorage 'SubSubStorage'!" );
249cdf0e10cSrcweir 				return false;
250cdf0e10cSrcweir 			}
251cdf0e10cSrcweir 
252cdf0e10cSrcweir 			if ( !m_aTestHelper.checkStorageProperties( xResSubStorage, "MediaType4", false, ElementModes.ELEMENT_READ ) )
253cdf0e10cSrcweir 				return false;
254cdf0e10cSrcweir 
255cdf0e10cSrcweir 			// open existing substorage
256cdf0e10cSrcweir 			XStorage xResSubSubStorage = m_aTestHelper.openSubStorage( xResSubStorage,
257cdf0e10cSrcweir 																		"SubSubStorage1",
258cdf0e10cSrcweir 																		ElementModes.ELEMENT_READ );
259cdf0e10cSrcweir 			if ( xResSubSubStorage == null )
260cdf0e10cSrcweir 			{
261cdf0e10cSrcweir 				m_aTestHelper.Error( "Can't open existing substorage 'SubSubStorage'!" );
262cdf0e10cSrcweir 				return false;
263cdf0e10cSrcweir 			}
264cdf0e10cSrcweir 
265cdf0e10cSrcweir 			if ( !m_aTestHelper.checkStorageProperties( xResSubSubStorage, "MediaType5", false, ElementModes.ELEMENT_READ ) )
266cdf0e10cSrcweir 				return false;
267cdf0e10cSrcweir 
268cdf0e10cSrcweir 			// check substreams
269cdf0e10cSrcweir 			if ( !m_aTestHelper.checkStream( xResSubSubStorage, "SubStream1", "MediaType1", pBytes1 ) )
270cdf0e10cSrcweir 				return false;
271cdf0e10cSrcweir 
272cdf0e10cSrcweir 			if ( !m_aTestHelper.checkStream( xResSubSubStorage, "SubStream2", "MediaType2", pBytes2 ) )
273cdf0e10cSrcweir 				return false;
274cdf0e10cSrcweir 
275cdf0e10cSrcweir 			// dispose used storages to free resources
276cdf0e10cSrcweir 			if ( !m_aTestHelper.disposeStorage( xResultStorage ) )
277cdf0e10cSrcweir 				return false;
278cdf0e10cSrcweir 
279cdf0e10cSrcweir 			return true;
280cdf0e10cSrcweir 		}
281cdf0e10cSrcweir 		catch( Exception e )
282cdf0e10cSrcweir 		{
283cdf0e10cSrcweir 			m_aTestHelper.Error( "Exception: " + e );
284cdf0e10cSrcweir 			return false;
285cdf0e10cSrcweir 		}
286cdf0e10cSrcweir     }
287cdf0e10cSrcweir 
288cdf0e10cSrcweir }
289cdf0e10cSrcweir 
290