Package complex.storages

Source Code of complex.storages.Test18

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 Test18 implements StorageTest {

  XMultiServiceFactory m_xMSF;
  XSingleServiceFactory m_xStorageFactory;
  TestHelper m_aTestHelper;

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

    public boolean test()
  {
    try
    {
            // test the default value of Compressed property
      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 arbitrary medium
      // after such a storage is closed it is lost
      Object oTempStorage = m_xStorageFactory.createInstance();
      XStorage xTempStorage = (XStorage) UnoRuntime.queryInterface( XStorage.class, oTempStorage );
      if ( xTempStorage == null )
      {
        m_aTestHelper.Error( "Can't create temporary storage representation!" );
        return false;
      }

      // open a new substorage
      XStorage xTempSubStorage = m_aTestHelper.openSubStorage( xTempStorage,
                                    "SubStorage1",
                                    ElementModes.WRITE );
      if ( xTempSubStorage == null )
      {
        m_aTestHelper.Error( "Can't create substorage!" );
        return false;
      }
     
      byte pBytes1[] = { 1, 1, 1, 1, 1 };

      // open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes
      if ( !m_aTestHelper.WriteBytesToSubstreamDefaultCompressed( xTempSubStorage, "SubStream1", "image/jpeg", pBytes1 ) )
        return false;

      // open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes
      if ( !m_aTestHelper.WriteBytesToSubstreamDefaultCompressed( xTempSubStorage, "SubStream2", "image/png", pBytes1 ) )
        return false;
 
      // open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes
      if ( !m_aTestHelper.WriteBytesToSubstreamDefaultCompressed( xTempSubStorage, "SubStream3", "image/gif", pBytes1 ) )
        return false;

      // open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes
      if ( !m_aTestHelper.WriteBytesToSubstreamDefaultCompressed( xTempSubStorage, "SubStream4", "MediaType1", pBytes1 ) )
        return false;

      // set "MediaType" property for storages and check that "IsRoot" and "OpenMode" properties are set correctly
      if ( !m_aTestHelper.setStorageTypeAndCheckProps( xTempStorage,
                              "MediaType3",
                              true,
                              ElementModes.WRITE ) )
        return false;

      // set "MediaType" property for storages and check that "IsRoot" and "OpenMode" properties are set correctly
      if ( !m_aTestHelper.setStorageTypeAndCheckProps( xTempSubStorage,
                              "MediaType4",
                              false,
                              ElementModes.WRITE ) )
        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;
      }

      // copy xTempStorage to xTempFileStorage
      // xTempFileStorage will be automatically commited
      if ( !m_aTestHelper.copyStorage( xTempStorage, xTempFileStorage ) )
        return false;

      // dispose used storag
TOP

Related Classes of complex.storages.Test18

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.