xref: /trunk/main/package/qa/storages/Test01.java (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir package complex.storages;
2*cdf0e10cSrcweir 
3*cdf0e10cSrcweir import com.sun.star.uno.XInterface;
4*cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory;
5*cdf0e10cSrcweir import com.sun.star.lang.XSingleServiceFactory;
6*cdf0e10cSrcweir 
7*cdf0e10cSrcweir import com.sun.star.bridge.XUnoUrlResolver;
8*cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
9*cdf0e10cSrcweir import com.sun.star.uno.XInterface;
10*cdf0e10cSrcweir 
11*cdf0e10cSrcweir import com.sun.star.embed.*;
12*cdf0e10cSrcweir 
13*cdf0e10cSrcweir import share.LogWriter;
14*cdf0e10cSrcweir import complex.storages.TestHelper;
15*cdf0e10cSrcweir import complex.storages.StorageTest;
16*cdf0e10cSrcweir 
17*cdf0e10cSrcweir public class Test01 implements StorageTest {
18*cdf0e10cSrcweir 
19*cdf0e10cSrcweir     XMultiServiceFactory m_xMSF;
20*cdf0e10cSrcweir     XSingleServiceFactory m_xStorageFactory;
21*cdf0e10cSrcweir     TestHelper m_aTestHelper;
22*cdf0e10cSrcweir 
23*cdf0e10cSrcweir     public Test01( XMultiServiceFactory xMSF, XSingleServiceFactory xStorageFactory, LogWriter aLogWriter )
24*cdf0e10cSrcweir     {
25*cdf0e10cSrcweir         m_xMSF = xMSF;
26*cdf0e10cSrcweir         m_xStorageFactory = xStorageFactory;
27*cdf0e10cSrcweir         m_aTestHelper = new TestHelper( aLogWriter, "Test01: " );
28*cdf0e10cSrcweir     }
29*cdf0e10cSrcweir 
30*cdf0e10cSrcweir     public boolean test()
31*cdf0e10cSrcweir     {
32*cdf0e10cSrcweir         try
33*cdf0e10cSrcweir         {
34*cdf0e10cSrcweir             String sTempFileURL = m_aTestHelper.CreateTempFile( m_xMSF );
35*cdf0e10cSrcweir             if ( sTempFileURL == null || sTempFileURL == "" )
36*cdf0e10cSrcweir             {
37*cdf0e10cSrcweir                 m_aTestHelper.Error( "No valid temporary file was created!" );
38*cdf0e10cSrcweir                 return false;
39*cdf0e10cSrcweir             }
40*cdf0e10cSrcweir 
41*cdf0e10cSrcweir             // create temporary storage based on arbitrary medium
42*cdf0e10cSrcweir             // after such a storage is closed it is lost
43*cdf0e10cSrcweir             Object oTempStorage = m_xStorageFactory.createInstance();
44*cdf0e10cSrcweir             XStorage xTempStorage = (XStorage) UnoRuntime.queryInterface( XStorage.class, oTempStorage );
45*cdf0e10cSrcweir             if ( xTempStorage == null )
46*cdf0e10cSrcweir             {
47*cdf0e10cSrcweir                 m_aTestHelper.Error( "Can't create temporary storage representation!" );
48*cdf0e10cSrcweir                 return false;
49*cdf0e10cSrcweir             }
50*cdf0e10cSrcweir 
51*cdf0e10cSrcweir             // open a new substorage
52*cdf0e10cSrcweir             XStorage xTempSubStorage = m_aTestHelper.openSubStorage( xTempStorage,
53*cdf0e10cSrcweir                                                                         "SubStorage1",
54*cdf0e10cSrcweir                                                                         ElementModes.WRITE );
55*cdf0e10cSrcweir             if ( xTempSubStorage == null )
56*cdf0e10cSrcweir             {
57*cdf0e10cSrcweir                 m_aTestHelper.Error( "Can't create substorage!" );
58*cdf0e10cSrcweir                 return false;
59*cdf0e10cSrcweir             }
60*cdf0e10cSrcweir 
61*cdf0e10cSrcweir             byte pBigBytes[] = new byte[33000];
62*cdf0e10cSrcweir             for ( int nInd = 0; nInd < 33000; nInd++ )
63*cdf0e10cSrcweir                 pBigBytes[nInd] = (byte)( nInd % 128 );
64*cdf0e10cSrcweir 
65*cdf0e10cSrcweir             // open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes
66*cdf0e10cSrcweir             if ( !m_aTestHelper.WriteBytesToSubstream( xTempSubStorage, "BigSubStream1", "MediaType1", true, pBigBytes ) )
67*cdf0e10cSrcweir                 return false;
68*cdf0e10cSrcweir 
69*cdf0e10cSrcweir             // open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes
70*cdf0e10cSrcweir             if ( !m_aTestHelper.WriteBytesToSubstream( xTempSubStorage, "BigSubStream2", "MediaType2", false, pBigBytes ) )
71*cdf0e10cSrcweir                 return false;
72*cdf0e10cSrcweir 
73*cdf0e10cSrcweir             byte pBytes1[] = { 1, 1, 1, 1, 1 };
74*cdf0e10cSrcweir 
75*cdf0e10cSrcweir             // open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes
76*cdf0e10cSrcweir             if ( !m_aTestHelper.WriteBytesToSubstream( xTempSubStorage, "SubStream1", "MediaType1", true, pBytes1 ) )
77*cdf0e10cSrcweir                 return false;
78*cdf0e10cSrcweir 
79*cdf0e10cSrcweir             byte pBytes2[] = { 2, 2, 2, 2, 2 };
80*cdf0e10cSrcweir 
81*cdf0e10cSrcweir             // open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes
82*cdf0e10cSrcweir             if ( !m_aTestHelper.WriteBytesToSubstream( xTempSubStorage, "SubStream2", "MediaType2", false, pBytes2 ) )
83*cdf0e10cSrcweir                 return false;
84*cdf0e10cSrcweir 
85*cdf0e10cSrcweir             // set "MediaType" property for storages and check that "IsRoot" and "OpenMode" properties are set correctly
86*cdf0e10cSrcweir             if ( !m_aTestHelper.setStorageTypeAndCheckProps( xTempStorage,
87*cdf0e10cSrcweir                                                             "MediaType3",
88*cdf0e10cSrcweir                                                             true,
89*cdf0e10cSrcweir                                                             ElementModes.WRITE ) )
90*cdf0e10cSrcweir                 return false;
91*cdf0e10cSrcweir 
92*cdf0e10cSrcweir             // set "MediaType" property for storages and check that "IsRoot" and "OpenMode" properties are set correctly
93*cdf0e10cSrcweir             if ( !m_aTestHelper.setStorageTypeAndCheckProps( xTempSubStorage,
94*cdf0e10cSrcweir                                                             "MediaType4",
95*cdf0e10cSrcweir                                                             false,
96*cdf0e10cSrcweir                                                             ElementModes.WRITE ) )
97*cdf0e10cSrcweir                 return false;
98*cdf0e10cSrcweir 
99*cdf0e10cSrcweir             // create temporary storage based on a previously created temporary file
100*cdf0e10cSrcweir             Object pArgs[] = new Object[2];
101*cdf0e10cSrcweir             pArgs[0] = (Object) sTempFileURL;
102*cdf0e10cSrcweir             pArgs[1] = new Integer( ElementModes.WRITE );
103*cdf0e10cSrcweir 
104*cdf0e10cSrcweir             Object oTempFileStorage = m_xStorageFactory.createInstanceWithArguments( pArgs );
105*cdf0e10cSrcweir             XStorage xTempFileStorage = (XStorage)UnoRuntime.queryInterface( XStorage.class, oTempFileStorage );
106*cdf0e10cSrcweir             if ( xTempFileStorage == null )
107*cdf0e10cSrcweir             {
108*cdf0e10cSrcweir                 m_aTestHelper.Error( "Can't create storage based on temporary file!" );
109*cdf0e10cSrcweir                 return false;
110*cdf0e10cSrcweir             }
111*cdf0e10cSrcweir 
112*cdf0e10cSrcweir             // copy xTempStorage to xTempFileStorage
113*cdf0e10cSrcweir             // xTempFileStorage will be automatically commited
114*cdf0e10cSrcweir             if ( !m_aTestHelper.copyStorage( xTempStorage, xTempFileStorage ) )
115*cdf0e10cSrcweir                 return false;
116*cdf0e10cSrcweir 
117*cdf0e10cSrcweir             // dispose used storages to free resources
118*cdf0e10cSrcweir             if ( !m_aTestHelper.disposeStorage( xTempStorage ) || !m_aTestHelper.disposeStorage( xTempFileStorage ) )
119*cdf0e10cSrcweir                 return false;
120*cdf0e10cSrcweir 
121*cdf0e10cSrcweir             // ================================================
122*cdf0e10cSrcweir             // now check all the written and copied information
123*cdf0e10cSrcweir             // ================================================
124*cdf0e10cSrcweir 
125*cdf0e10cSrcweir             // the temporary file must not be locked any more after storage disposing
126*cdf0e10cSrcweir             pArgs[1] = new Integer( ElementModes.WRITE );
127*cdf0e10cSrcweir             Object oResultStorage = m_xStorageFactory.createInstanceWithArguments( pArgs );
128*cdf0e10cSrcweir             XStorage xResultStorage = (XStorage) UnoRuntime.queryInterface( XStorage.class, oResultStorage );
129*cdf0e10cSrcweir             if ( xResultStorage == null )
130*cdf0e10cSrcweir             {
131*cdf0e10cSrcweir                 m_aTestHelper.Error( "Can't reopen storage based on temporary file!" );
132*cdf0e10cSrcweir                 return false;
133*cdf0e10cSrcweir             }
134*cdf0e10cSrcweir 
135*cdf0e10cSrcweir             if ( !m_aTestHelper.checkStorageProperties( xResultStorage, "MediaType3", true, ElementModes.WRITE ) )
136*cdf0e10cSrcweir                 return false;
137*cdf0e10cSrcweir 
138*cdf0e10cSrcweir             // open existing substorage
139*cdf0e10cSrcweir             XStorage xResultSubStorage = m_aTestHelper.openSubStorage( xResultStorage,
140*cdf0e10cSrcweir                                                                         "SubStorage1",
141*cdf0e10cSrcweir                                                                         ElementModes.READ );
142*cdf0e10cSrcweir             if ( xResultSubStorage == null )
143*cdf0e10cSrcweir             {
144*cdf0e10cSrcweir                 m_aTestHelper.Error( "Can't open existing substorage!" );
145*cdf0e10cSrcweir                 return false;
146*cdf0e10cSrcweir             }
147*cdf0e10cSrcweir 
148*cdf0e10cSrcweir             if ( !m_aTestHelper.checkStorageProperties( xResultSubStorage, "MediaType4", false, ElementModes.READ ) )
149*cdf0e10cSrcweir                 return false;
150*cdf0e10cSrcweir 
151*cdf0e10cSrcweir             if ( !m_aTestHelper.checkStream( xResultSubStorage, "BigSubStream1", "MediaType1", true, pBigBytes ) )
152*cdf0e10cSrcweir                 return false;
153*cdf0e10cSrcweir 
154*cdf0e10cSrcweir             if ( !m_aTestHelper.checkStream( xResultSubStorage, "BigSubStream2", "MediaType2", false, pBigBytes ) )
155*cdf0e10cSrcweir                 return false;
156*cdf0e10cSrcweir 
157*cdf0e10cSrcweir             if ( !m_aTestHelper.checkStream( xResultSubStorage, "SubStream1", "MediaType1", true, pBytes1 ) )
158*cdf0e10cSrcweir                 return false;
159*cdf0e10cSrcweir 
160*cdf0e10cSrcweir             if ( !m_aTestHelper.checkStream( xResultSubStorage, "SubStream2", "MediaType2", false, pBytes2 ) )
161*cdf0e10cSrcweir                 return false;
162*cdf0e10cSrcweir 
163*cdf0e10cSrcweir             // dispose used storages to free resources
164*cdf0e10cSrcweir             if ( !m_aTestHelper.disposeStorage( xResultStorage ) )
165*cdf0e10cSrcweir                 return false;
166*cdf0e10cSrcweir 
167*cdf0e10cSrcweir             return true;
168*cdf0e10cSrcweir         }
169*cdf0e10cSrcweir         catch( Exception e )
170*cdf0e10cSrcweir         {
171*cdf0e10cSrcweir             m_aTestHelper.Error( "Exception: " + e );
172*cdf0e10cSrcweir             return false;
173*cdf0e10cSrcweir         }
174*cdf0e10cSrcweir     }
175*cdf0e10cSrcweir 
176*cdf0e10cSrcweir }
177*cdf0e10cSrcweir 
178