os/ossrv/lowlevellibsandfws/pluginfw/Framework/ResolverTest/ResolverUnitTests.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1997-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 CResolver unit test classes.
    15 // 
    16 //
    17 
    18 #ifndef __RESOLVERUNITTESTS_H__
    19 #define __RESOLVERUNITTESTS_H__
    20 
    21 #include "ResolverTransitions.h"
    22 #include "ResolverStateAccessor.h"
    23 #include "ResolverTransitionValidation.h"
    24 
    25 // ______________________________________________________________________________
    26 //
    27 /**
    28 	@internalComponent
    29 
    30 	Comments : Unit Test for CreateAndDestroy on CDefaultResolver, the class under test.
    31  */
    32 class CDefaultResolver_CreateAndDestroy_UnitTest : public CUnitTest
    33 	{
    34 public:
    35 	/**
    36 		@fn				NewL(CDataLogger& aDataLogger,
    37 							MUnitTestObserver& aObserver)
    38 		Intended Usage	: Standard two-phase construction which leaves nothing on the
    39 						cleanup stack.
    40 		Error Condition	: Leaves with the error code.
    41 		@leave  		KErrNoMemory
    42 		@since			7.0
    43 		@param			aDataLogger The output logging object.
    44 		@param			aObserver The observer of this UnitTest.
    45 		@return			CDefaultResolver_CreateAndDestroy_UnitTest* The constructed object.
    46 		@pre 			None.
    47 		@post			CDefaultResolver_CreateAndDestroy_UnitTest is fully constructed, and initialised.
    48 	 */
    49 	static CDefaultResolver_CreateAndDestroy_UnitTest* NewL(CDataLogger& aDataLogger,
    50 											MUnitTestObserver& aObserver);
    51 
    52 	/**
    53 		@fn				RunError(TInt aError)
    54 		Intended Usage	: Intercept the panic caused by a RunL leave,
    55 						to restore the CDefaultResolver_CreateAndDestroy_UnitTest
    56 						object to a sensible state.
    57 						(called by the Active Scheduler immediately before the Panic).
    58 		Error Condition	: @see CUnitTest::RunError().
    59 		@since			7.0
    60 		@return			TInt KErrNone if cleanup successful, otherwise
    61 						@see CUnitTest::RunError()
    62 		@pre 			CDefaultResolver_CreateAndDestroy_UnitTest is fully constructed, and initialised.
    63 		@post			The object has been restored to a sensible state.
    64 	 */
    65 	inline TInt RunError(TInt aError);
    66 
    67 	/**
    68 		@fn				~CDefaultResolver_CreateAndDestroy_UnitTest()
    69 		Intended Usage	: Standard Destructor.
    70 		Error Condition	: None.	
    71 		@since			7.0
    72 		@pre 			CDefaultResolver_CreateAndDestroy_UnitTest is fully constructed.
    73 		@post			CDefaultResolver_CreateAndDestroy_UnitTest is fully destroyed.
    74 	*/
    75 	~CDefaultResolver_CreateAndDestroy_UnitTest();
    76 
    77 /**
    78 	@fn				PrepareUnitTestL()
    79 	Intended Usage	: Called by test framework just before test is run to allow
    80 					any test preparation to take place.
    81 	Error Condition	: 
    82 	@since			7.0
    83 	@pre 			CDefaultResolver_CreateAndDestroy_UnitTest is fully constructed.
    84 	@post			This unit test is ready to run.
    85 */
    86 	void PrepareUnitTestL();
    87 
    88 private:
    89 	/**
    90 		@fn				CDefaultResolver_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
    91 														MUnitTestObserver& aObserver)
    92 		Intended Usage	: Default constructor.
    93 		Error Condition	: None. 
    94 		@since			7.0
    95 		@param			aDataLogger The output logging object.
    96 		@param			aObserver The observer of this UnitTest.
    97 		@param			aStateAccessor WhiteBox state access to the CDefaultResolver class.
    98 		@pre 			None.
    99 		@post			CDefaultResolver_CreateAndDestroy_UnitTest is fully constructed.
   100 	*/
   101 	inline CDefaultResolver_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
   102 											MUnitTestObserver& aObserver);
   103 
   104 	/**
   105 		@fn				void ConstructL()
   106 		Intended Usage	: Second phase of safe two phase construction, 
   107 		to complete the object initialisation.
   108 		Error Condition	: Leaves with an error code.
   109 		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
   110 		@since			7.0
   111 		@return			None 
   112 		@pre 			CDefaultResolver_CreateAndDestroy_UnitTest is fully constructed.
   113 		@post			CDefaultResolver_CreateAndDestroy_UnitTest is fully initialised.
   114 	*/
   115 	void ConstructL();
   116 
   117 	/**
   118 	The context of the Unit Test.
   119 	i.e The CDefaultResolver class tested by this UnitTest's transitions.
   120 	 */
   121 	CDefaultResolver_UnitTestContext* iUTContext;
   122 	TDefaultResolver_StateAccessor*	iStateAccessor;
   123 	// C'tor, d'tor, and method transition validators
   124 	TDefaultResolver_Ctor_TransitionValidator*	iCtorValidator;
   125 	TDefaultResolver_Dtor_TransitionValidator*	iDtorValidator;
   126 	};	// CDefaultResolver_CreateAndDestroy_UnitTest
   127 
   128 // ______________________________________________________________________________
   129 //
   130 /**
   131 	@internalComponent
   132 
   133 	Comments : Unit Test for IdentifyImplementation on CDefaultResolver, the class under test.
   134  */
   135 class CDefaultResolver_IdentifyImplementation_UnitTest : public CUnitTest
   136 	{
   137 public:
   138 	/**
   139 		@fn				NewL(CDataLogger& aDataLogger,
   140 							MUnitTestObserver& aObserver)
   141 		Intended Usage	: Standard two-phase construction which leaves nothing on the
   142 						cleanup stack.
   143 		Error Condition	: Leaves with the error code.
   144 		@leave  		KErrNoMemory
   145 		@since			7.0
   146 		@param			aDataLogger The output logging object.
   147 		@param			aObserver The observer of this UnitTest.
   148 		@return			CDefaultResolver_IdentifyImplementation_UnitTest* The constructed object.
   149 		@pre 			None.
   150 		@post			CDefaultResolver_IdentifyImplementation_UnitTest is fully constructed, and initialised.
   151 	 */
   152 	static CDefaultResolver_IdentifyImplementation_UnitTest* NewL(CDataLogger& aDataLogger,
   153 											MUnitTestObserver& aObserver);
   154 
   155 	/**
   156 		@fn				RunError(TInt aError)
   157 		Intended Usage	: Intercept the panic caused by a RunL leave,
   158 						to restore the CDefaultResolver_IdentifyImplementation_UnitTest
   159 						object to a sensible state.
   160 						(called by the Active Scheduler immediately before the Panic).
   161 		Error Condition	: @see CUnitTest::RunError().
   162 		@since			7.0
   163 		@return			TInt KErrNone if cleanup successful, otherwise
   164 						@see CUnitTest::RunError()
   165 		@pre 			CDefaultResolver_IdentifyImplementation_UnitTest is fully constructed, and initialised.
   166 		@post			The object has been restored to a sensible state.
   167 	 */
   168 	inline TInt RunError(TInt aError);
   169 
   170 	/**
   171 		@fn				~CDefaultResolver_IdentifyImplementation_UnitTest()
   172 		Intended Usage	: Standard Destructor.
   173 		Error Condition	: None.	
   174 		@since			7.0
   175 		@pre 			CDefaultResolver_IdentifyImplementation_UnitTest is fully constructed.
   176 		@post			CDefaultResolver_IdentifyImplementation_UnitTest is fully destroyed.
   177 	*/
   178 	~CDefaultResolver_IdentifyImplementation_UnitTest();
   179 
   180 private:
   181 	/**
   182 		@fn				CDefaultResolver_IdentifyImplementation_UnitTest(CDataLogger& aDataLogger,
   183 														MUnitTestObserver& aObserver)
   184 		Intended Usage	: Default constructor.
   185 		Error Condition	: None. 
   186 		@since			7.0
   187 		@param			aDataLogger The output logging object.
   188 		@param			aObserver The observer of this UnitTest.
   189 		@param			aStateAccessor WhiteBox state access to the CDefaultResolver class.
   190 		@pre 			None.
   191 		@post			CDefaultResolver_IdentifyImplementation_UnitTest is fully constructed.
   192 	*/
   193 	inline CDefaultResolver_IdentifyImplementation_UnitTest(CDataLogger& aDataLogger,
   194 											MUnitTestObserver& aObserver);
   195 
   196 	/**
   197 		@fn				void ConstructL()
   198 		Intended Usage	: Second phase of safe two phase construction, 
   199 		to complete the object initialisation.
   200 		Error Condition	: Leaves with an error code.
   201 		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
   202 		@since			7.0
   203 		@return			None 
   204 		@pre 			CDefaultResolver_IdentifyImplementation_UnitTest is fully constructed.
   205 		@post			CDefaultResolver_IdentifyImplementation_UnitTest is fully initialised.
   206 	*/
   207 	void ConstructL();
   208 
   209 	/**
   210 	The context of the Unit Test.
   211 	i.e The CDefaultResolver class tested by this UnitTest's transitions.
   212 	 */
   213 	CDefaultResolver_UnitTestContext* iUTContext;
   214 	TDefaultResolver_StateAccessor*	iStateAccessor;
   215 	// C'tor, d'tor, and method transition validators
   216 	TDefaultResolver_Ctor_TransitionValidator*		iCtorValidator;
   217 	TDefaultResolver_Default_TransitionValidator*	iDefaultValidator;
   218 	TDefaultResolver_Match_TransitionValidator*		iMatchValidator;
   219 	TDefaultResolver_IdentifyImplementationL_TransitionValidator*	iIdentifyImplementationValidator;
   220 	TDefaultResolver_Dtor_TransitionValidator*		iDtorValidator;
   221 	};	// CDefaultResolver_IdentifyImplementation_UnitTest
   222 
   223 #include "ResolverUnitTests.inl"
   224 
   225 #endif		// __RESOLVERUNITTESTS_H__