os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/UnitTestTest/UnitTestStateAccessor.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// The definition of the accessor class upon the CUnitTest
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __UNITTESTSTATEACCESSOR_H__
sl@0
    19
#define __UNITTESTSTATEACCESSOR_H__
sl@0
    20
sl@0
    21
#include <e32base.h>
sl@0
    22
#include <f32file.h>
sl@0
    23
#include <s32stor.h>
sl@0
    24
#include <s32file.h>
sl@0
    25
sl@0
    26
#include "TestUtilities.h"
sl@0
    27
#include <ecom/test_bed/testbeddefinitions.h>
sl@0
    28
#include "StateAccessor.h"
sl@0
    29
#include <ecom/test_bed/unittest.h>
sl@0
    30
sl@0
    31
sl@0
    32
class CUnitTestTestDerivation : public CUnitTest
sl@0
    33
	{
sl@0
    34
public:
sl@0
    35
	inline CUnitTestTestDerivation(const TDesC& aName, CDataLogger& aDataLogger, MUnitTestObserver& aUnitTestObserver);
sl@0
    36
sl@0
    37
	inline void ConstructL();
sl@0
    38
	};
sl@0
    39
sl@0
    40
// ______________________________________________________________________________
sl@0
    41
//
sl@0
    42
/**
sl@0
    43
	@internalComponent
sl@0
    44
	
sl@0
    45
	Comments : State accessor for the CUnitTest object under test.
sl@0
    46
 */
sl@0
    47
