Package complex.storages

Source Code of complex.storages.Test15

package complex.storages;

import com.sun.star.uno.XInterface;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.lang.XSingleServiceFactory;

import com.sun.star.bridge.XUnoUrlResolver;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XInterface;

import com.sun.star.embed.*;

import share.LogWriter;
import complex.storages.TestHelper;
import complex.storages.StorageTest;

public class Test15 implements StorageTest {

  XMultiServiceFactory m_xMSF;
  XSingleServiceFactory m_xStorageFactory;
  TestHelper m_aTestHelper;

  public Test15( XMultiServiceFactory xMSF, XSingleServiceFactory xStorageFactory, LogWriter aLogWriter )
  {
    m_xMSF = xMSF;
    m_xStorageFactory = xStorageFactory;
    m_aTestHelper = new TestHelper( aLogWriter, "Test15: " );
  }

    public boolean test()
  {
    String aStreamPrefix = "";
    for ( int nInd = 0; nInd < 4; ++nInd, aStreamPrefix += "SubStorage" + nInd )
      if ( !testForPath( aStreamPrefix ) )
        return false;
   
    return true;
  }

  public boolean testForPath( String aStreamPrefix )
  {
    try
    {
      String aSubStream1Path = aStreamPrefix + "SubStream1";
      String aSubStream2Path = aStreamPrefix + "SubStream2";
      String aSubStream3Path = aStreamPrefix + "SubStream3";
      String aSubStream4Path = aStreamPrefix + "SubStream4";

      String sTempFileURL = m_aTestHelper.CreateTempFile( m_xMSF );
      if ( sTempFileURL == null || sTempFileURL == "" )
      {
        m_aTestHelper.Error( "No valid temporary file was created!" );
        return false;
      }
 
      // create temporary storage based on a previously created temporary file
      Object pArgs[] = new Object[2];
      pArgs[0] = (Object) sTempFileURL;
      pArgs[1] = new Integer( ElementModes.WRITE );

      Object oTempFileStorage = m_xStorageFactory.createInstanceWithArguments( pArgs );
      XStorage xTempFileStorage = (XStorage)UnoRuntime.queryInterface( XStorage.class, oTempFileStorage );
      if ( xTempFileStorage == null )
      {
        m_aTestHelper.Error( "Can't create storage based on temporary file!" );
        return false;
      }

      // set the global password for the root storage
      XEncryptionProtectedSource xTempStorageEncryption =
        (XEncryptionProtectedSource) UnoRuntime.queryInterface( XEncryptionProtectedSource.class, xTempFileStorage );

      if ( xTempStorageEncryption == null )
      {
        m_aTestHelper.Message( "Optional interface XEncryptionProtectedSource is not implemented, feature can not be tested!" );
        return true;
      }
     
      String sPass1 = "12345";
      String sPass2 = "54321";

      try {
        xTempStorageEncryption.setEncryptionPassword( sPass1 );
      }
      catch( Exception e )
      {
        m_aTestHelper.Error( "Can't set a common encryption key for the storage, exception:" + e );
        return false;
      }


      byte pBytes1[] = { 1, 1, 1, 1, 1 };
      byte pBytes2[] = { 2, 2, 2, 2, 2 };

      // open a new substream hierarchically, set "MediaType" and "Compressed" properties to it, write some bytes
      // and commit
      if ( !m_aTestHelper.WBToSubstrOfEncrH( xTempFileStorage, aSubStream1Path, "MediaType1", true, pBytes1, true, true ) )
        return false;

      // open a new substream hierarchically, set "MediaType" and "Compressed" properties to it, write some bytes
      // and commit
      if ( !m_aTestHelper.WriteBytesToEncrStreamH( xTempFileStorage, aSubStream2Path, "MediaType2", false, pBytes2, sPass2, true ) )
        return false;

      // open a new substream hierarchically, set "MediaType" and "Compressed" properties to it, write some bytes
      // and commit
      if ( !m_aTestHelper.WriteBytesToEncrStreamH( xTempFileStorage, aSubStream3Path, "MediaType3", false, pBytes2, sPass2, true ) )
        return false;

      // open a new substream hierarchically, set "MediaType" and "Compressed" properties to it, write some bytes
      // and dont commit
      if ( !m_aTestHelper.WBToSubstrOfEncrH( xTempFileStorage, aSubStream4Path, "MediaType2", true, pBytes1, true, false ) )
        return false;

 
      // set "MediaType" property for storages and check that "IsRoot" and "OpenMode" properties are set correctly
      if ( !m_aTestHelper.setStorageTypeAndCheckProps( xTempFileStorage,
     
TOP

Related Classes of complex.storages.Test15

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.