1*a740f2aaSAndrew Rist /************************************************************** 2*a740f2aaSAndrew Rist * 3*a740f2aaSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*a740f2aaSAndrew Rist * or more contributor license agreements. See the NOTICE file 5*a740f2aaSAndrew Rist * distributed with this work for additional information 6*a740f2aaSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*a740f2aaSAndrew Rist * to you under the Apache License, Version 2.0 (the 8*a740f2aaSAndrew Rist * "License"); you may not use this file except in compliance 9*a740f2aaSAndrew Rist * with the License. You may obtain a copy of the License at 10*a740f2aaSAndrew Rist * 11*a740f2aaSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*a740f2aaSAndrew Rist * 13*a740f2aaSAndrew Rist * Unless required by applicable law or agreed to in writing, 14*a740f2aaSAndrew Rist * software distributed under the License is distributed on an 15*a740f2aaSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*a740f2aaSAndrew Rist * KIND, either express or implied. See the License for the 17*a740f2aaSAndrew Rist * specific language governing permissions and limitations 18*a740f2aaSAndrew Rist * under the License. 19*a740f2aaSAndrew Rist * 20*a740f2aaSAndrew Rist *************************************************************/ 21*a740f2aaSAndrew Rist 22cdf0e10cSrcweir package complex.storages; 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 import com.sun.star.io.XInputStream; 33cdf0e10cSrcweir 34cdf0e10cSrcweir import com.sun.star.embed.*; 35cdf0e10cSrcweir 36cdf0e10cSrcweir import share.LogWriter; 37cdf0e10cSrcweir import complex.storages.TestHelper; 38cdf0e10cSrcweir import complex.storages.StorageTest; 39cdf0e10cSrcweir 40cdf0e10cSrcweir public class RegressionTest_i46848 implements StorageTest { 41cdf0e10cSrcweir 42cdf0e10cSrcweir XMultiServiceFactory m_xMSF; 43cdf0e10cSrcweir XSingleServiceFactory m_xStorageFactory; 44cdf0e10cSrcweir TestHelper m_aTestHelper; 45cdf0e10cSrcweir RegressionTest_i46848( XMultiServiceFactory xMSF, XSingleServiceFactory xStorageFactory, LogWriter aLogWriter )46cdf0e10cSrcweir public RegressionTest_i46848( XMultiServiceFactory xMSF, XSingleServiceFactory xStorageFactory, LogWriter aLogWriter ) 47cdf0e10cSrcweir { 48cdf0e10cSrcweir m_xMSF = xMSF; 49cdf0e10cSrcweir m_xStorageFactory = xStorageFactory; 50cdf0e10cSrcweir m_aTestHelper = new TestHelper( aLogWriter, "RegressionTest_i46848: " ); 51cdf0e10cSrcweir } 52cdf0e10cSrcweir test()53cdf0e10cSrcweir public boolean test() 54cdf0e10cSrcweir { 55cdf0e10cSrcweir try 56cdf0e10cSrcweir { 57cdf0e10cSrcweir XStream xTempFileStream = m_aTestHelper.CreateTempFileStream( m_xMSF ); 58cdf0e10cSrcweir if ( xTempFileStream == null ) 59cdf0e10cSrcweir return false; 60cdf0e10cSrcweir 61cdf0e10cSrcweir // create storage based on the temporary stream 62cdf0e10cSrcweir Object pArgs[] = new Object[2]; 63cdf0e10cSrcweir pArgs[0] = (Object) xTempFileStream; 64cdf0e10cSrcweir pArgs[1] = new Integer( ElementModes.WRITE ); 65cdf0e10cSrcweir 66cdf0e10cSrcweir Object oTempStorage = m_xStorageFactory.createInstanceWithArguments( pArgs ); 67cdf0e10cSrcweir XStorage xTempStorage = (XStorage) UnoRuntime.queryInterface( XStorage.class, oTempStorage ); 68cdf0e10cSrcweir if ( xTempStorage == null ) 69cdf0e10cSrcweir { 70cdf0e10cSrcweir m_aTestHelper.Error( "Can't create temporary storage representation!" ); 71cdf0e10cSrcweir return false; 72cdf0e10cSrcweir } 73cdf0e10cSrcweir 74cdf0e10cSrcweir // open a new substorage 75cdf0e10cSrcweir XStorage xTempSubStorage = m_aTestHelper.openSubStorage( xTempStorage, 76cdf0e10cSrcweir "SubStorage1", 77cdf0e10cSrcweir ElementModes.WRITE ); 78cdf0e10cSrcweir if ( xTempSubStorage == null ) 79cdf0e10cSrcweir { 80cdf0e10cSrcweir m_aTestHelper.Error( "Can't create substorage!" ); 81cdf0e10cSrcweir return false; 82cdf0e10cSrcweir } 83cdf0e10cSrcweir 84cdf0e10cSrcweir byte pBytes1[] = { 1, 1, 1, 1, 1 }; 85cdf0e10cSrcweir 86cdf0e10cSrcweir // open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes 87cdf0e10cSrcweir if ( !m_aTestHelper.WriteBytesToSubstream( xTempSubStorage, "SubStream1", "MediaType1", true, pBytes1 ) ) 88cdf0e10cSrcweir return false; 89cdf0e10cSrcweir 90cdf0e10cSrcweir // set "MediaType" property for storages and check that "IsRoot" and "OpenMode" properties are set correctly 91cdf0e10cSrcweir if ( !m_aTestHelper.setStorageTypeAndCheckProps( xTempStorage, 92cdf0e10cSrcweir "MediaType2", 93cdf0e10cSrcweir true, 94cdf0e10cSrcweir ElementModes.WRITE ) ) 95cdf0e10cSrcweir return false; 96cdf0e10cSrcweir 97cdf0e10cSrcweir // set "MediaType" property for storages and check that "IsRoot" and "OpenMode" properties are set correctly 98cdf0e10cSrcweir if ( !m_aTestHelper.setStorageTypeAndCheckProps( xTempSubStorage, 99cdf0e10cSrcweir "MediaType3", 100cdf0e10cSrcweir false, 101cdf0e10cSrcweir ElementModes.WRITE ) ) 102cdf0e10cSrcweir return false; 103cdf0e10cSrcweir 104cdf0e10cSrcweir // commit substorage first 105cdf0e10cSrcweir if ( !m_aTestHelper.commitStorage( xTempSubStorage ) ) 106cdf0e10cSrcweir return false; 107cdf0e10cSrcweir 108cdf0e10cSrcweir // commit the root storage so the contents must be stored now 109cdf0e10cSrcweir if ( !m_aTestHelper.commitStorage( xTempStorage ) ) 110cdf0e10cSrcweir return false; 111cdf0e10cSrcweir 112cdf0e10cSrcweir // dispose substorage 113cdf0e10cSrcweir if ( !m_aTestHelper.disposeStorage( xTempSubStorage ) ) 114cdf0e10cSrcweir return false; 115cdf0e10cSrcweir 116cdf0e10cSrcweir // dispose the temporary storage 117cdf0e10cSrcweir if ( !m_aTestHelper.disposeStorage( xTempStorage ) ) 118cdf0e10cSrcweir return false; 119cdf0e10cSrcweir 120cdf0e10cSrcweir // ================================================ 121cdf0e10cSrcweir // create a new storage based on the stream and change the mediatype of the substorage 122cdf0e10cSrcweir // as described in the bug description 123cdf0e10cSrcweir // ================================================ 124cdf0e10cSrcweir 125cdf0e10cSrcweir oTempStorage = m_xStorageFactory.createInstanceWithArguments( pArgs ); 126cdf0e10cSrcweir xTempStorage = (XStorage) UnoRuntime.queryInterface( XStorage.class, oTempStorage ); 127cdf0e10cSrcweir if ( xTempStorage == null ) 128cdf0e10cSrcweir { 129cdf0e10cSrcweir m_aTestHelper.Error( "Can't create temporary storage representation!" ); 130cdf0e10cSrcweir return false; 131cdf0e10cSrcweir } 132cdf0e10cSrcweir 133cdf0e10cSrcweir // open the substorage 134cdf0e10cSrcweir xTempSubStorage = m_aTestHelper.openSubStorage( xTempStorage, 135cdf0e10cSrcweir "SubStorage1", 136cdf0e10cSrcweir ElementModes.WRITE ); 137cdf0e10cSrcweir if ( xTempSubStorage == null ) 138cdf0e10cSrcweir { 139cdf0e10cSrcweir m_aTestHelper.Error( "Can't create substorage!" ); 140cdf0e10cSrcweir return false; 141cdf0e10cSrcweir } 142cdf0e10cSrcweir 143cdf0e10cSrcweir // set "MediaType" property for storages and check that "IsRoot" and "OpenMode" properties are set correctly 144cdf0e10cSrcweir if ( !m_aTestHelper.setStorageTypeAndCheckProps( xTempSubStorage, 145cdf0e10cSrcweir "ChangedMediaType3", 146cdf0e10cSrcweir false, 147cdf0e10cSrcweir ElementModes.WRITE ) ) 148cdf0e10cSrcweir return false; 149cdf0e10cSrcweir 150cdf0e10cSrcweir // commit substorage first 151cdf0e10cSrcweir if ( !m_aTestHelper.commitStorage( xTempSubStorage ) ) 152cdf0e10cSrcweir return false; 153cdf0e10cSrcweir 154cdf0e10cSrcweir // commit the root storage so the contents must be stored now 155cdf0e10cSrcweir if ( !m_aTestHelper.commitStorage( xTempStorage ) ) 156cdf0e10cSrcweir return false; 157cdf0e10cSrcweir 158cdf0e10cSrcweir // dispose substorage 159cdf0e10cSrcweir if ( !m_aTestHelper.disposeStorage( xTempSubStorage ) ) 160cdf0e10cSrcweir return false; 161cdf0e10cSrcweir 162cdf0e10cSrcweir // dispose the temporary storage 163cdf0e10cSrcweir if ( !m_aTestHelper.disposeStorage( xTempStorage ) ) 164cdf0e10cSrcweir return false; 165cdf0e10cSrcweir 166cdf0e10cSrcweir // ================================================ 167cdf0e10cSrcweir // create a new readonly storage based on the stream and check the contents 168cdf0e10cSrcweir // ================================================ 169cdf0e10cSrcweir 170cdf0e10cSrcweir pArgs[1] = new Integer( ElementModes.READ ); 171cdf0e10cSrcweir oTempStorage = m_xStorageFactory.createInstanceWithArguments( pArgs ); 172cdf0e10cSrcweir xTempStorage = (XStorage) UnoRuntime.queryInterface( XStorage.class, oTempStorage ); 173cdf0e10cSrcweir if ( xTempStorage == null ) 174cdf0e10cSrcweir { 175cdf0e10cSrcweir m_aTestHelper.Error( "Can't create temporary storage representation!" ); 176cdf0e10cSrcweir return false; 177cdf0e10cSrcweir } 178cdf0e10cSrcweir 179cdf0e10cSrcweir // open the substorage 180cdf0e10cSrcweir xTempSubStorage = m_aTestHelper.openSubStorage( xTempStorage, 181cdf0e10cSrcweir "SubStorage1", 182cdf0e10cSrcweir ElementModes.READ ); 183cdf0e10cSrcweir if ( xTempSubStorage == null ) 184cdf0e10cSrcweir { 185cdf0e10cSrcweir m_aTestHelper.Error( "Can't create substorage!" ); 186cdf0e10cSrcweir return false; 187cdf0e10cSrcweir } 188cdf0e10cSrcweir 189cdf0e10cSrcweir if ( !m_aTestHelper.checkStorageProperties( xTempStorage, "MediaType2", true, ElementModes.READ ) ) 190cdf0e10cSrcweir return false; 191cdf0e10cSrcweir 192cdf0e10cSrcweir if ( !m_aTestHelper.checkStorageProperties( xTempSubStorage, "ChangedMediaType3", false, ElementModes.READ ) ) 193cdf0e10cSrcweir return false; 194cdf0e10cSrcweir 195cdf0e10cSrcweir // the MediaType and the contents must be up to date 196cdf0e10cSrcweir if ( !m_aTestHelper.checkStream( xTempSubStorage, "SubStream1", "MediaType1", true, pBytes1 ) ) 197cdf0e10cSrcweir return false; 198cdf0e10cSrcweir 199cdf0e10cSrcweir // dispose used storage to free resources 200cdf0e10cSrcweir if ( !m_aTestHelper.disposeStorage( xTempStorage ) ) 201cdf0e10cSrcweir return false; 202cdf0e10cSrcweir 203cdf0e10cSrcweir return true; 204cdf0e10cSrcweir } 205cdf0e10cSrcweir catch( Exception e ) 206cdf0e10cSrcweir { 207cdf0e10cSrcweir m_aTestHelper.Error( "Exception: " + e ); 208cdf0e10cSrcweir return false; 209cdf0e10cSrcweir } 210cdf0e10cSrcweir } 211cdf0e10cSrcweir } 212cdf0e10cSrcweir 213