1*b1cdbd2cSJim Jagielski/************************************************************** 2*b1cdbd2cSJim Jagielski * 3*b1cdbd2cSJim Jagielski * Licensed to the Apache Software Foundation (ASF) under one 4*b1cdbd2cSJim Jagielski * or more contributor license agreements. See the NOTICE file 5*b1cdbd2cSJim Jagielski * distributed with this work for additional information 6*b1cdbd2cSJim Jagielski * regarding copyright ownership. The ASF licenses this file 7*b1cdbd2cSJim Jagielski * to you under the Apache License, Version 2.0 (the 8*b1cdbd2cSJim Jagielski * "License"); you may not use this file except in compliance 9*b1cdbd2cSJim Jagielski * with the License. You may obtain a copy of the License at 10*b1cdbd2cSJim Jagielski * 11*b1cdbd2cSJim Jagielski * http://www.apache.org/licenses/LICENSE-2.0 12*b1cdbd2cSJim Jagielski * 13*b1cdbd2cSJim Jagielski * Unless required by applicable law or agreed to in writing, 14*b1cdbd2cSJim Jagielski * software distributed under the License is distributed on an 15*b1cdbd2cSJim Jagielski * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*b1cdbd2cSJim Jagielski * KIND, either express or implied. See the License for the 17*b1cdbd2cSJim Jagielski * specific language governing permissions and limitations 18*b1cdbd2cSJim Jagielski * under the License. 19*b1cdbd2cSJim Jagielski * 20*b1cdbd2cSJim Jagielski *************************************************************/ 21*b1cdbd2cSJim Jagielski 22*b1cdbd2cSJim Jagielski 23*b1cdbd2cSJim Jagielski#ifndef __com_sun_star_test_XSimpleTest_idl__ 24*b1cdbd2cSJim Jagielski#define __com_sun_star_test_XSimpleTest_idl__ 25*b1cdbd2cSJim Jagielski 26*b1cdbd2cSJim Jagielski#ifndef __com_sun_star_uno_XInterface_idl__ 27*b1cdbd2cSJim Jagielski#include <com/sun/star/uno/XInterface.idl> 28*b1cdbd2cSJim Jagielski#endif 29*b1cdbd2cSJim Jagielski 30*b1cdbd2cSJim Jagielski#ifndef __com_sun_star_lang_IllegalArgumentException_idl__ 31*b1cdbd2cSJim Jagielski#include <com/sun/star/lang/IllegalArgumentException.idl> 32*b1cdbd2cSJim Jagielski#endif 33*b1cdbd2cSJim Jagielski 34*b1cdbd2cSJim Jagielski 35*b1cdbd2cSJim Jagielski//============================================================================= 36*b1cdbd2cSJim Jagielski 37*b1cdbd2cSJim Jagielskimodule com { module sun { module star { module test { 38*b1cdbd2cSJim Jagielski 39*b1cdbd2cSJim Jagielski//============================================================================= 40*b1cdbd2cSJim Jagielski/** 41*b1cdbd2cSJim Jagielski A simple interface to test a service or interface implementation. 42*b1cdbd2cSJim Jagielski*/ 43*b1cdbd2cSJim Jagielskipublished interface XSimpleTest: com::sun::star::uno::XInterface 44*b1cdbd2cSJim Jagielski{ 45*b1cdbd2cSJim Jagielski //------------------------------------------------------------------------- 46*b1cdbd2cSJim Jagielski /** 47*b1cdbd2cSJim Jagielski Test the object TestObject against the test specified with TestName. This test 48*b1cdbd2cSJim Jagielski does not change the semantic state of the object, so it can be called on a existing 49*b1cdbd2cSJim Jagielski component that will used further on. 50*b1cdbd2cSJim Jagielski Note : This can be a strong test limitation. There are some components, that cannot 51*b1cdbd2cSJim Jagielski perform their full test scenario. 52*b1cdbd2cSJim Jagielski @param TestName the name of the test. Must be an interface, service or implementation name. 53*b1cdbd2cSJim Jagielski Note : The name is only used by the test component to distinguish 54*b1cdbd2cSJim Jagielski between test scenarios. 55*b1cdbd2cSJim Jagielski @param TestObject The instance to be tested. 56*b1cdbd2cSJim Jagielski 57*b1cdbd2cSJim Jagielski @throws IllegalArgumentException 58*b1cdbd2cSJim Jagielski if the test does not support TestName or TestObject is null. 59*b1cdbd2cSJim Jagielski */ 60*b1cdbd2cSJim Jagielski void testInvariant( [in] string TestName, 61*b1cdbd2cSJim Jagielski [in] com::sun::star::uno::XInterface TestObject ) 62*b1cdbd2cSJim Jagielski raises( com::sun::star::lang::IllegalArgumentException ); 63*b1cdbd2cSJim Jagielski 64*b1cdbd2cSJim Jagielski //------------------------------------------------------------------------- 65*b1cdbd2cSJim Jagielski /** 66*b1cdbd2cSJim Jagielski Test the object TestObject against the test specified with TestName. This test 67*b1cdbd2cSJim Jagielski changes the state of the object. The object may be useless afterwards. 68*b1cdbd2cSJim Jagielski (e.g. a closed XOutputStream). The method in general may be called multipe times with a new 69*b1cdbd2cSJim Jagielski test object instance. 70*b1cdbd2cSJim Jagielski Note : These tests should include the testInvariant test. 71*b1cdbd2cSJim Jagielski Note : Each test scenario should be independent of each other, so even if a scenario 72*b1cdbd2cSJim Jagielski didn't pass the test, the other test can still be performed. The error messages 73*b1cdbd2cSJim Jagielski are cumulative. 74*b1cdbd2cSJim Jagielski 75*b1cdbd2cSJim Jagielski @param TestName The name of the test. Must be an interface, service or implementation name. 76*b1cdbd2cSJim Jagielski Note : The name is only used by the test component to distinguish 77*b1cdbd2cSJim Jagielski between test scenarios. 78*b1cdbd2cSJim Jagielski @param TestObject The instance to be tested. 79*b1cdbd2cSJim Jagielski @param hTestHandle Internal test handle. Handle for first test is always 0. 80*b1cdbd2cSJim Jagielski Handle of next test is returned by the method. 81*b1cdbd2cSJim Jagielski @return Handle of the next test. -1 if this was the last test. 82*b1cdbd2cSJim Jagielski 83*b1cdbd2cSJim Jagielski @throws IllegalArgumentException 84*b1cdbd2cSJim Jagielski if the test does not support TestName or 85*b1cdbd2cSJim Jagielski TestObject is null. 86*b1cdbd2cSJim Jagielski */ 87*b1cdbd2cSJim Jagielski long test( [in] string TestName, 88*b1cdbd2cSJim Jagielski [in] com::sun::star::uno::XInterface TestObject, 89*b1cdbd2cSJim Jagielski [in] long hTestHandle ) 90*b1cdbd2cSJim Jagielski raises( com::sun::star::lang::IllegalArgumentException ); 91*b1cdbd2cSJim Jagielski 92*b1cdbd2cSJim Jagielski //------------------------------------------------------------------------- 93*b1cdbd2cSJim Jagielski /**States if one of the last test has failed. This is cumulative. 94*b1cdbd2cSJim Jagielski @return true if all test have been passed succesfully. false if an error has occured. 95*b1cdbd2cSJim Jagielski 96*b1cdbd2cSJim Jagielski */ 97*b1cdbd2cSJim Jagielski boolean testPassed(); 98*b1cdbd2cSJim Jagielski 99*b1cdbd2cSJim Jagielski //------------------------------------------------------------------------- 100*b1cdbd2cSJim Jagielski // DOCUMENTATION MISSING FOR XSimpleTest::getErrors 101*b1cdbd2cSJim Jagielski sequence<string> getErrors(); 102*b1cdbd2cSJim Jagielski 103*b1cdbd2cSJim Jagielski //------------------------------------------------------------------------- 104*b1cdbd2cSJim Jagielski // DOCUMENTATION MISSING FOR XSimpleTest::getErrorExceptions 105*b1cdbd2cSJim Jagielski sequence<any> getErrorExceptions(); 106*b1cdbd2cSJim Jagielski 107*b1cdbd2cSJim Jagielski //------------------------------------------------------------------------- 108*b1cdbd2cSJim Jagielski // DOCUMENTATION MISSING FOR XSimpleTest::getWarnings 109*b1cdbd2cSJim Jagielski sequence<string> getWarnings(); 110*b1cdbd2cSJim Jagielski 111*b1cdbd2cSJim Jagielski}; 112*b1cdbd2cSJim Jagielski 113*b1cdbd2cSJim Jagielski//============================================================================= 114*b1cdbd2cSJim Jagielski 115*b1cdbd2cSJim Jagielski}; }; }; }; 116*b1cdbd2cSJim Jagielski 117*b1cdbd2cSJim Jagielski#endif 118