1 package complex
.storages
;
3 import com
.sun
.star
.uno
.XInterface
;
4 import com
.sun
.star
.lang
.XMultiServiceFactory
;
5 import com
.sun
.star
.lang
.XSingleServiceFactory
;
7 import com
.sun
.star
.bridge
.XUnoUrlResolver
;
8 import com
.sun
.star
.uno
.UnoRuntime
;
9 import com
.sun
.star
.uno
.XInterface
;
10 import com
.sun
.star
.io
.XStream
;
11 import com
.sun
.star
.io
.XInputStream
;
13 import com
.sun
.star
.embed
.*;
15 import share
.LogWriter
;
16 import complex
.storages
.TestHelper
;
17 import complex
.storages
.StorageTest
;
19 public class Test12
implements StorageTest
{
21 XMultiServiceFactory m_xMSF
;
22 XSingleServiceFactory m_xStorageFactory
;
23 TestHelper m_aTestHelper
;
25 public Test12( XMultiServiceFactory xMSF
, XSingleServiceFactory xStorageFactory
, LogWriter aLogWriter
)
28 m_xStorageFactory
= xStorageFactory
;
29 m_aTestHelper
= new TestHelper( aLogWriter
, "Test12: " );
36 XStream xTempFileStream
= m_aTestHelper
.CreateTempFileStream( m_xMSF
);
37 if ( xTempFileStream
== null )
40 // create storage based on the temporary stream
41 Object pArgs
[] = new Object
[2];
42 pArgs
[0] = (Object
) xTempFileStream
;
43 pArgs
[1] = new Integer( ElementModes
.WRITE
);
45 Object oTempStorage
= m_xStorageFactory
.createInstanceWithArguments( pArgs
);
46 XStorage xTempStorage
= (XStorage
) UnoRuntime
.queryInterface( XStorage
.class, oTempStorage
);
47 if ( xTempStorage
== null )
49 m_aTestHelper
.Error( "Can't create temporary storage representation!" );
53 // open a new substorage
54 XStorage xTempSubStorage
= m_aTestHelper
.openSubStorage( xTempStorage
,
57 if ( xTempSubStorage
== null )
59 m_aTestHelper
.Error( "Can't create substorage!" );
63 byte pBigBytes
[] = new byte[33000];
64 for ( int nInd
= 0; nInd
< 33000; nInd
++ )
65 pBigBytes
[nInd
] = (byte)( nInd
% 128 );
67 byte pBytes1
[] = { 1, 1, 1, 1, 1 };
69 // open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes
70 if ( !m_aTestHelper
.WriteBytesToSubstream( xTempSubStorage
, "SubStream1", "MediaType1", true, pBytes1
) )
73 // open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes
74 if ( !m_aTestHelper
.WriteBytesToSubstream( xTempSubStorage
, "BigSubStream1", "MediaType1", true, pBigBytes
) )
77 // set "MediaType" property for storages and check that "IsRoot" and "OpenMode" properties are set correctly
78 if ( !m_aTestHelper
.setStorageTypeAndCheckProps( xTempStorage
,
81 ElementModes
.WRITE
) )
84 // set "MediaType" property for storages and check that "IsRoot" and "OpenMode" properties are set correctly
85 if ( !m_aTestHelper
.setStorageTypeAndCheckProps( xTempSubStorage
,
88 ElementModes
.WRITE
) )
91 // commit substorage first
92 if ( !m_aTestHelper
.commitStorage( xTempSubStorage
) )
95 // commit the root storage so the contents must be stored now
96 if ( !m_aTestHelper
.commitStorage( xTempStorage
) )
100 if ( !m_aTestHelper
.disposeStorage( xTempSubStorage
) )
103 // ================================================
105 // ================================================
107 if ( !checkSubStorages( xTempStorage
, pBytes1
, pBigBytes
) )
110 // dispose used storage to free resources
111 if ( !m_aTestHelper
.disposeStorage( xTempStorage
) )
114 // ================================================
115 // now check all the written information with readwrite access
116 // ================================================
118 Object oResWriteStorage
= m_xStorageFactory
.createInstanceWithArguments( pArgs
);
119 XStorage xResWriteStorage
= (XStorage
) UnoRuntime
.queryInterface( XStorage
.class, oResWriteStorage
);
120 if ( xResWriteStorage
== null )
122 m_aTestHelper
.Error( "Can't open storage based on input stream!" );
126 if ( !m_aTestHelper
.checkStorageProperties( xResWriteStorage
, "MediaType2", true, ElementModes
.WRITE
) )
129 if( !checkSubStorages( xResWriteStorage
, pBytes1
, pBigBytes
) )
132 // try to open for writing after opening for reading
133 XStorage xResWSubStorage
= m_aTestHelper
.openSubStorage( xResWriteStorage
,
135 ElementModes
.WRITE
);
136 if ( xResWSubStorage
== null )
138 m_aTestHelper
.Error( "Can't open substorage for writing after it was opened for reading!" );
142 if ( !m_aTestHelper
.checkStorageProperties( xResWSubStorage
, "MediaType3", false, ElementModes
.WRITE
) )
145 if ( !m_aTestHelper
.checkStream( xResWSubStorage
, "SubStream1", "MediaType1", true, pBytes1
) )
148 if ( !m_aTestHelper
.checkStream( xResWSubStorage
, "BigSubStream1", "MediaType1", true, pBigBytes
) )
151 // dispose used storage to free resources
152 if ( !m_aTestHelper
.disposeStorage( xResWriteStorage
) )
156 // ================================================
157 // now check all the written information with readonly access
158 // ================================================
160 // close the output part of the temporary stream
161 // the output part must present since we already wrote to the stream
162 if ( !m_aTestHelper
.closeOutput( xTempFileStream
) )
165 XInputStream xTempInStream
= m_aTestHelper
.getInputStream( xTempFileStream
);
166 if ( xTempInStream
== null )
170 // since no mode is provided the result storage must be opened readonly
171 Object pOneArg
[] = new Object
[1];
172 pOneArg
[0] = (Object
) xTempInStream
;
174 Object oResultStorage
= m_xStorageFactory
.createInstanceWithArguments( pOneArg
);
175 XStorage xResultStorage
= (XStorage
) UnoRuntime
.queryInterface( XStorage
.class, oResultStorage
);
176 if ( xResultStorage
== null )
178 m_aTestHelper
.Error( "Can't open storage based on input stream!" );
182 if ( !m_aTestHelper
.checkStorageProperties( xResultStorage
, "MediaType2", true, ElementModes
.READ
) )
185 if( !checkSubStorages( xResultStorage
, pBytes1
, pBigBytes
) )
192 m_aTestHelper
.Error( "Exception: " + e
);
197 private boolean checkSubStorages( XStorage xStorage
, byte[] pBytes1
, byte[] pBigBytes
)
199 XStorage xReadSubStorage1
= m_aTestHelper
.openSubStorage( xStorage
,
203 XStorage xReadSubStorage2
= m_aTestHelper
.openSubStorage( xStorage
,
207 if ( xReadSubStorage1
== null || xReadSubStorage2
== null )
209 m_aTestHelper
.Error( "Can't open substorage for reading!" );
213 if ( !m_aTestHelper
.checkStorageProperties( xReadSubStorage1
, "MediaType3", false, ElementModes
.READ
) )
216 if ( !m_aTestHelper
.checkStorageProperties( xReadSubStorage2
, "MediaType3", false, ElementModes
.READ
) )
219 if ( !m_aTestHelper
.checkStream( xReadSubStorage1
, "SubStream1", "MediaType1", true, pBytes1
) )
222 if ( !m_aTestHelper
.checkStream( xReadSubStorage1
, "BigSubStream1", "MediaType1", true, pBigBytes
) )
225 if ( !m_aTestHelper
.checkStream( xReadSubStorage2
, "SubStream1", "MediaType1", true, pBytes1
) )
228 if ( !m_aTestHelper
.checkStream( xReadSubStorage2
, "BigSubStream1", "MediaType1", true, pBigBytes
) )
231 if ( !m_aTestHelper
.disposeStorage( xReadSubStorage1
) )
234 if ( !m_aTestHelper
.disposeStorage( xReadSubStorage2
) )