os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentInfoTest/ComponentInfoStateAccessor.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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 CComponentInfo
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __COMPONENTINFOSTATEACCESSOR_H__
sl@0
    19
#define __COMPONENTINFOSTATEACCESSOR_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 "ComponentInfo.h"
sl@0
    30
sl@0
    31
// ______________________________________________________________________________
sl@0
    32
//
sl@0
    33
/**
sl@0
    34
	@internalComponent
sl@0
    35
 
sl@0
    36
	Comments : State accessor for the CComponentInfo object under test.
sl@0
    37
 */
sl@0
    38
class TComponentInfo_StateAccessor : public MStateAccessor
sl@0
    39
	{
sl@0
    40
public:
sl@0
    41
	/**
sl@0
    42
		@fn				InvariantTest(TAny* aTestObject)
sl@0
    43
		Intended Usage	: To check CComponentInfo for Invariant violation.	
sl@0
    44
		@since			7.0
sl@0
    45
		@param			aTestObject A pointer to the object under test.
sl@0
    46
		@return			KErrNone if the invariants were valid, error code otherwise.
sl@0
    47
		@pre 			TComponentInfo_StateAccessor is fully constructed.
sl@0
    48
		@post			The class under test is set to the state specified.
sl@0
    49
	 */
sl@0
    50
	inline TInt InvariantTest(TAny* aTestObject);
sl@0
    51
sl@0
    52
	/**
sl@0
    53
		@fn				Internalize(TAny* aTestObject)
sl@0
    54
		Intended Usage	: Implemented by the developer to set the state of the object under test.
sl@0
    55
		@since			7.0
sl@0
    56
		@param			aTestObject The object to be tested
sl@0
    57
		@return			KErrNone if the internalize was successful.
sl@0
    58
		@return			One of the EPOC standard error codes indicating the reason
sl@0
    59
						for the failure	to load the object state.
sl@0
    60
		@pre 			TComponentInfo_StateAccessor is fully constructed, and
sl@0
    61
						valid test object must be passed in.
sl@0
    62
		@post			The class under test is set to the state specified
sl@0
    63
	 */
sl@0
    64
	inline virtual TInt Internalize(TAny* aTestObject);
sl@0
    65
sl@0
    66
	/**
sl@0
    67
		@fn				Externalize(TAny* aTestObject)
sl@0
    68
		Intended Usage	: Implemented by the developer to persist the state of the object under test.
sl@0
    69
		@since			7.0
sl@0
    70
		@param			aTestObject The object to be tested
sl@0
    71
		@return			KErrNone if the internalize was successful.
sl@0
    72
		@return			One of the EPOC standard error codes indicating the reason
sl@0
    73
						for the failure	to externalize the object.
sl@0
    74
		@pre 			TComponentInfo_StateAccessor is fully constructed, and
sl@0
    75
						valid test object must be passed in.
sl@0
    76
		@post			Returns an error code dependant on the result of the test
sl@0
    77
	 */
sl@0
    78
	inline virtual TInt Externalize(TAny* aTestObject);
sl@0
    79
sl@0
    80
	/**
sl@0
    81
		@fn				InternalizeL(RFileReadStream& aStream, CComponentInfo* aComponentInfo)
sl@0
    82
		Intended Usage	: Implemented by the developer to set the state of the object under test.
sl@0
    83
		Error Condition	: Leaves with an error code.
sl@0
    84
		@leave  		KErrNoMemory
sl@0
    85
		@leave  		@see RFileReadStream
sl@0
    86
		@since			7.0
sl@0
    87
		@param			aStream The filestream to read from .
sl@0
    88
		@param			aComponentInfo A pointer to the CComponentInfo object under test.
sl@0
    89
		@return			None.
sl@0
    90
		@pre 			TComponentInfo_StateAccessor is fully constructed.
sl@0
    91
		@post			The class under test is set to the state specified.
sl@0
    92
	 */
sl@0
    93
		inline void InternalizeL(RFileReadStream& aStream, CComponentInfo* aComponentInfo);
sl@0
    94
sl@0
    95
	/**
sl@0
    96
		@fn				ExternalizeL(RFileWriteStream& aStream, CComponentInfo* aComponentInfo)
sl@0
    97
		Intended Usage	: Implemented by the developer to persist the state of the object under test.
sl@0
    98
		Error Condition	: Leaves with an error code.
sl@0
    99
		@leave  		KErrNoMemory
sl@0
   100
		@leave  		@see RFileWriteStream
sl@0
   101
		@since			7.0
sl@0
   102
		@param			aStream The filestream to persist into.
sl@0
   103
		@param			aComponentInfo A pointer to the CComponentInfo object under test.
sl@0
   104
		@return			None.
sl@0
   105
		@pre 			TComponentInfo_StateAccessor is fully constructed.
sl@0
   106
		@post			No change to the class under test, its internal state.
sl@0
   107
						is persisted.
sl@0
   108
	*/
sl@0
   109
	inline void ExternalizeL(RFileWriteStream& aStream, CComponentInfo* aComponentInfo);
sl@0
   110
sl@0
   111
private:
sl@0
   112
	/**
sl@0
   113
		@fn				InternalizeL(CComponentInfo* aComponentInfo)
sl@0
   114
		Intended Usage	: Implemented by the developer to set the state of the object under test.
sl@0
   115
		Error Condition	: Leaves with an error code.
sl@0
   116
		@leave  		KErrNoMemory
sl@0
   117
		@leave  		@see RFileReadStream
sl@0
   118
		@since			7.0
sl@0
   119
		@param			TAny* A pointer to the object under test.
sl@0
   120
		@return			None.
sl@0
   121
		@pre 			TComponentInfo_StateAccessor is fully constructed.
sl@0
   122
		@post			The class under test is set to the state specified.
sl@0
   123
	*/
sl@0
   124
	inline void InternalizeL(CComponentInfo* aComponentInfo);
sl@0
   125
sl@0
   126
	/**
sl@0
   127
		@fn				ExternalizeL(CComponentInfo* aComponentInfo)
sl@0
   128
		Intended Usage	: Implemented by the developer to persist the state of the object under test.
sl@0
   129
		Error Condition	: Leaves with an error code.
sl@0
   130
		@leave  		KErrNoMemory
sl@0
   131
		@leave  		@see RFileWriteStream
sl@0
   132
		@since			7.0
sl@0
   133
		@param			TAny* A pointer to the object under test.
sl@0
   134
		@return			None.
sl@0
   135
		@pre 			TComponentInfo_StateAccessor is fully constructed.
sl@0
   136
		@post			No change to the class under test, its internal state.
sl@0
   137
						is persisted.
sl@0
   138
	*/
sl@0
   139
	inline void ExternalizeL(CComponentInfo* aComponentInfo);
sl@0
   140
	};	// TComponentInfo_StateAccessor
sl@0
   141
sl@0
   142
#include "ComponentInfoStateAccessor.inl"
sl@0
   143
sl@0
   144
#endif // __COMPONENTINFOSTATEACCESSOR_H__
sl@0
   145