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 pBytes1
[] = { 1, 1, 1, 1, 1 };
65 // open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes
66 if ( !m_aTestHelper
.WriteBytesToSubstream( xTempSubStorage
, "SubStream1", "MediaType1", true, pBytes1
) )
69 // set "MediaType" property for storages and check that "IsRoot" and "OpenMode" properties are set correctly
70 if ( !m_aTestHelper
.setStorageTypeAndCheckProps( xTempStorage
,
73 ElementModes
.WRITE
) )
76 // set "MediaType" property for storages and check that "IsRoot" and "OpenMode" properties are set correctly
77 if ( !m_aTestHelper
.setStorageTypeAndCheckProps( xTempSubStorage
,
80 ElementModes
.WRITE
) )
83 // commit substorage first
84 if ( !m_aTestHelper
.commitStorage( xTempSubStorage
) )
87 // commit the root storage so the contents must be stored now
88 if ( !m_aTestHelper
.commitStorage( xTempStorage
) )
92 if ( !m_aTestHelper
.disposeStorage( xTempSubStorage
) )
95 // ================================================
97 // ================================================
99 if ( !checkSubStorages( xTempStorage
, pBytes1
) )
102 // dispose used storage to free resources
103 if ( !m_aTestHelper
.disposeStorage( xTempStorage
) )
106 // ================================================
107 // now check all the written information with readwrite access
108 // ================================================
110 Object oResWriteStorage
= m_xStorageFactory
.createInstanceWithArguments( pArgs
);
111 XStorage xResWriteStorage
= (XStorage
) UnoRuntime
.queryInterface( XStorage
.class, oResWriteStorage
);
112 if ( xResWriteStorage
== null )
114 m_aTestHelper
.Error( "Can't open storage based on input stream!" );
118 if ( !m_aTestHelper
.checkStorageProperties( xResWriteStorage
, "MediaType2", true, ElementModes
.WRITE
) )
121 if( !checkSubStorages( xResWriteStorage
, pBytes1
) )
124 // try to open for writing after opening for reading
125 XStorage xResWSubStorage
= m_aTestHelper
.openSubStorage( xResWriteStorage
,
127 ElementModes
.WRITE
);
128 if ( xResWSubStorage
== null )
130 m_aTestHelper
.Error( "Can't open substorage for writing after it was opened for reading!" );
134 if ( !m_aTestHelper
.checkStorageProperties( xResWSubStorage
, "MediaType3", false, ElementModes
.WRITE
) )
137 if ( !m_aTestHelper
.checkStream( xResWSubStorage
, "SubStream1", "MediaType1", true, pBytes1
) )
140 // dispose used storage to free resources
141 if ( !m_aTestHelper
.disposeStorage( xResWriteStorage
) )
145 // ================================================
146 // now check all the written information with readonly access
147 // ================================================
149 // close the output part of the temporary stream
150 // the output part must present since we already wrote to the stream
151 if ( !m_aTestHelper
.closeOutput( xTempFileStream
) )
154 XInputStream xTempInStream
= m_aTestHelper
.getInputStream( xTempFileStream
);
155 if ( xTempInStream
== null )
159 // since no mode is provided the result storage must be opened readonly
160 Object pOneArg
[] = new Object
[1];
161 pOneArg
[0] = (Object
) xTempInStream
;
163 Object oResultStorage
= m_xStorageFactory
.createInstanceWithArguments( pOneArg
);
164 XStorage xResultStorage
= (XStorage
) UnoRuntime
.queryInterface( XStorage
.class, oResultStorage
);
165 if ( xResultStorage
== null )
167 m_aTestHelper
.Error( "Can't open storage based on input stream!" );
171 if ( !m_aTestHelper
.checkStorageProperties( xResultStorage
, "MediaType2", true, ElementModes
.READ
) )
174 if( !checkSubStorages( xResultStorage
, pBytes1
) )
181 m_aTestHelper
.Error( "Exception: " + e
);
186 private boolean checkSubStorages( XStorage xStorage
, byte[] pBytes1
)
188 XStorage xReadSubStorage1
= m_aTestHelper
.openSubStorage( xStorage
,
192 XStorage xReadSubStorage2
= m_aTestHelper
.openSubStorage( xStorage
,
196 if ( xReadSubStorage1
== null || xReadSubStorage2
== null )
198 m_aTestHelper
.Error( "Can't open substorage for reading!" );
202 if ( !m_aTestHelper
.checkStorageProperties( xReadSubStorage1
, "MediaType3", false, ElementModes
.READ
) )
205 if ( !m_aTestHelper
.checkStorageProperties( xReadSubStorage2
, "MediaType3", false, ElementModes
.READ
) )
208 if ( !m_aTestHelper
.checkStream( xReadSubStorage1
, "SubStream1", "MediaType1", true, pBytes1
) )
211 if ( !m_aTestHelper
.checkStream( xReadSubStorage2
, "SubStream1", "MediaType1", true, pBytes1
) )
214 if ( !m_aTestHelper
.disposeStorage( xReadSubStorage1
) )
217 if ( !m_aTestHelper
.disposeStorage( xReadSubStorage2
) )