os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/RegistryDataUnitTests.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 unit stet classes for the CRegistryData testing.
    15 // 
    16 //
    17 
    18 #ifndef __REGISTRYDATAUNITTESTS_H__
    19 #define __REGISTRTDATAUNITTESTS_H__
    20 
    21 #include "RegistryDataTransitionValidation.h"
    22 
    23 // ______________________________________________________________________________
    24 //
    25 /**
    26 	@internalComponent
    27 
    28 	Comments : Unit Test for CreateAndDestroy on CRegistryData, the class under test.
    29  */
    30 class CRegistryData_CreateAndDestroy_UnitTest : public CUnitTest
    31 	{
    32 public:
    33 	/**
    34 		@fn				NewL(CDataLogger& aDataLogger,
    35 							MUnitTestObserver& aObserver)
    36 		Intended Usage	: Standard two-phase construction which leaves nothing on the
    37 						cleanup stack.
    38 		Error Condition	: Leaves with the error code.
    39 		@leave  		KErrNoMemory
    40 		@since			7.0
    41 		@param			aDataLogger The output logging object.
    42 		@param			aObserver The observer of this UnitTest.
    43 		@return			CRegistryData_CreateAndDestroy_UnitTest* The constructed object.
    44 		@pre 			None.
    45 		@post			CRegistryData_CreateAndDestroy_UnitTest is fully constructed, and initialised.
    46 	 */
    47 	static CRegistryData_CreateAndDestroy_UnitTest* NewL(CDataLogger& aDataLogger,
    48 											MUnitTestObserver& aObserver);
    49 
    50 	/**
    51 		@fn				RunError(TInt aError)
    52 		Intended Usage	: Intercept the panic caused by a RunL leave,
    53 						to restore the CRegistryData_CreateAndDestroy_UnitTest
    54 						object to a sensible state.
    55 						(called by the Active Scheduler immediately before the Panic).
    56 		Error Condition	: @see CUnitTest::RunError().
    57 		@since			7.0
    58 		@return			TInt KErrNone if cleanup successful, otherwise
    59 						@see CUnitTest::RunError()
    60 		@pre 			CRegistryData_CreateAndDestroy_UnitTest is fully constructed, and initialised.
    61 		@post			The object has been restored to a sensible state.
    62 	 */
    63 	inline TInt RunError(TInt aError);
    64 
    65 	/**
    66 		@fn				~CRegistryData_CreateAndDestroy_UnitTest()
    67 		Intended Usage	: Standard Destructor.
    68 		Error Condition	: None.	
    69 		@since			7.0
    70 		@pre 			CRegistryData_CreateAndDestroy_UnitTest is fully constructed.
    71 		@post			CRegistryData_CreateAndDestroy_UnitTest is fully destroyed.
    72 	*/
    73 	~CRegistryData_CreateAndDestroy_UnitTest();
    74 
    75 /**
    76 	@fn				PrepareUnitTestL()
    77 	Intended Usage	: Called by test framework just before test is run to allow
    78 					any test preparation to take place.
    79 	Error Condition	: 
    80 	@since			7.0
    81 	@pre 			CRegistryData_CreateAndDestroy_UnitTest is fully constructed.
    82 	@post			This unit test is ready to run.
    83 */
    84 	void PrepareUnitTestL();
    85 
    86 private:
    87 	/**
    88 		@fn				CRegistryData_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
    89 														MUnitTestObserver& aObserver)
    90 		Intended Usage	: Default constructor.
    91 		Error Condition	: None. 
    92 		@since			7.0
    93 		@param			aDataLogger The output logging object.
    94 		@param			aObserver The observer of this UnitTest.
    95 		@param			aStateAccessor WhiteBox state access to the CRegistryData class.
    96 		@pre 			None.
    97 		@post			CRegistryData_CreateAndDestroy_UnitTest is fully constructed.
    98 	*/
    99 	inline CRegistryData_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
   100 											MUnitTestObserver& aObserver);
   101 
   102 	/**
   103 		@fn				void ConstructL()
   104 		Intended Usage	: Second phase of safe two phase construction, 
   105 		to complete the object initialisation.
   106 		Error Condition	: Leaves with an error code.
   107 		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
   108 		@since			7.0
   109 		@return			None 
   110 		@pre 			CRegistryData_CreateAndDestroy_UnitTest is fully constructed.
   111 		@post			CRegistryData_CreateAndDestroy_UnitTest is fully initialised.
   112 	*/
   113 	inline void ConstructL();
   114 
   115 	/**
   116 	The context of the Unit Test.
   117 	i.e The CRegistryData class tested by this UnitTest's transitions.
   118 	 */
   119 	CRegistryData_UnitTestContext* iUTContext;
   120 	TRegistryData_Ctor_TransitionValidator*		iCtorValidator;
   121 	TRegistryData_Dtor_TransitionValidator*		iDtorValidator;
   122 	TRegistryData_StateAccessor*	iStateAccessor;
   123 	};	// CRegistryData_CreateAndDestroy_UnitTest
   124 
   125 // ______________________________________________________________________________
   126 //
   127 /**
   128 	@internalComponent
   129 
   130 	Comments : Unit Test for AddData on CRegistryData, the class under test.
   131  */
   132 class CRegistryData_AddData_UnitTest : public CUnitTest
   133 	{
   134 public:
   135 	/**
   136 		@fn				NewL(CDataLogger& aDataLogger,
   137 							MUnitTestObserver& aObserver)
   138 		Intended Usage	: Standard two-phase construction which leaves nothing on the
   139 						cleanup stack.
   140 		Error Condition	: Leaves with the error code.
   141 		@leave  		KErrNoMemory
   142 		@since			7.0
   143 		@param			aDataLogger The output logging object.
   144 		@param			aObserver The observer of this UnitTest.
   145 		@return			CRegistryData_AddData_UnitTest* The constructed object.
   146 		@pre 			None.
   147 		@post			CRegistryData_AddData_UnitTest is fully constructed, and initialised.
   148 	 */
   149 	static CRegistryData_AddData_UnitTest* NewL(CDataLogger& aDataLogger,
   150 											MUnitTestObserver& aObserver);
   151 
   152 	/**
   153 		@fn				RunError(TInt aError)
   154 		Intended Usage	: Intercept the panic caused by a RunL leave,
   155 						to restore the CRegistryData_AddData_UnitTest
   156 						object to a sensible state.
   157 						(called by the Active Scheduler immediately before the Panic).
   158 		Error Condition	: @see CUnitTest::RunError().
   159 		@since			7.0
   160 		@return			TInt KErrNone if cleanup successful, otherwise
   161 						@see CUnitTest::RunError()
   162 		@pre 			CRegistryData_AddData_UnitTest is fully constructed, and initialised.
   163 		@post			The object has been restored to a sensible state.
   164 	 */
   165 	inline TInt RunError(TInt aError);
   166 
   167 	/**
   168 		@fn				~CRegistryData_AddData_UnitTest()
   169 		Intended Usage	: Standard Destructor.
   170 		Error Condition	: None.	
   171 		@since			7.0
   172 		@pre 			CRegistryData_AddData_UnitTest is fully constructed.
   173 		@post			CRegistryData_AddData_UnitTest is fully destroyed.
   174 	*/
   175 	~CRegistryData_AddData_UnitTest();
   176 
   177 private:
   178 	/**
   179 		@fn				CRegistryData_AddData_UnitTest(CDataLogger& aDataLogger,
   180 														MUnitTestObserver& aObserver)
   181 		Intended Usage	: Default constructor.
   182 		Error Condition	: None. 
   183 		@since			7.0
   184 		@param			aDataLogger The output logging object.
   185 		@param			aObserver The observer of this UnitTest.
   186 		@param			aStateAccessor WhiteBox state access to the CRegistryData class.
   187 		@pre 			None.
   188 		@post			CRegistryData_AddData_UnitTest is fully constructed.
   189 	*/
   190 	inline CRegistryData_AddData_UnitTest(CDataLogger& aDataLogger,
   191 											MUnitTestObserver& aObserver);
   192 
   193 	/**
   194 		@fn				void ConstructL()
   195 		Intended Usage	: Second phase of safe two phase construction, 
   196 		to complete the object initialisation.
   197 		Error Condition	: Leaves with an error code.
   198 		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
   199 		@since			7.0
   200 		@return			None 
   201 		@pre 			CRegistryData_AddData_UnitTest is fully constructed.
   202 		@post			CRegistryData_AddData_UnitTest is fully initialised.
   203 	*/
   204 	void ConstructL();
   205 
   206 	/**
   207 	The context of the Unit Test.
   208 	i.e The CRegistryData class tested by this UnitTest's transitions.
   209 	 */
   210 	CRegistryData_UnitTestContext*	iUTContext;
   211 	TRegistryData_StateAccessor*	iStateAccessor;
   212 
   213 	TRegistryData_Ctor_TransitionValidator*						iCtorValidator;
   214 	TRegistryData_SetPolicyObserver_TransitionValidator*		iSetObserverValidator;
   215 	TRegistryData_UndoTemporaryUninstall_TransitionValidator*	iUndoTemporaryUninstallValidator;
   216 	TRegistryData_AddDllDataL_TransitionValidator*				iAddDllDataValidator;
   217 	TRegistryData_IsRegisteredWithDate_TransitionValidator*		iIsRegisteredValidator;
   218 	TRegistryData_UpdateDllData_TransitionValidator*			iUpdateDllDataValidator;
   219 	TRegistryData_TemporaryUninstall_TransitionValidator*		iTemporaryUninstallValidator;
   220 	TRegistryData_PersistNow_TransitionValidator*				iPersistNowValidator;
   221 	TRegistryData_Dtor_TransitionValidator*						iDtorValidator;
   222 	};	// CRegistryData_AddData_UnitTest
   223 
   224 // ______________________________________________________________________________
   225 //
   226 /**
   227 	@internalComponent
   228 
   229 	Comments : Unit Test for RetrieveInfo on CRegistryData, the class under test.
   230  */
   231 class CRegistryData_RetrieveInfo_UnitTest : public CUnitTest
   232 	{
   233 public:
   234 	/**
   235 		@fn				NewL(CDataLogger& aDataLogger,
   236 							MUnitTestObserver& aObserver)
   237 		Intended Usage	: Standard two-phase construction which leaves nothing on the
   238 						cleanup stack.
   239 		Error Condition	: Leaves with the error code.
   240 		@leave  		KErrNoMemory
   241 		@since			7.0
   242 		@param			aDataLogger The output logging object.
   243 		@param			aObserver The observer of this UnitTest.
   244 		@return			CRegistryData_RetrieveInfo_UnitTest* The constructed object.
   245 		@pre 			None.
   246 		@post			CRegistryData_RetrieveInfo_UnitTest is fully constructed, and initialised.
   247 	 */
   248 	static CRegistryData_RetrieveInfo_UnitTest* NewL(CDataLogger& aDataLogger,
   249 											MUnitTestObserver& aObserver);
   250 
   251 	/**
   252 		@fn				RunError(TInt aError)
   253 		Intended Usage	: Intercept the panic caused by a RunL leave,
   254 						to restore the CRegistryData_RetrieveInfo_UnitTest
   255 						object to a sensible state.
   256 						(called by the Active Scheduler immediately before the Panic).
   257 		Error Condition	: @see CUnitTest::RunError().
   258 		@since			7.0
   259 		@return			TInt KErrNone if cleanup successful, otherwise
   260 						@see CUnitTest::RunError()
   261 		@pre 			CRegistryData_RetrieveInfo_UnitTest is fully constructed, and initialised.
   262 		@post			The object has been restored to a sensible state.
   263 	 */
   264 	inline TInt RunError(TInt aError);
   265 
   266 	/**
   267 		@fn				~CRegistryData_RetrieveInfo_UnitTest()
   268 		Intended Usage	: Standard Destructor.
   269 		Error Condition	: None.	
   270 		@since			7.0
   271 		@pre 			CRegistryData_RetrieveInfo_UnitTest is fully constructed.
   272 		@post			CRegistryData_RetrieveInfo_UnitTest is fully destroyed.
   273 	*/
   274 	~CRegistryData_RetrieveInfo_UnitTest();
   275 
   276 private:
   277 	/**
   278 		@fn				CRegistryData_RetrieveInfo_UnitTest(CDataLogger& aDataLogger,
   279 														MUnitTestObserver& aObserver)
   280 		Intended Usage	: Default constructor.
   281 		Error Condition	: None. 
   282 		@since			7.0
   283 		@param			aDataLogger The output logging object.
   284 		@param			aObserver The observer of this UnitTest.
   285 		@param			aStateAccessor WhiteBox state access to the CRegistryData class.
   286 		@pre 			None.
   287 		@post			CRegistryData_RetrieveInfo_UnitTest is fully constructed.
   288 	*/
   289 	inline CRegistryData_RetrieveInfo_UnitTest(CDataLogger& aDataLogger,
   290 											MUnitTestObserver& aObserver);
   291 
   292 	/**
   293 		@fn				void ConstructL()
   294 		Intended Usage	: Second phase of safe two phase construction, 
   295 		to complete the object initialisation.
   296 		Error Condition	: Leaves with an error code.
   297 		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
   298 		@since			7.0
   299 		@return			None 
   300 		@pre 			CRegistryData_RetrieveInfo_UnitTest is fully constructed.
   301 		@post			CRegistryData_RetrieveInfo_UnitTest is fully initialised.
   302 	*/
   303 	void ConstructL();
   304 
   305 	/**
   306 	The context of the Unit Test.
   307 	i.e The CRegistryData class tested by this UnitTest's transitions.
   308 	 */
   309 	CRegistryData_UnitTestContext*	iUTContext;
   310 	TRegistryData_StateAccessor*	iStateAccessor;
   311 
   312 	// C'tor, d'tor, and default transition validators
   313 	TRegistryData_Ctor_TransitionValidator*		iCtorValidator;
   314 	TRegistryData_ListImplementations_TransitionValidator*	iListImplementationsValidator;
   315 	TRegistryData_GetImplementationInformation_TransitionValidator* iGetImplementationInformationValidator;
   316 	TRegistryData_Dtor_TransitionValidator*		iDtorValidator;
   317 	};	// CRegistryData_RetrieveInfo_UnitTest
   318 
   319 // ______________________________________________________________________________
   320 //
   321 /**
   322 	@internalComponent
   323  
   324 	Comments : Unit Test for ConstructIndex on CRegistryData, the class under test.
   325  */
   326 class CRegistryData_GetImplInfoWhileDiscovering_UnitTest : public CUnitTest
   327 	{
   328 public:
   329 	/**
   330 		@fn				NewL(CDataLogger& aDataLogger, MUnitTestObserver& aObserver)
   331 		Intended Usage	: Standard two-phase construction which leaves nothing on the
   332 						cleanup stack.
   333 		Error Condition	: Leaves with the error code.
   334 		@leave  		KErrNoMemory
   335 		@since			7.0
   336 		@param			aDataLogger The output logging object.
   337 		@param			aObserver The observer of this UnitTest.
   338 		@return			CRegistryData_GetImplInfoWhileDiscovering_UnitTest* The 
   339 						constructed object.
   340 		@pre 			None.
   341 		@post			CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully 
   342 						constructed, and initialised.
   343 	 */
   344 	static CRegistryData_GetImplInfoWhileDiscovering_UnitTest* NewL(CDataLogger& aDataLogger,
   345 											MUnitTestObserver& aObserver);
   346 
   347 	/**
   348 		@fn				RunError(TInt aError)
   349 		Intended Usage	: Intercept the panic caused by a RunL leave,
   350 						to restore the CRegistryData_ConstructIndex_UnitTest
   351 						object to a sensible state.
   352 						(called by the Active Scheduler immediately before the Panic).
   353 		Error Condition	: @see CUnitTest::RunError().
   354 		@since			7.0
   355 		@return			TInt KErrNone if cleanup successful, otherwise
   356 						@see CUnitTest::RunError()
   357 		@pre 			CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully 
   358 						constructed, and initialised.
   359 		@post			The object has been restored to a sensible state.
   360 	 */
   361 	inline TInt RunError(TInt aError);
   362 
   363 	/**
   364 		@fn				~CRegistryData_GetImplInfoWhileDiscovering_UnitTest()
   365 		Intended Usage	: Standard Destructor.
   366 		Error Condition	: None.	
   367 		@since			7.0
   368 		@pre 			CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully constructed.
   369 		@post			CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully destroyed.
   370 	*/
   371 	~CRegistryData_GetImplInfoWhileDiscovering_UnitTest();
   372 
   373 private:
   374 	/**
   375 		@fn				CRegistryData_GetImplInfoWhileDiscovering_UnitTest(CDataLogger& aDataLogger,
   376 														MUnitTestObserver& aObserver)
   377 		Intended Usage	: Default constructor.
   378 		Error Condition	: None. 
   379 		@since			7.0
   380 		@param			aDataLogger The output logging object.
   381 		@param			aObserver The observer of this UnitTest.
   382 		@param			aStateAccessor WhiteBox state access to the CRegistryData class.
   383 		@pre 			None.
   384 		@post			CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully constructed.
   385 	*/
   386 	inline CRegistryData_GetImplInfoWhileDiscovering_UnitTest(CDataLogger& aDataLogger,
   387 											MUnitTestObserver& aObserver);
   388 
   389 	/**
   390 		@fn				void ConstructL()
   391 		Intended Usage	: Second phase of safe two phase construction, 
   392 		to complete the object initialisation.
   393 		Error Condition	: Leaves with an error code.
   394 		@leave  		KErrNoMemory, and @see CUnitTest::BaseNewL().
   395 		@since			7.0
   396 		@return			None 
   397 		@pre 			CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully constructed.
   398 		@post			CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully initialised.
   399 	*/
   400 	void ConstructL();
   401 
   402 	/**
   403 	The context of the Unit Test.
   404 	i.e The CRegistryData class tested by this UnitTest's transitions.
   405 	 */
   406 	CRegistryData_UnitTestContext*	iUTContext;
   407 	TRegistryData_StateAccessor*	iStateAccessor;
   408 
   409 	// C'tor, d'tor, and method transition validators
   410 	TRegistryData_Ctor_TransitionValidator*	iCtorValidator;
   411 	TRegistryData_GetImplementationInformation_TransitionValidator*	iGetImplInfoValidator;
   412 	TRegistryData_DiscoveriesBeginning_TransitionValidator* iDiscoveriesBeginningValidator;
   413 	TRegistryData_GetSecondImplInfo_TransitionValidator*	iGetSecondImplInfoValidator;
   414 	TRegistryData_Dtor_TransitionValidator*	iDtorValidator;
   415 
   416 	};	// CRegistryData_GetImplInfoWhileDiscovering_UnitTest
   417 
   418 #include "RegistryDataUnitTests.inl"
   419 
   420 #endif		// __REGISTRYDATAUNITTESTS_H__