/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
publicboolean test()
{ try
{
String sTempFileURL = m_aTestHelper.CreateTempFile( m_xMSF ); if ( sTempFileURL == null || sTempFileURL.equals("") )
{
m_aTestHelper.Error( "No valid temporary file was created!" ); returnfalse;
}
// create temporary storage based on a previously created temporary file
Object pArgs[] = new Object[2];
pArgs[0] = sTempFileURL;
pArgs[1] = Integer.valueOf( ElementModes.WRITE );
// open a new substorage
XStorage xTempSubStorage = m_aTestHelper.openSubStorage( xTempFileStorage, "SubStorage1",
ElementModes.WRITE ); if ( xTempSubStorage == null )
{
m_aTestHelper.Error( "Can't create substorage!" ); returnfalse;
}
// open a new substorage
XStorage xSubSubStorage = m_aTestHelper.openSubStorage( xTempSubStorage, "SubSubStorage1",
ElementModes.WRITE ); if ( xSubSubStorage == null )
{
m_aTestHelper.Error( "Can't create substorage!" ); returnfalse;
}
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.WriteBytesToSubstream( xSubSubStorage, "SubStream1", "MediaType1", true, pBytes1 ) ) returnfalse;
byte pBytes2[] = { 2, 2, 2, 2, 2 };
// open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes if ( !m_aTestHelper.WriteBytesToSubstream( xSubSubStorage, "SubStream2", "MediaType2", false, pBytes2 ) ) returnfalse;
// set "MediaType" property for storages and check that "IsRoot" and "OpenMode" properties are set correctly if ( !m_aTestHelper.setStorageTypeAndCheckProps( xTempFileStorage, "MediaType3", true,
ElementModes.WRITE ) ) returnfalse;
// set "MediaType" property for storages and check that "IsRoot" and "OpenMode" properties are set correctly if ( !m_aTestHelper.setStorageTypeAndCheckProps( xTempSubStorage, "MediaType4", false,
ElementModes.WRITE ) ) returnfalse;
// set "MediaType" property for storages and check that "IsRoot" and "OpenMode" properties are set correctly if ( !m_aTestHelper.setStorageTypeAndCheckProps( xSubSubStorage, "MediaType5", false,
ElementModes.WRITE ) ) returnfalse;
// commit all the storages if ( !m_aTestHelper.commitStorage( xSubSubStorage ) ) returnfalse;
if ( !m_aTestHelper.commitStorage( xTempSubStorage ) ) returnfalse;
if ( !m_aTestHelper.commitStorage( xTempFileStorage ) ) returnfalse;
// try to open an opened substorage, open call must fail if ( !m_aTestHelper.cantOpenStorage( xTempFileStorage, "SubStorage1" ) ) returnfalse;
// it should be possible to have more than one copy of stream for reading
XStream xSubStream2clone = m_aTestHelper.OpenStream( xSubSubStorage, "SubStream2",
ElementModes.READ | ElementModes.NOCREATE );
// so now the first stream can not be open neither for reading nor for writing if ( !m_aTestHelper.cantOpenStream( xSubSubStorage, "SubStream1", ElementModes.WRITE )
|| !m_aTestHelper.cantOpenStream( xSubSubStorage, "SubStream1", ElementModes.READ ) ) returnfalse;
// the second stream can not be open for writing if ( !m_aTestHelper.cantOpenStream( xSubSubStorage, "SubStream2", ElementModes.WRITE ) ) returnfalse;
// dispose xTestSubStorage, all the subtree must be disposed if ( !m_aTestHelper.disposeStorage( xTempSubStorage ) ) returnfalse;
// check that subtree was disposed correctly try
{
xSubSubStorage.isStreamElement( "SubStream1" );
m_aTestHelper.Error( "Substorage was not disposed!" ); returnfalse;
} catch ( com.sun.star.lang.DisposedException de )
{} catch ( Exception e )
{
m_aTestHelper.Error( "Wrong exception is thrown by disposed storage: " + e ); returnfalse;
}
try
{
xSubStream1.getInputStream();
m_aTestHelper.Error( "Writeable substream was not disposed!" ); returnfalse;
} catch ( com.sun.star.lang.DisposedException de )
{} catch ( Exception e )
{
m_aTestHelper.Error( "Wrong exception is thrown by disposed stream: " + e ); returnfalse;
}
try
{
xSubStream2.getInputStream();
m_aTestHelper.Error( "Readonly substream was not disposed!" ); returnfalse;
} catch ( com.sun.star.lang.DisposedException de )
{} catch ( Exception e )
{
m_aTestHelper.Error( "Wrong exception is thrown by disposed stream: " + e ); returnfalse;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.