/*
* 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 .
*/
package ifc.io;
import lib.MultiMethodTest;
import lib.Status;
import com.sun.star.io.XInputStream;
import com.sun.star.io.XOutputStream;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XInterface;
/**
* Testing com.sun.star.io.XInputStream
* interface methods:
*
readBytes()
readSomeBytes()
skipBytes()
available()
closeInput()
* This test needs the following object relations : *
'StreamWriter'
:
* object that supports interface XOutputStream
;
* a stream to write data to'ByteData'
(of type byte []
):
* data to write to the stream* @see com.sun.star.io.XInputStream */ public class _XInputStream extends MultiMethodTest { public XInputStream oObj = null; public XOutputStream oStream = null; byte[] bytes = null; int bytesReady = 0 ; /** * Before the test, the stream writer and the data are extracted from * the object relations and the data is written to the stream. */ @Override public void before() { XInterface x = (XInterface)tEnv.getObjRelation("StreamWriter"); oStream = UnoRuntime.queryInterface( XOutputStream.class, x) ; bytes = (byte[])tEnv.getObjRelation("ByteData"); try { oStream.writeBytes(bytes); } catch(com.sun.star.io.NotConnectedException e) {} catch(com.sun.star.io.BufferSizeExceededException e) {} catch(com.sun.star.io.IOException e) {} } /** * After the test, the stream writer is closed and the * environment is disposed. */ @Override public void after() { try { oStream.flush(); oStream.closeOutput(); } catch(com.sun.star.io.NotConnectedException e) {} catch(com.sun.star.io.BufferSizeExceededException e) {} catch(com.sun.star.io.IOException e) {} this.disposeEnvironment(); } /** * Test calls the method and stores number of available bytes.
* Has OK status if the method successfully returns * and no exceptions were thrown.
*/ public void _available() { boolean result = true ; try { bytesReady = oObj.available() ; log.println("Bytes available :" + bytesReady) ; } catch (com.sun.star.io.IOException e){ e.printStackTrace(log) ; result = false ; } tRes.tested("available()", result) ; } /** * Test reads one byte from stream. If no bytes available * then test of method is skipped.
* Has OK status if returned value equal to number of read bytes, * no exceptions were thrown and read data is not null.
* The following method tests are to be completed successfully before : *
available()
: to have available number
* of bytes in stream * Has OK status if returned value equal to number of read bytes, * no exceptions were thrown and read data is not null.
* The following method tests are to be completed successfully before : *
available()
: to have available number
* of bytes in stream * Has OK status if the method successfully returns * and no exceptions were thrown.
* The following method tests are to be completed successfully before : *
available()
: to have available number
* of bytes in stream * Has OK status if the method successfully returns * and no exceptions were thrown.
* The following method tests are to be executed before : *
available()
readBytes()
readSomeBytes()
skipBytes()