class TUnitTest_StateAccessor : public MStateAccessor
sl@0
    48
	{
sl@0
    49
public:
sl@0
    50
	/**
sl@0
    51
		@fn				InvariantTest(TAny* aTestObject)
sl@0
    52
		Intended Usage	: Checks for Incariant violation by the CUnitTest class.
sl@0
    53
		@since			7.0
sl@0
    54
		@param			TAny* A pointer to the object under test.
sl@0
    55
		@return			TInt KErrNone if the invariants were valid, error code otherwise.
sl@0
    56
		@pre 			TUnitTest_StateAccessor is fully constructed.
sl@0
    57
		@post			The class under test is set to the state specified.
sl@0
    58
	 */
sl@0
    59
	inline TInt InvariantTest(TAny* aTestObject);
sl@0
    60
sl@0
    61
	/**
sl@0
    62
		@fn				Internalize(TAny* aTestObject)
sl@0
    63
		Intended Usage	: Implemented by the developer to set the state of the object under test.
sl@0
    64
		@since			7.0
sl@0
    65
		@param			aTestObject The object to be tested
sl@0
    66
		@return			KErrNone if the internalize was successful.
sl@0
    67
		@return			One of the EPOC standard error codes indicating the reason
sl@0
    68
						for the failure	to load the object state.
sl@0
    69
		@pre 			TUnitTest_StateAccessor is fully constructed, and
sl@0
    70
						valid test object must be passed in.
sl@0
    71
		@post			The class under test is set to the state specified
sl@0
    72
	 */
sl@0
    73
	inline virtual TInt Internalize(TAny* aTestObject);
sl@0
    74
sl@0
    75
	/**
sl@0
    76
		@fn				Externalize(TAny* aTestObject)
sl@0
    77
		Intended Usage	: Implemented by the developer to persist the state of the object under test.
sl@0
    78
		@since			7.0
sl@0
    79
		@param			aTestObject The object to be tested
sl@0
    80
		@return			KErrNone if the internalize was successful.
sl@0
    81
		@return			One of the EPOC standard error codes indicating the reason
sl@0
    82
						for the failure	to externalize the object.
sl@0
    83
		@pre 			TUnitTest_StateAccessor is fully constructed, and
sl@0
    84
						valid test object must be passed in.
sl@0
    85
		@post			Returns an error code dependant on the result of the test
sl@0
    86
	 */
sl@0
    87
	inline virtual TInt Externalize(TAny* aTestObject);
sl@0
    88
sl@0
    89
	/**
sl@0
    90
		@fn				InternalizeL(RFileReadStream& aStream, CUnitTest* aUnitTest)
sl@0
    91
		Intended Usage	: Implemented by the developer to set the state of the object under test.
sl@0
    92
		Error Condition	: Leaves with an error code.
sl@0
    93
		@since			7.0
sl@0
    94
		@param			aStream The filestream to read from .
sl@0
    95
		@param			aUnitTest A pointer to the CUnitTest object under test.
sl@0
    96
		@return			None.
sl@0
    97
		@pre 			TUnitTest_StateAccessor is fully constructed.
sl@0
    98
		@post			The class under test is set to the state specified.
sl@0
    99
	 */
sl@0
   100
		inline void InternalizeL(RFileReadStream& aStream, CUnitTest* aUnitTest);
sl@0
   101
sl@0
   102
	/**
sl@0
   103
		@fn				ExternalizeL(RFileWriteStream& aStream, CUnitTest* aUnitTest)
sl@0
   104
		Intended Usage	: Implemented by the developer to persist the state of the object under test.
sl@0
   105
		Error Condition	: Leaves with an error code.
sl@0
   106
		@since			7.0
sl@0
   107
		@param			aStream The filestream to persist into.
sl@0
   108
		@param			aUnitTest A pointer to the CUnitTest object under test.
sl@0
   109
		@return			None.
sl@0
   110
		@pre 			TUnitTest_StateAccessor is fully constructed.
sl@0
   111
		@post			No change to the class under test, its internal state.
sl@0
   112
						is persisted.
sl@0
   113
	*/
sl@0
   114
	inline void ExternalizeL(RFileWriteStream& aStream, CUnitTest* aUnitTest);
sl@0
   115
sl@0
   116
	inline CUnitTestTestDerivation* CreateUnitTest(CUnitTest& aUnitTest, const TDesC& aName, CDataLogger& aDataLogger, MUnitTestObserver& aUnitTestObserver);
sl@0
   117
sl@0
   118
	inline void RunL(CUnitTest& aUnitTest);
sl@0
   119
sl@0
   120
	inline void AddTransitionL(CUnitTest& aUnitTest, CTransition* aTransition);
sl@0
   121
sl@0
   122
	inline void AddBlockingTransitionL(CUnitTest& aUnitTest, CTransition* aTransition);
sl@0
   123
sl@0
   124
	inline void AddLeaveErrorCodeL(CUnitTest& aUnitTest, TInt& aLeaveErrorCode);
sl@0
   125
sl@0
   126
private:
sl@0
   127
	/**
sl@0
   128
		@fn				InternalizeL(CUnitTest* aUnitTest)
sl@0
   129
		Intended Usage	: Implemented by the developer to set the state of the object under test.
sl@0
   130
		Error Condition	: Leaves with an error code.
sl@0
   131
		@since			7.0
sl@0
   132
		@param			TAny* A pointer to the object under test.
sl@0
   133
		@return			None.
sl@0
   134
		@pre 			TUnitTest_StateAccessor is fully constructed.
sl@0
   135
		@post			The class under test is set to the state specified.
sl@0
   136
	*/
sl@0
   137
	inline void InternalizeL(CUnitTest* aUnitTest);
sl@0
   138
sl@0
   139
	/**
sl@0
   140
		@fn				ExternalizeL(CUnitTest* aUnitTest)
sl@0
   141
		Intended Usage	: Implemented by the developer to persist the state of the object under test.
sl@0
   142
		Error Condition	: Leaves with an error code.
sl@0
   143
		@since			7.0
sl@0
   144
		@param			TAny* A pointer to the object under test.
sl@0
   145
		@return			None.
sl@0
   146
		@pre 			TUnitTest_StateAccessor is fully constructed.
sl@0
   147
		@post			No change to the class under test, its internal state.
sl@0
   148
						is persisted.
sl@0
   149
	*/
sl@0
   150
	inline void ExternalizeL(CUnitTest* aUnitTest);
sl@0
   151
	};	// TUnitTest_StateAccessor
sl@0
   152
sl@0
   153
#include "UnitTestStateAccessor.inl"
sl@0
   154
sl@0
   155
#endif // __UNITTESTSTATEACCESSOR_H__
sl@0
   156