1*cdf0e10cSrcweir package storagetesting;
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 storagetesting.TestHelper;
14*cdf0e10cSrcweir import storagetesting.StorageTest;
15*cdf0e10cSrcweir 
16*cdf0e10cSrcweir public class Test09 implements StorageTest {
17*cdf0e10cSrcweir 
18*cdf0e10cSrcweir 	XMultiServiceFactory m_xMSF;
19*cdf0e10cSrcweir 	XSingleServiceFactory m_xStorageFactory;
20*cdf0e10cSrcweir 	TestHelper m_aTestHelper;
21*cdf0e10cSrcweir 
22*cdf0e10cSrcweir 	public Test09( XMultiServiceFactory xMSF, XSingleServiceFactory xStorageFactory )
23*cdf0e10cSrcweir 	{
24*cdf0e10cSrcweir 		m_xMSF = xMSF;
25*cdf0e10cSrcweir 		m_xStorageFactory = xStorageFactory;
26*cdf0e10cSrcweir 		m_aTestHelper = new TestHelper( "Test09: " );
27*cdf0e10cSrcweir 	}
28*cdf0e10cSrcweir 
29*cdf0e10cSrcweir     public boolean test()
30*cdf0e10cSrcweir 	{
31*cdf0e10cSrcweir 		try
32*cdf0e10cSrcweir 		{
33*cdf0e10cSrcweir 
34*cdf0e10cSrcweir 			// create temporary storage based on arbitrary medium
35*cdf0e10cSrcweir 			// after such a storage is closed it is lost
36*cdf0e10cSrcweir 			Object oTempStorage = m_xStorageFactory.createInstance();
37*cdf0e10cSrcweir 			XStorage xTempStorage = (XStorage) UnoRuntime.queryInterface( XStorage.class, oTempStorage );
38*cdf0e10cSrcweir 			if ( xTempStorage == null )
39*cdf0e10cSrcweir 			{
40*cdf0e10cSrcweir 				m_aTestHelper.Error( "Can't create temporary storage representation!" );
41*cdf0e10cSrcweir 				return false;
42*cdf0e10cSrcweir 			}
43*cdf0e10cSrcweir 
44*cdf0e10cSrcweir 			byte pPass1[] = { 1, 2, 3 };
45*cdf0e10cSrcweir 			byte pPass2[] = { 3, 2, 1 };
46*cdf0e10cSrcweir 			byte pBytes[] = { 1, 1, 1, 1, 1 };
47*cdf0e10cSrcweir 
48*cdf0e10cSrcweir 			// open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes
49*cdf0e10cSrcweir 			// the stream will not be encrypted
50*cdf0e10cSrcweir 			if ( !m_aTestHelper.WriteBytesToEncrSubstream( xTempStorage, "SubStream1", "MediaType1", false, pBytes, pPass1 ) )
51*cdf0e10cSrcweir 				return false;
52*cdf0e10cSrcweir 
53*cdf0e10cSrcweir 			// create temporary file
54*cdf0e10cSrcweir 			String sTempFileURL = m_aTestHelper.CreateTempFile( m_xMSF );
55*cdf0e10cSrcweir 			if ( sTempFileURL == null || sTempFileURL == "" )
56*cdf0e10cSrcweir 			{
57*cdf0e10cSrcweir 				m_aTestHelper.Error( "No valid temporary file was created!" );
58*cdf0e10cSrcweir 				return false;
59*cdf0e10cSrcweir 			}
60*cdf0e10cSrcweir 
61*cdf0e10cSrcweir 			// create temporary storage based on a previously created temporary file
62*cdf0e10cSrcweir 			Object pArgs[] = new Object[2];
63*cdf0e10cSrcweir 			pArgs[0] = (Object) sTempFileURL;
64*cdf0e10cSrcweir 			pArgs[1] = new Integer( ElementModes.ELEMENT_WRITE );
65*cdf0e10cSrcweir 
66*cdf0e10cSrcweir 			Object oTempFileStorage = m_xStorageFactory.createInstanceWithArguments( pArgs );
67*cdf0e10cSrcweir 			XStorage xTempFileStorage = (XStorage)UnoRuntime.queryInterface( XStorage.class, oTempFileStorage );
68*cdf0e10cSrcweir 			if ( xTempFileStorage == null )
69*cdf0e10cSrcweir 			{
70*cdf0e10cSrcweir 				m_aTestHelper.Error( "Can't create storage based on temporary file!" );
71*cdf0e10cSrcweir 				return false;
72*cdf0e10cSrcweir 			}
73*cdf0e10cSrcweir 
74*cdf0e10cSrcweir 			// copy xTempStorage to xTempFileStorage
75*cdf0e10cSrcweir 			// xTempFileStorage will be automatically commited
76*cdf0e10cSrcweir 			if ( !m_aTestHelper.copyStorage( xTempStorage, xTempFileStorage ) )
77*cdf0e10cSrcweir 				return false;
78*cdf0e10cSrcweir 
79*cdf0e10cSrcweir 			// change password of the substream of new storage based on file
80*cdf0e10cSrcweir 			int nResult = m_aTestHelper.ChangeStreamPass( xTempFileStorage, "SubStream1", pPass1, pPass2 );
81*cdf0e10cSrcweir 			if ( nResult == 0 )
82*cdf0e10cSrcweir 				return false; // test failed
83*cdf0e10cSrcweir 			else if ( nResult == -1 )
84*cdf0e10cSrcweir 				return true; // tested optional feature is not supported
85*cdf0e10cSrcweir 
86*cdf0e10cSrcweir 			if ( !m_aTestHelper.commitStorage( xTempFileStorage ) )
87*cdf0e10cSrcweir 				return false;
88*cdf0e10cSrcweir 
89*cdf0e10cSrcweir 			// dispose used storages to free resources
90*cdf0e10cSrcweir 			if ( !m_aTestHelper.disposeStorage( xTempStorage ) || !m_aTestHelper.disposeStorage( xTempFileStorage ) )
91*cdf0e10cSrcweir 				return false;
92*cdf0e10cSrcweir 
93*cdf0e10cSrcweir 			// ================================================
94*cdf0e10cSrcweir 			// now check all the written and copied information
95*cdf0e10cSrcweir 			// ================================================
96*cdf0e10cSrcweir 
97*cdf0e10cSrcweir 			// the temporary file must not be locked any more after storage disposing
98*cdf0e10cSrcweir 			pArgs[1] = new Integer( ElementModes.ELEMENT_READ );
99*cdf0e10cSrcweir 			Object oResultStorage = m_xStorageFactory.createInstanceWithArguments( pArgs );
100*cdf0e10cSrcweir 			XStorage xResultStorage = (XStorage) UnoRuntime.queryInterface( XStorage.class, oResultStorage );
101*cdf0e10cSrcweir 			if ( xResultStorage == null )
102*cdf0e10cSrcweir 			{
103*cdf0e10cSrcweir 				m_aTestHelper.Error( "Can't reopen storage based on temporary file!" );
104*cdf0e10cSrcweir 				return false;
105*cdf0e10cSrcweir 			}
106*cdf0e10cSrcweir 
107*cdf0e10cSrcweir 			if ( !m_aTestHelper.checkEncrStream( xResultStorage, "SubStream1", "MediaType1", pBytes, pPass2 ) )
108*cdf0e10cSrcweir 				return false;
109*cdf0e10cSrcweir 
110*cdf0e10cSrcweir 			// dispose used storages to free resources
111*cdf0e10cSrcweir 			if ( !m_aTestHelper.disposeStorage( xResultStorage ) )
112*cdf0e10cSrcweir 				return false;
113*cdf0e10cSrcweir 
114*cdf0e10cSrcweir 			return true;
115*cdf0e10cSrcweir 		}
116*cdf0e10cSrcweir 		catch( Exception e )
117*cdf0e10cSrcweir 		{
118*cdf0e10cSrcweir 			m_aTestHelper.Error( "Exception: " + e );
119*cdf0e10cSrcweir 			return false;
120*cdf0e10cSrcweir 		}
121*cdf0e10cSrcweir     }
122*cdf0e10cSrcweir }
123*cdf0e10cSrcweir 
124