os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TransitionTest/TransitionStateAccessor.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // The definition of the accessor class upon the CTransition
    15 // 
    16 //
    17 
    18 #ifndef __TRANSITIONSTATEACCESSOR_H__
    19 #define __TRANSITIONSTATEACCESSOR_H__
    20 
    21 #include <e32base.h>
    22 #include <f32file.h>
    23 #include <s32stor.h>
    24 #include <s32file.h>
    25 
    26 #include "TestUtilities.h"
    27 #include <ecom/test_bed/testbeddefinitions.h>
    28 #include "StateAccessor.h"
    29 #include <ecom/test_bed/transition.h>
    30 
    31 // ______________________________________________________________________________
    32 //
    33 /**
    34 	@internalComponent
    35 
    36 	Comments : State accessor for the CTransition object under test.
    37  */
    38 class TTransition_StateAccessor : public MStateAccessor
    39 	{
    40 public:
    41 	/**
    42 		@fn				InvariantTest(TAny* aTestObject)
    43 		Intended Usage	:	
    44 		@since			7.0
    45 		@param			TAny* A pointer to the object under test.
    46 		@return			TInt KErrNone if the invariants were valid, error code otherwise.
    47 		@pre 			TTransition_StateAccessor is fully constructed.
    48 		@post			The class under test is set to the state specified.
    49 	 */
    50 	inline TInt InvariantTest(TAny* aTestObject);
    51 
    52 	/**
    53 		@fn				Internalize(TAny* aTestObject)
    54 		Intended Usage	: Implemented by the developer to set the state of the object under test.
    55 		@since			7.0
    56 		@param			aTestObject The object to be tested
    57 		@return			KErrNone if the internalize was successful.
    58 		@return			One of the EPOC standard error codes indicating the reason
    59 						for the failure	to load the object state.
    60 		@pre 			TTransition_StateAccessor is fully constructed, and
    61 						valid test object must be passed in.
    62 		@post			The class under test is set to the state specified
    63 	 */
    64 	inline virtual TInt Internalize(TAny* aTestObject);
    65 
    66 	/**
    67 		@fn				Externalize(TAny* aTestObject)
    68 		Intended Usage	: Implemented by the developer to persist the state of the object under test.
    69 		@since			7.0
    70 		@param			aTestObject The object to be tested
    71 		@return			KErrNone if the internalize was successful.
    72 		@return			One of the EPOC standard error codes indicating the reason
    73 						for the failure	to externalize the object.
    74 		@pre 			TTransition_StateAccessor is fully constructed, and
    75 						valid test object must be passed in.
    76 		@post			Returns an error code dependant on the result of the test
    77 	 */
    78 	inline virtual TInt Externalize(TAny* aTestObject);
    79 
    80 	/**
    81 		@fn				IsRepeated(TAny* aTestObject) const
    82 		Intended Usage	: Implemented by the developer to access the iRepeatThis
    83 						flag in the CTransition object under test.
    84 		@since			7.0
    85 		@param			aTestObject The CTransition object to be tested
    86 		@return			ETrue if the flag is set.
    87 		@pre 			TTransition_StateAccessor is fully constructed, and
    88 						a valid test object must be passed in.
    89 	 */
    90 	inline TBool IsRepeated(TAny* aTestObject) const;
    91 
    92 	/**
    93 		@fn				TransitionId(TAny* aTestObject) const
    94 		Intended Usage	: Implemented by the developer to access the iTransitionId
    95 						descriptor in the CTransition object under test.
    96 		@since			7.0
    97 		@param			aTestObject The CTransition object to be tested
    98 		@return			A pointer to the iTransitionId descriptor.
    99 		@pre 			TTransition_StateAccessor is fully constructed, and
   100 						a valid test object must be passed in.
   101 	 */
   102 	inline const TDesC* TransitionId(TAny* aTestObject) const;
   103 
   104 	/**
   105 		@fn				TransitionInfo(TAny* aTestObject) const
   106 		Intended Usage	: Implemented by the developer to access the iTransitionId
   107 						descriptor in the CTransition object under test.
   108 		@since			7.0
   109 		@param			aTestObject The CTransition object to be tested
   110 		@return			A pointer to the iTransitionInfo structure.
   111 		@pre 			TTransition_StateAccessor is fully constructed, and
   112 						a valid test object must be passed in.
   113 	 */
   114 	inline const TTransitionInfo* TransitionInfo(TAny* aTestObject) const;
   115 
   116 	/**
   117 		@fn				BlockingFlag(TAny* aTestObject) const
   118 		Intended Usage	: Implemented by the developer to access the iBlockingTransition
   119 						flag in the CTransition object under test.
   120 		@since			7.0
   121 		@param			aTestObject The CTransition object to be tested
   122 		@return			ETrue if the flag is set.
   123 		@pre 			TTransition_StateAccessor is fully constructed, and
   124 						a valid test object must be passed in.
   125 	 */
   126 	inline TBool BlockingFlag(TAny* aTestObject) const;
   127 
   128 	/**
   129 		@fn				BlockingFlag(TAny* aTestObject) const
   130 		Intended Usage	: Implemented by the developer to access the iLeaveError
   131 						flag in the CTransition object under test.
   132 		@since			7.0
   133 		@param			aTestObject The CTransition object to be tested
   134 		@return			The current value of the error code.
   135 		@pre 			TTransition_StateAccessor is fully constructed, and
   136 						a valid test object must be passed in.
   137 	 */
   138 	inline TInt ErrorCode(TAny* aTestObject) const;
   139 
   140 	/**
   141 		@fn				BlockingFlag(TAny* aTestObject) const
   142 		Intended Usage	: Implemented by the developer to access the iStatus
   143 						structure in the CTransition object under test.
   144 		@since			7.0
   145 		@param			aTestObject The CTransition object to be tested
   146 		@return			The contents of iStatus.
   147 		@pre 			TTransition_StateAccessor is fully constructed, and
   148 						a valid test object must be passed in.
   149 	 */
   150 	inline TRequestStatus Status(const TAny* aTestObject) const;
   151 
   152 	/**
   153 		@fn				InternalizeL(RFileReadStream& aStream, CTransition* aTransition)
   154 		Intended Usage	: Implemented by the developer to set the state of the object under test.
   155 		Error Condition	: Leaves with an error code.
   156 		@since			7.0
   157 		@param			aStream The filestream to read from .
   158 		@param			aTransition A pointer to the CTransition object under test.
   159 		@return			None.
   160 		@pre 			TTransition_StateAccessor is fully constructed.
   161 		@post			The class under test is set to the state specified.
   162 	 */
   163 		inline void InternalizeL(RFileReadStream& aStream, CTransition* aTransition);
   164 
   165 	/**
   166 		@fn				ExternalizeL(RFileWriteStream& aStream, CTransition* aTransition)
   167 		Intended Usage	: Implemented by the developer to persist the state of the object under test.
   168 		Error Condition	: Leaves with an error code.
   169 		@since			7.0
   170 		@param			aStream The filestream to persist into.
   171 		@param			aTransition A pointer to the CTransition object under test.
   172 		@return			None.
   173 		@pre 			TTransition_StateAccessor is fully constructed.
   174 		@post			No change to the class under test, its internal state.
   175 						is persisted.
   176 	*/
   177 	inline void ExternalizeL(RFileWriteStream& aStream, CTransition* aTransition);
   178 
   179 
   180 private:
   181 	/**
   182 		@fn				InternalizeL(CTransition* aTransition)
   183 		Intended Usage	: Implemented by the developer to set the state of the object under test.
   184 		Error Condition	: Leaves with an error code.
   185 		@since			7.0
   186 		@param			TAny* A pointer to the object under test.
   187 		@return			None.
   188 		@pre 			TTransition_StateAccessor is fully constructed.
   189 		@post			The class under test is set to the state specified.
   190 	*/
   191 	inline void InternalizeL(CTransition* aTransition);
   192 
   193 	/**
   194 		@fn				ExternalizeL(CTransition* aTransition)
   195 		Intended Usage	: Implemented by the developer to persist the state of the object under test.
   196 		Error Condition	: Leaves with an error code.
   197 		@since			7.0
   198 		@param			TAny* A pointer to the object under test.
   199 		@return			None.
   200 		@pre 			TTransition_StateAccessor is fully constructed.
   201 		@post			No change to the class under test, its internal state.
   202 						is persisted.
   203 	*/
   204 	inline void ExternalizeL(CTransition* aTransition);
   205 	};	// TTransition_StateAccessor
   206 
   207 #include "TransitionStateAccessor.inl"
   208 
   209 #endif // __TRANSITIONSTATEACCESSOR_H__
   210