os/ossrv/lowlevellibsandfws/pluginfw/Framework/SuicideTests/SuicideUnitTests.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 // This file contains the definition of the 
    15 // class CSuicideInterfaceUnitTest	
    16 // 
    17 //
    18 
    19 #ifndef __SUICIDEUNITTEST_H__
    20 #define __SUICIDEUNITTEST_H__
    21 
    22 #include <e32base.h>
    23 
    24 #include <test_bed/unittest.h>
    25 #include "SuicideStateAccessors.h"
    26 #include "SuicideTransitions.h"
    27 #include "SuicideTransitionValidation.h"
    28 
    29 // ______________________________________________________________________________
    30 //
    31 /**
    32 	@internalComponent
    33 
    34 	Comments : UnitTest CreateAndDestroy on the CExampleInterface test class.
    35  */
    36 class CSuicideInterfaceCreateAndDestroyUnitTest : public CUnitTest
    37 	{
    38 public:
    39 	/**
    40 		@fn				NewL(CDataLogger& aDataLogger,
    41 							MUnitTestObserver& aObserver)
    42 		Intended Usage	: Standard two-phase construction which leaves nothing on the
    43 						cleanup stack.
    44 		Error Condition	: Leaves with the error code.
    45 		@leave  		KErrNoMemory
    46 		@since			7.0
    47 		@param			aDataLogger The output logging object.
    48 		@param			aObserver The observer of this UnitTest.
    49 		@param			aStateAccessor WhiteBox state access to the CExampleInterface class.
    50 		@return			CSuicideInterfaceCreateAndDestroyUnitTest* The constructed object.
    51 		@pre 			None.
    52 		@post			CSuicideInterfaceCreateAndDestroyUnitTest is fully constructed, and initialised.
    53 	 */
    54 	static CSuicideInterfaceCreateAndDestroyUnitTest* NewL(CDataLogger& aDataLogger,
    55 											MUnitTestObserver& aObserver);
    56 
    57 	/**
    58 		@fn				RunError(TInt aError)
    59 		Intended Usage	: Intercept the panic caused by a RunL leave,
    60 						to restore the CSuicideInterfaceCreateAndDestroyUnitTest
    61 						object to a sensible state.
    62 						(called by the Active Scheduler immediately before the Panic).
    63 		Error Condition	: @see CUnitTest::RunError().
    64 		@since			7.0
    65 		@return			TInt KErrNone if cleanup successful, otherwise
    66 						@see CUnitTest::RunError()
    67 		@pre 			CSuicideInterfaceCreateAndDestroyUnitTest is fully constructed, and initialised.
    68 		@post			The object has been restored to a sensible state.
    69 	 */
    70 	inline TInt RunError(TInt aError);
    71 
    72 	/**
    73 		@fn				~CSuicideInterfaceCreateAndDestroyUnitTest()
    74 		Intended Usage	: Standard Destructor.
    75 		Error Condition	: None.	
    76 		@since			7.0
    77 		@pre 			CSuicideInterfaceCreateAndDestroyUnitTest is fully constructed.
    78 		@post			CSuicideInterfaceCreateAndDestroyUnitTest is fully destroyed.
    79 	*/
    80 	inline ~CSuicideInterfaceCreateAndDestroyUnitTest();
    81 
    82 private:
    83 	/**
    84 		@fn				CSuicideInterfaceCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
    85 														MUnitTestObserver& aObserver)
    86 		Intended Usage	: Default constructor.
    87 		Error Condition	: None. 
    88 		@since			7.0
    89 		@param			aDataLogger The output logging object.
    90 		@param			aObserver The observer of this UnitTest.
    91 		@param			aStateAccessor WhiteBox state access to the CExampleInterface class.
    92 		@pre 			None.
    93 		@post			CSuicideInterfaceCreateAndDestroyUnitTest is fully constructed.
    94 	*/
    95 	inline CSuicideInterfaceCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
    96 											MUnitTestObserver& aObserver);
    97 
    98 	/**
    99 		@fn				void ConstructL()
   100 		Intended Usage	: Second phase of safe two phase construction, 
   101 		to complete the object initialisation.
   102 		Error Condition	: Leaves with an error code.
   103 		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
   104 		@since			7.0
   105 		@return			None 
   106 		@pre 			CSuicideInterfaceCreateAndDestroyUnitTest is fully constructed.
   107 		@post			CSuicideInterfaceCreateAndDestroyUnitTest is fully initialised.
   108 	*/
   109 	inline void ConstructL();
   110 
   111 	/**
   112 	The context of the Unit Test.
   113 	i.e The CExampleInterface class tested by this UintTest's transitions.
   114 	 */
   115 	CSuicideInterface_UnitTestContext*		iUTContext;
   116 	TSuicideInterface_Ctor_TransitionValidator*		iCtorValidator;
   117 	TSuicideInterface_Dtor_TransitionValidator*		iDtorValidator;
   118 	TSuicideInterface_StateAccessor*	iStateAccessor;
   119 	REComSession* iEComSession;
   120 	};
   121 
   122 // ______________________________________________________________________________
   123 //
   124 /**
   125 	@internalComponent
   126 
   127 	Comments : UnitTest of the CExampleInterface test class.
   128  */
   129 class CSuicideInterfaceFireAndForgetUnitTest : public CUnitTest
   130 	{
   131 public:
   132 	/**
   133 		@fn				NewL(CDataLogger& aDataLogger, 
   134 							MUnitTestObserver& aObserver)
   135 		Intended Usage	: Standard two-phase construction which leaves nothing on the
   136 						cleanup stack
   137 		Error Condition	: Leaves with the error code.
   138 		@leave  		KErrNoMemory
   139 		@since			7.0
   140 		@param			aDataLogger The output logging object.
   141 		@param			aObserver The observer of this UnitTest.
   142 		@param			aStateAccessor The WhiteBox state access for the CExampleInterface class.
   143 		@return			CSuicideInterfaceFireAndForgetUnitTest* The constructed object.
   144 		@pre 			None
   145 		@post			CSuicideInterfaceFireAndForgetUnitTest is fully constructed, and initialised.
   146 	 */
   147 	static CSuicideInterfaceFireAndForgetUnitTest* NewL(CDataLogger& aDataLogger, 
   148 												MUnitTestObserver& aObserver);
   149 
   150 	/**
   151 		@fn				RunError(TInt aError)
   152 		Intended Usage	: Trap on the RunL leave, called by the Active Scheduler.
   153 		Error Condition	: @see CUnitTest::RunError()	
   154 		@since			7.0
   155 		@return			TInt KErrNone if cleanup successful, otherwise @see CUnitTest::RunError()
   156 		@pre 			CSuicideInterfaceFireAndForgetUnitTest is fully constructed, and initialised.
   157 		@post			The object has been restored to a sensible state.
   158 	 */
   159 	inline TInt RunError(TInt aError);
   160 
   161 	/**
   162 		@fn				~CSuicideInterfaceFireAndForgetUnitTest()
   163 		Intended Usage	: Standard Destructor
   164 		Error Condition	: None.	
   165 		@since			7.0
   166 		@pre 			CSuicideInterfaceFireAndForgetUnitTest is fully constructed.
   167 		@post			CSuicideInterfaceFireAndForgetUnitTest is fully destroyed.
   168 	*/
   169 	inline ~CSuicideInterfaceFireAndForgetUnitTest();
   170 
   171 private:
   172 	/**
   173 		@fn				CSuicideInterfaceFireAndForgetUnitTest(CDataLogger& aDataLogger, 
   174 														MUnitTestObserver& aObserver)
   175 		Intended Usage	: Default constructor
   176 		Error Condition	: None	
   177 		@since			7.0
   178 		@param			aDataLogger The output logging object.
   179 		@param			aObserver The observer of this UnitTest.
   180 		@param			aStateAccessor The WhiteBox state access for the CExampleInterface class.
   181 		@pre 			None
   182 		@post			CSuicideInterfaceFireAndForgetUnitTest is fully constructed.
   183 	*/
   184 	inline CSuicideInterfaceFireAndForgetUnitTest(CDataLogger& aDataLogger, 
   185 										MUnitTestObserver& aObserver);
   186 
   187 	/**
   188 		@fn				void ConstructL()
   189 		Intended Usage	: Second phase of safe two phase construction, 
   190 		to complete the object initialisation.
   191 		Error Condition	: Leaves with an error code.
   192 		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
   193 		@since			7.0
   194 		@return			None 
   195 		@pre 			CSuicideInterfaceFireAndForgetUnitTest is fully constructed.
   196 		@post			CSuicideInterfaceFireAndForgetUnitTest is fully initialised.
   197 	*/
   198 	inline void ConstructL();
   199 
   200 /** The context of the Unit Test i.e a ClassName class */
   201 	CSuicideInterface_UnitTestContext*		iUTContext;
   202 	TSuicideInterface_Ctor_TransitionValidator*		iCtorValidator;
   203 	TSuicideInterface_FireAndForget_TransitionValidator*	iFireAndForgetValidator;
   204 	TSuicideInterface_StateAccessor*	iStateAccessor;
   205 	REComSession* iEComSession;
   206 	};
   207 
   208 #endif	// __SUICIDEUNITTEST_H__