os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/DataLoggerTest/DataLoggerTransitions.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 definitions of the transition classes upon the CDataLogger class methods.
    15 // 
    16 //
    17 
    18 #ifndef __DATALOGGERTRANSITIONS_H__
    19 #define __DATALOGGERTRANSITIONS_H__
    20 
    21 #include "TestUtilities.h"
    22 #include "StateAccessor.h"
    23 #include "LeakTestTransition.h"
    24 #include <ecom/test_bed/datalogger.h>
    25 #include "DataLoggerStateAccessor.h"
    26 #include <ecom/test_bed/unittest.h>
    27 
    28 #define CTransitionType CLeakTestTransition
    29 
    30 // ______________________________________________________________________________
    31 //
    32 /**
    33 	@internalComponent
    34 
    35 	Comments : Provide all the CDataLogger specific
    36 	parameters and behaviour on the CDataLogger
    37 	test class for a transition.
    38  */
    39 class CDataLogger_UnitTestContext : public CUnitTestContext
    40 	{
    41 public:
    42 	/**
    43 		@fn				CDataLogger_UnitTestContext(CDataLogger& aDataLogger,
    44 														MStateAccessor& aStateAccessor,
    45 														MTransitionObserver& aObserver)
    46 		Intended Usage	: Default constructor.
    47 		Error Condition	: None. 
    48 		@since			7.0
    49 		@param			aDataLogger The output logging object.
    50 		@param			aObserver The observer of this UnitTest's Transitions.
    51 		@param			aStateAccessor WhiteBox state access to the CDataLogger class under test.
    52 		@pre 			None.
    53 		@post			CDataLogger_UnitTestContext is fully constructed, and initialised.
    54 	*/
    55 	inline CDataLogger_UnitTestContext(CDataLogger& aDataLogger,
    56 										MStateAccessor& aStateAccessor,
    57 										MTransitionObserver& aObserver);
    58 
    59 	/**
    60 		@fn				~CDataLogger_UnitTestContext()
    61 		Intended Usage	: Default Destructor
    62 		@since			7.0
    63 		@pre 			CDataLogger_UnitTestContext is fully constructed.
    64 		@post			CDataLogger_UnitTestContext is fully destroyed
    65 		*/
    66 		virtual inline ~CDataLogger_UnitTestContext();
    67 
    68 	/** The instance of the class under test */
    69 	CDataLogger* iDataLogger;
    70 	/** The logging info to be used by the data logger */
    71 	TLoggingInfo* iLoggingInfo;
    72 	/** The address of the start of the block to be logged */
    73 	const TUint8* iAddress;
    74 	/** The number of bytes to be logged */
    75 	TInt iLength;
    76 	/** The argument set to be logged */
    77 	HBufC* iArg;
    78 	/** A narrow descriptor version of the argument set to be logged */
    79 	HBufC8* iArgNarrow;
    80 	/** The text to be added to the report */
    81 	const TDesC* iReportComment;
    82 	/** The text to be formatted and added to the report */
    83 	const TDesC* iFormatReport;
    84 	/** The argument set to be added to the report */
    85 	const TDesC* iReportArg;
    86 
    87 	}; // CDataLogger_UnitTestContext
    88 
    89 // ______________________________________________________________________________
    90 //
    91 /**
    92 	@internalComponent
    93  
    94 	Comments : Transition test of the CDataLogger::NewL method.
    95  */
    96 class CDataLogger_NewL_Transition : public CTransitionType
    97 	{
    98 public:
    99 	/**
   100 		@fn				CDataLogger_NewL_Transition(CUnitTestContext& aUTContext,
   101 																	TTransitionValidator& aValidator)
   102 		Intended Usage	: Standard c'tor method.
   103 		Error Condition	: None.
   104 		@since			7.0
   105 		@param			aUTContext The context this transition is operating in.
   106 		@param			aValidator Used for checking the pre & post conditions of the test object.
   107 		@pre 			None.
   108 		@post			CDataLogger_NewL_Transition is fully constructed.
   109 	*/
   110 	CDataLogger_NewL_Transition(CUnitTestContext& aUTContext,
   111 													TTransitionValidator& aValidator);
   112 	/**
   113 		@fn				TransitMethodL()
   114 		Intended Usage	: To execute the CDataLogger::NewL method for the test harness.
   115 		Error Condition	: Leaves with an error code.
   116 		@leave  		KErrNoMemory, (@see CDataLogger::NewL)
   117 		@since			7.0
   118 		@return			None
   119 		@pre 			CDataLogger_NewL_Transition is fully constructed.
   120 		@post			No change in the CDataLogger_NewL_Transition apart
   121 						from iDataLogger, which may have changed state.
   122 						(@see CDataLogger::NewL post-condition) for iDataLogger's new state.
   123 	*/
   124 	inline void TransitMethodL();
   125 
   126 	/**
   127 		@fn				Context() const
   128 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   129 		Error Condition	: None.
   130 		@since			7.0
   131 		@return			The unit test context cast to a CDataLogger_UnitTestContext
   132 		@pre 			iUTContext is a valid CDataLogger_UnitTestContext.
   133 		@post			No change in the CDataLogger_NewL_Transition
   134 	*/
   135 	inline CDataLogger_UnitTestContext& Context() const;
   136 	};	// CDataLogger_NewL_Transition
   137 
   138 // ______________________________________________________________________________
   139 //
   140 /**
   141 	@internalComponent
   142 
   143 	Comments : Transition test of the CDataLogger::Dtor method.
   144  */
   145 class CDataLogger_Dtor_Transition : public CTransition
   146 	{
   147 public:
   148 	/**
   149 		@fn				CDataLogger_Dtor_Transition(CUnitTestContext& aUTContext,
   150 																	TTransitionValidator& aValidator)
   151 		Intended Usage	: Standard c'tor method.
   152 		Error Condition	: None.
   153 		@since			7.0
   154 		@param			aUTContext The context this transition is operating in.
   155 		@param			aValidator Used for checking the pre & post conditions of the test object.
   156 		@pre 			None.
   157 		@post			CDataLogger_Dtor_Transition is fully constructed.
   158 	*/
   159 	CDataLogger_Dtor_Transition(CUnitTestContext& aUTContext,
   160 													TTransitionValidator& aValidator);
   161 	/**
   162 		@fn				TransitMethodL()
   163 		Intended Usage	: To execute the CDataLogger::Dtor method for the test harness.
   164 		Error Condition	: Leaves with an error code.
   165 		@leave  		KErrNoMemory, (@see CDataLogger::Dtor)
   166 		@since			7.0
   167 		@return			None
   168 		@pre 			CDataLogger_Dtor_Transition is fully constructed.
   169 		@post			No change in the CDataLogger_Dtor_Transition apart
   170 						from iDataLogger, which may have changed state.
   171 						(@see CDataLogger::Dtor post-condition) for iDataLogger's new state.
   172 	*/
   173 	inline void TransitMethodL();
   174 
   175 	/**
   176 		@fn				Context() const
   177 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   178 		Error Condition	: None.
   179 		@since			7.0
   180 		@return			The unit test context cast to a CDataLogger_UnitTestContext
   181 		@pre 			iUTContext is a valid CDataLogger_UnitTestContext.
   182 		@post			No change in the CDataLogger_Dtor_Transition
   183 	*/
   184 	inline CDataLogger_UnitTestContext& Context() const;
   185 	};	// CDataLogger_Dtor_Transition
   186 
   187 // ______________________________________________________________________________
   188 //
   189 /**
   190 	@internalComponent
   191 
   192 	Comments : Transition test of the CDataLogger::DumpMemoryBlock method.
   193  */
   194 class CDataLogger_DumpMemoryBlock_Transition : public CTransition
   195 	{
   196 public:
   197 	/**
   198 		@fn				CDataLogger_DumpMemoryBlock_Transition(CUnitTestContext& aUTContext,
   199 																	TTransitionValidator& aValidator)
   200 		Intended Usage	: Standard c'tor method.
   201 		Error Condition	: None.
   202 		@since			7.0
   203 		@param			aUTContext The context this transition is operating in.
   204 		@param			aValidator Used for checking the pre & post conditions of the test object.
   205 		@pre 			None.
   206 		@post			CDataLogger_DumpMemoryBlock_Transition is fully constructed.
   207 	*/
   208 	CDataLogger_DumpMemoryBlock_Transition(CUnitTestContext& aUTContext,
   209 													TTransitionValidator& aValidator);
   210 	/**
   211 		@fn				TransitMethodL()
   212 		Intended Usage	: To execute the CDataLogger::DumpMemoryBlock method for the test harness.
   213 		Error Condition	: Leaves with an error code.
   214 		@leave  		KErrNoMemory, (@see CDataLogger::DumpMemoryBlock)
   215 		@since			7.0
   216 		@return			None
   217 		@pre 			CDataLogger_DumpMemoryBlock_Transition is fully constructed.
   218 		@post			No change in the CDataLogger_DumpMemoryBlock_Transition apart
   219 						from iDataLogger, which may have changed state.
   220 						(@see CDataLogger::DumpMemoryBlock post-condition) for iDataLogger's new state.
   221 	*/
   222 	inline void TransitMethodL();
   223 
   224 	/**
   225 		@fn				Context() const
   226 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   227 		Error Condition	: None.
   228 		@since			7.0
   229 		@return			The unit test context cast to a CDataLogger_UnitTestContext
   230 		@pre 			iUTContext is a valid CDataLogger_UnitTestContext.
   231 		@post			No change in the CDataLogger_DumpMemoryBlock_Transition
   232 	*/
   233 	inline CDataLogger_UnitTestContext& Context() const;
   234 	};	// CDataLogger_DumpMemoryBlock_Transition
   235 
   236 
   237 // ______________________________________________________________________________
   238 //
   239 /**
   240 	@internalComponent
   241 
   242 	Comments : Transition test of the CDataLogger::LogInformation method.
   243  */
   244 class CDataLogger_LogInformation_Transition : public CTransition
   245 	{
   246 public:
   247 	/**
   248 		@fn				CDataLogger_LogInformation_Transition(CUnitTestContext& aUTContext,
   249 																	TTransitionValidator& aValidator)
   250 		Intended Usage	: Standard c'tor method.
   251 		Error Condition	: None.
   252 		@since			7.0
   253 		@param			aUTContext The context this transition is operating in.
   254 		@param			aValidator Used for checking the pre & post conditions of the test object.
   255 		@pre 			None.
   256 		@post			CDataLogger_LogInformation_Transition is fully constructed.
   257 	*/
   258 	CDataLogger_LogInformation_Transition(CUnitTestContext& aUTContext,
   259 													TTransitionValidator& aValidator);
   260 	/**
   261 		@fn				TransitMethodL()
   262 		Intended Usage	: To execute the CDataLogger::LogInformation method for the test harness.
   263 		Error Condition	: Leaves with an error code.
   264 		@leave  		KErrNoMemory, (@see CDataLogger::LogInformation)
   265 		@since			7.0
   266 		@return			None
   267 		@pre 			CDataLogger_LogInformation_Transition is fully constructed.
   268 		@post			No change in the CDataLogger_LogInformation_Transition apart
   269 						from iDataLogger, which may have changed state.
   270 						(@see CDataLogger::LogInformation post-condition) for iDataLogger's new state.
   271 	*/
   272 	inline void TransitMethodL();
   273 
   274 	/**
   275 		@fn				Context() const
   276 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   277 		Error Condition	: None.
   278 		@since			7.0
   279 		@return			The unit test context cast to a CDataLogger_UnitTestContext
   280 		@pre 			iUTContext is a valid CDataLogger_UnitTestContext.
   281 		@post			No change in the CDataLogger_LogInformation_Transition
   282 	*/
   283 	inline CDataLogger_UnitTestContext& Context() const;
   284 	};	// CDataLogger_LogInformation_Transition
   285 
   286 // ______________________________________________________________________________
   287 //
   288 /**
   289 	@internalComponent
   290 
   291 	Comments : Transition test of the CDataLogger::LogInformationNarrow method.
   292  */
   293 class CDataLogger_LogInformationNarrow_Transition : public CTransition
   294 	{
   295 public:
   296 	/**
   297 		@fn				CDataLogger_LogInformationNarrow_Transition(CUnitTestContext& aUTContext,
   298 																	TTransitionValidator& aValidator)
   299 		Intended Usage	: Standard c'tor method.
   300 		Error Condition	: None.
   301 		@since			7.0
   302 		@param			aUTContext The context this transition is operating in.
   303 		@param			aValidator Used for checking the pre & post conditions of the test object.
   304 		@pre 			None.
   305 		@post			CDataLogger_LogInformationNarrow_Transition is fully constructed.
   306 	*/
   307 	CDataLogger_LogInformationNarrow_Transition(CUnitTestContext& aUTContext,
   308 													TTransitionValidator& aValidator);
   309 	/**
   310 		@fn				TransitMethodL()
   311 		Intended Usage	: To execute the CDataLogger::LogInformationNarrow method for the test harness.
   312 		Error Condition	: Leaves with an error code.
   313 		@leave  		KErrNoMemory, (@see CDataLogger::LogInformationNarrow)
   314 		@since			7.0
   315 		@return			None
   316 		@pre 			CDataLogger_LogInformationNarrow_Transition is fully constructed.
   317 		@post			No change in the CDataLogger_LogInformationNarrow_Transition apart
   318 						from iDataLogger, which may have changed state.
   319 						(@see CDataLogger::LogInformationNarrow post-condition) for iDataLogger's new state.
   320 	*/
   321 	inline void TransitMethodL();
   322 
   323 	/**
   324 		@fn				Context() const
   325 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   326 		Error Condition	: None.
   327 		@since			7.0
   328 		@return			The unit test context cast to a CDataLogger_UnitTestContext
   329 		@pre 			iUTContext is a valid CDataLogger_UnitTestContext.
   330 		@post			No change in the CDataLogger_LogInformationNarrow_Transition
   331 	*/
   332 	inline CDataLogger_UnitTestContext& Context() const;
   333 	};	// CDataLogger_LogInformationNarrow_Transition
   334 
   335 // ______________________________________________________________________________
   336 //
   337 /**
   338 	@internalComponent
   339 
   340 	Comments : Transition test of the CDataLogger::LogInformationWithParameters method.
   341  */
   342 class CDataLogger_LogInformationWithParameters_Transition : public CTransition
   343 	{
   344 public:
   345 	/**
   346 		@fn				CDataLogger_LogInformationWithParameters_Transition(CUnitTestContext& aUTContext,
   347 																	TTransitionValidator& aValidator)
   348 		Intended Usage	: Standard c'tor method.
   349 		Error Condition	: None.
   350 		@since			7.0
   351 		@param			aUTContext The context this transition is operating in.
   352 		@param			aValidator Used for checking the pre & post conditions of the test object.
   353 		@pre 			None.
   354 		@post			CDataLogger_LogInformationWithParameters_Transition is fully constructed.
   355 	*/
   356 	CDataLogger_LogInformationWithParameters_Transition(CUnitTestContext& aUTContext,
   357 													TTransitionValidator& aValidator);
   358 	/**
   359 		@fn				TransitMethodL()
   360 		Intended Usage	: To execute the CDataLogger::LogInformationWithParameters method for the test harness.
   361 		Error Condition	: Leaves with an error code.
   362 		@leave  		KErrNoMemory, (@see CDataLogger::LogInformationWithParameters)
   363 		@since			7.0
   364 		@return			None
   365 		@pre 			CDataLogger_LogInformationWithParameters_Transition is fully constructed.
   366 		@post			No change in the CDataLogger_LogInformationWithParameters_Transition apart
   367 						from iDataLogger, which may have changed state.
   368 						(@see CDataLogger::LogInformationWithParameters post-condition) for iDataLogger's new state.
   369 	*/
   370 	inline void TransitMethodL();
   371 
   372 	/**
   373 		@fn				Context() const
   374 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   375 		Error Condition	: None.
   376 		@since			7.0
   377 		@return			The unit test context cast to a CDataLogger_UnitTestContext
   378 		@pre 			iUTContext is a valid CDataLogger_UnitTestContext.
   379 		@post			No change in the CDataLogger_LogInformationWithParameters_Transition
   380 	*/
   381 	inline CDataLogger_UnitTestContext& Context() const;
   382 	};	// CDataLogger_LogInformationWithParameters_Transition
   383 
   384 // ______________________________________________________________________________
   385 //
   386 /**
   387 	@internalComponent
   388 
   389 	Comments : Transition test of the CDataLogger::LogInformationWithParametersNarrow method.
   390  */
   391 class CDataLogger_LogInformationWithParametersNarrow_Transition : public CTransition
   392 	{
   393 public:
   394 	/**
   395 		@fn				CDataLogger_LogInformationWithParametersNarrow_Transition(CUnitTestContext& aUTContext,
   396 																	TTransitionValidator& aValidator)
   397 		Intended Usage	: Standard c'tor method.
   398 		Error Condition	: None.
   399 		@since			7.0
   400 		@param			aUTContext The context this transition is operating in.
   401 		@param			aValidator Used for checking the pre & post conditions of the test object.
   402 		@pre 			None.
   403 		@post			CDataLogger_LogInformationWithParametersNarrow_Transition is fully constructed.
   404 	*/
   405 	CDataLogger_LogInformationWithParametersNarrow_Transition(CUnitTestContext& aUTContext,
   406 													TTransitionValidator& aValidator);
   407 	/**
   408 		@fn				TransitMethodL()
   409 		Intended Usage	: To execute the CDataLogger::LogInformationWithParametersNarrow method for the test harness.
   410 		Error Condition	: Leaves with an error code.
   411 		@leave  		KErrNoMemory, (@see CDataLogger::LogInformationWithParametersNarrow)
   412 		@since			7.0
   413 		@return			None
   414 		@pre 			CDataLogger_LogInformationWithParametersNarrow_Transition is fully constructed.
   415 		@post			No change in the CDataLogger_LogInformationWithParametersNarrow_Transition apart
   416 						from iDataLogger, which may have changed state.
   417 						(@see CDataLogger::LogInformationWithParametersNarrow post-condition) for iDataLogger's new state.
   418 	*/
   419 	inline void TransitMethodL();
   420 
   421 	/**
   422 		@fn				Context() const
   423 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   424 		Error Condition	: None.
   425 		@since			7.0
   426 		@return			The unit test context cast to a CDataLogger_UnitTestContext
   427 		@pre 			iUTContext is a valid CDataLogger_UnitTestContext.
   428 		@post			No change in the CDataLogger_LogInformationWithParametersNarrow_Transition
   429 	*/
   430 	inline CDataLogger_UnitTestContext& Context() const;
   431 	};	// CDataLogger_LogInformationWithParametersNarrow_Transition
   432 
   433 // ______________________________________________________________________________
   434 //
   435 /**
   436 	@internalComponent
   437 
   438 	Comments : Transition test of the CDataLogger::ReportInformation method.
   439  */
   440 class CDataLogger_ReportInformation_Transition : public CTransition
   441 	{
   442 public:
   443 	/**
   444 		@fn				CDataLogger_ReportInformation_Transition(CUnitTestContext& aUTContext,
   445 																	TTransitionValidator& aValidator)
   446 		Intended Usage	: Standard c'tor method.
   447 		Error Condition	: None.
   448 		@since			7.0
   449 		@param			aUTContext The context this transition is operating in.
   450 		@param			aValidator Used for checking the pre & post conditions of the test object.
   451 		@pre 			None.
   452 		@post			CDataLogger_ReportInformation_Transition is fully constructed.
   453 	*/
   454 	CDataLogger_ReportInformation_Transition(CUnitTestContext& aUTContext,
   455 													TTransitionValidator& aValidator);
   456 	/**
   457 		@fn				TransitMethodL()
   458 		Intended Usage	: To execute the CDataLogger::ReportInformation method for the test harness.
   459 		Error Condition	: Leaves with an error code.
   460 		@leave  		KErrNoMemory, (@see CDataLogger::ReportInformation)
   461 		@since			7.0
   462 		@return			None
   463 		@pre 			CDataLogger_ReportInformation_Transition is fully constructed.
   464 		@post			No change in the CDataLogger_ReportInformation_Transition apart
   465 						from iDataLogger, which may have changed state.
   466 						(@see CDataLogger::ReportInformation post-condition) for iDataLogger's new state.
   467 	*/
   468 	inline void TransitMethodL();
   469 
   470 	/**
   471 		@fn				Context() const
   472 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   473 		Error Condition	: None.
   474 		@since			7.0
   475 		@return			The unit test context cast to a CDataLogger_UnitTestContext
   476 		@pre 			iUTContext is a valid CDataLogger_UnitTestContext.
   477 		@post			No change in the CDataLogger_ReportInformation_Transition
   478 	*/
   479 	inline CDataLogger_UnitTestContext& Context() const;
   480 	};	// CDataLogger_ReportInformation_Transition
   481 
   482 
   483 // ______________________________________________________________________________
   484 //
   485 /**
   486 	@internalComponent
   487 	
   488 	Comments : Transition test of the CDataLogger::ReportInformationWithParameters method.
   489  */
   490 class CDataLogger_ReportInformationWithParameters_Transition : public CTransition
   491 	{
   492 public:
   493 	/**
   494 		@fn				CDataLogger_ReportInformationWithParameters_Transition(CUnitTestContext& aUTContext,
   495 																	TTransitionValidator& aValidator)
   496 		Intended Usage	: Standard c'tor method.
   497 		Error Condition	: None.
   498 		@since			7.0
   499 		@param			aUTContext The context this transition is operating in.
   500 		@param			aValidator Used for checking the pre & post conditions of the test object.
   501 		@pre 			None.
   502 		@post			CDataLogger_ReportInformationWithParameters_Transition is fully constructed.
   503 	*/
   504 	CDataLogger_ReportInformationWithParameters_Transition(CUnitTestContext& aUTContext,
   505 													TTransitionValidator& aValidator);
   506 	/**
   507 		@fn				TransitMethodL()
   508 		Intended Usage	: To execute the CDataLogger::ReportInformationWithParameters method for the test harness.
   509 		Error Condition	: Leaves with an error code.
   510 		@leave  		KErrNoMemory, (@see CDataLogger::ReportInformationWithParameters)
   511 		@since			7.0
   512 		@return			None
   513 		@pre 			CDataLogger_ReportInformationWithParameters_Transition is fully constructed.
   514 		@post			No change in the CDataLogger_ReportInformationWithParameters_Transition apart
   515 						from iDataLogger, which may have changed state.
   516 						(@see CDataLogger::ReportInformationWithParameters post-condition) for iDataLogger's new state.
   517 	*/
   518 	inline void TransitMethodL();
   519 
   520 	/**
   521 		@fn				Context() const
   522 		Intended Usage	: To provide access to the unit test context cast to the correct type.
   523 		Error Condition	: None.
   524 		@since			7.0
   525 		@return			The unit test context cast to a CDataLogger_UnitTestContext
   526 		@pre 			iUTContext is a valid CDataLogger_UnitTestContext.
   527 		@post			No change in the CDataLogger_ReportInformationWithParameters_Transition
   528 	*/
   529 	inline CDataLogger_UnitTestContext& Context() const;
   530 	};	// CDataLogger_ReportInformationWithParameters_Transition
   531 
   532 
   533 // Add additional Transition class definitions here...
   534 
   535 #include "DataLoggerTransitions.inl"
   536 
   537 #include "DataLoggerUnitTestContext.inl"
   538 
   539 #endif // __DATALOGGERTRANSITIONS_H__
   540