os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/DataLoggerTest/DataLoggerTransitions.h
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // The definitions of the transition classes upon the CDataLogger class methods.
18 #ifndef __DATALOGGERTRANSITIONS_H__
19 #define __DATALOGGERTRANSITIONS_H__
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>
28 #define CTransitionType CLeakTestTransition
30 // ______________________________________________________________________________
35 Comments : Provide all the CDataLogger specific
36 parameters and behaviour on the CDataLogger
37 test class for a transition.
39 class CDataLogger_UnitTestContext : public CUnitTestContext
43 @fn CDataLogger_UnitTestContext(CDataLogger& aDataLogger,
44 MStateAccessor& aStateAccessor,
45 MTransitionObserver& aObserver)
46 Intended Usage : Default constructor.
47 Error Condition : None.
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.
53 @post CDataLogger_UnitTestContext is fully constructed, and initialised.
55 inline CDataLogger_UnitTestContext(CDataLogger& aDataLogger,
56 MStateAccessor& aStateAccessor,
57 MTransitionObserver& aObserver);
60 @fn ~CDataLogger_UnitTestContext()
61 Intended Usage : Default Destructor
63 @pre CDataLogger_UnitTestContext is fully constructed.
64 @post CDataLogger_UnitTestContext is fully destroyed
66 virtual inline ~CDataLogger_UnitTestContext();
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 */
76 /** The argument set to be logged */
78 /** A narrow descriptor version of the argument set to be logged */
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;
87 }; // CDataLogger_UnitTestContext
89 // ______________________________________________________________________________
94 Comments : Transition test of the CDataLogger::NewL method.
96 class CDataLogger_NewL_Transition : public CTransitionType
100 @fn CDataLogger_NewL_Transition(CUnitTestContext& aUTContext,
101 TTransitionValidator& aValidator)
102 Intended Usage : Standard c'tor method.
103 Error Condition : None.
105 @param aUTContext The context this transition is operating in.
106 @param aValidator Used for checking the pre & post conditions of the test object.
108 @post CDataLogger_NewL_Transition is fully constructed.
110 CDataLogger_NewL_Transition(CUnitTestContext& aUTContext,
111 TTransitionValidator& aValidator);
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)
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.
124 inline void TransitMethodL();
128 Intended Usage : To provide access to the unit test context cast to the correct type.
129 Error Condition : None.
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
135 inline CDataLogger_UnitTestContext& Context() const;
136 }; // CDataLogger_NewL_Transition
138 // ______________________________________________________________________________
143 Comments : Transition test of the CDataLogger::Dtor method.
145 class CDataLogger_Dtor_Transition : public CTransition
149 @fn CDataLogger_Dtor_Transition(CUnitTestContext& aUTContext,
150 TTransitionValidator& aValidator)
151 Intended Usage : Standard c'tor method.
152 Error Condition : None.
154 @param aUTContext The context this transition is operating in.
155 @param aValidator Used for checking the pre & post conditions of the test object.
157 @post CDataLogger_Dtor_Transition is fully constructed.
159 CDataLogger_Dtor_Transition(CUnitTestContext& aUTContext,
160 TTransitionValidator& aValidator);
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)
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.
173 inline void TransitMethodL();
177 Intended Usage : To provide access to the unit test context cast to the correct type.
178 Error Condition : None.
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
184 inline CDataLogger_UnitTestContext& Context() const;
185 }; // CDataLogger_Dtor_Transition
187 // ______________________________________________________________________________
192 Comments : Transition test of the CDataLogger::DumpMemoryBlock method.
194 class CDataLogger_DumpMemoryBlock_Transition : public CTransition
198 @fn CDataLogger_DumpMemoryBlock_Transition(CUnitTestContext& aUTContext,
199 TTransitionValidator& aValidator)
200 Intended Usage : Standard c'tor method.
201 Error Condition : None.
203 @param aUTContext The context this transition is operating in.
204 @param aValidator Used for checking the pre & post conditions of the test object.
206 @post CDataLogger_DumpMemoryBlock_Transition is fully constructed.
208 CDataLogger_DumpMemoryBlock_Transition(CUnitTestContext& aUTContext,
209 TTransitionValidator& aValidator);
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)
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.
222 inline void TransitMethodL();
226 Intended Usage : To provide access to the unit test context cast to the correct type.
227 Error Condition : None.
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
233 inline CDataLogger_UnitTestContext& Context() const;
234 }; // CDataLogger_DumpMemoryBlock_Transition
237 // ______________________________________________________________________________
242 Comments : Transition test of the CDataLogger::LogInformation method.
244 class CDataLogger_LogInformation_Transition : public CTransition
248 @fn CDataLogger_LogInformation_Transition(CUnitTestContext& aUTContext,
249 TTransitionValidator& aValidator)
250 Intended Usage : Standard c'tor method.
251 Error Condition : None.
253 @param aUTContext The context this transition is operating in.
254 @param aValidator Used for checking the pre & post conditions of the test object.
256 @post CDataLogger_LogInformation_Transition is fully constructed.
258 CDataLogger_LogInformation_Transition(CUnitTestContext& aUTContext,
259 TTransitionValidator& aValidator);
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)
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.
272 inline void TransitMethodL();
276 Intended Usage : To provide access to the unit test context cast to the correct type.
277 Error Condition : None.
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
283 inline CDataLogger_UnitTestContext& Context() const;
284 }; // CDataLogger_LogInformation_Transition
286 // ______________________________________________________________________________
291 Comments : Transition test of the CDataLogger::LogInformationNarrow method.
293 class CDataLogger_LogInformationNarrow_Transition : public CTransition
297 @fn CDataLogger_LogInformationNarrow_Transition(CUnitTestContext& aUTContext,
298 TTransitionValidator& aValidator)
299 Intended Usage : Standard c'tor method.
300 Error Condition : None.
302 @param aUTContext The context this transition is operating in.
303 @param aValidator Used for checking the pre & post conditions of the test object.
305 @post CDataLogger_LogInformationNarrow_Transition is fully constructed.
307 CDataLogger_LogInformationNarrow_Transition(CUnitTestContext& aUTContext,
308 TTransitionValidator& aValidator);
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)
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.
321 inline void TransitMethodL();
325 Intended Usage : To provide access to the unit test context cast to the correct type.
326 Error Condition : None.
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
332 inline CDataLogger_UnitTestContext& Context() const;
333 }; // CDataLogger_LogInformationNarrow_Transition
335 // ______________________________________________________________________________
340 Comments : Transition test of the CDataLogger::LogInformationWithParameters method.
342 class CDataLogger_LogInformationWithParameters_Transition : public CTransition
346 @fn CDataLogger_LogInformationWithParameters_Transition(CUnitTestContext& aUTContext,
347 TTransitionValidator& aValidator)
348 Intended Usage : Standard c'tor method.
349 Error Condition : None.
351 @param aUTContext The context this transition is operating in.
352 @param aValidator Used for checking the pre & post conditions of the test object.
354 @post CDataLogger_LogInformationWithParameters_Transition is fully constructed.
356 CDataLogger_LogInformationWithParameters_Transition(CUnitTestContext& aUTContext,
357 TTransitionValidator& aValidator);
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)
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.
370 inline void TransitMethodL();
374 Intended Usage : To provide access to the unit test context cast to the correct type.
375 Error Condition : None.
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
381 inline CDataLogger_UnitTestContext& Context() const;
382 }; // CDataLogger_LogInformationWithParameters_Transition
384 // ______________________________________________________________________________
389 Comments : Transition test of the CDataLogger::LogInformationWithParametersNarrow method.
391 class CDataLogger_LogInformationWithParametersNarrow_Transition : public CTransition
395 @fn CDataLogger_LogInformationWithParametersNarrow_Transition(CUnitTestContext& aUTContext,
396 TTransitionValidator& aValidator)
397 Intended Usage : Standard c'tor method.
398 Error Condition : None.
400 @param aUTContext The context this transition is operating in.
401 @param aValidator Used for checking the pre & post conditions of the test object.
403 @post CDataLogger_LogInformationWithParametersNarrow_Transition is fully constructed.
405 CDataLogger_LogInformationWithParametersNarrow_Transition(CUnitTestContext& aUTContext,
406 TTransitionValidator& aValidator);
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)
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.
419 inline void TransitMethodL();
423 Intended Usage : To provide access to the unit test context cast to the correct type.
424 Error Condition : None.
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
430 inline CDataLogger_UnitTestContext& Context() const;
431 }; // CDataLogger_LogInformationWithParametersNarrow_Transition
433 // ______________________________________________________________________________
438 Comments : Transition test of the CDataLogger::ReportInformation method.
440 class CDataLogger_ReportInformation_Transition : public CTransition
444 @fn CDataLogger_ReportInformation_Transition(CUnitTestContext& aUTContext,
445 TTransitionValidator& aValidator)
446 Intended Usage : Standard c'tor method.
447 Error Condition : None.
449 @param aUTContext The context this transition is operating in.
450 @param aValidator Used for checking the pre & post conditions of the test object.
452 @post CDataLogger_ReportInformation_Transition is fully constructed.
454 CDataLogger_ReportInformation_Transition(CUnitTestContext& aUTContext,
455 TTransitionValidator& aValidator);
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)
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.
468 inline void TransitMethodL();
472 Intended Usage : To provide access to the unit test context cast to the correct type.
473 Error Condition : None.
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
479 inline CDataLogger_UnitTestContext& Context() const;
480 }; // CDataLogger_ReportInformation_Transition
483 // ______________________________________________________________________________
488 Comments : Transition test of the CDataLogger::ReportInformationWithParameters method.
490 class CDataLogger_ReportInformationWithParameters_Transition : public CTransition
494 @fn CDataLogger_ReportInformationWithParameters_Transition(CUnitTestContext& aUTContext,
495 TTransitionValidator& aValidator)
496 Intended Usage : Standard c'tor method.
497 Error Condition : None.
499 @param aUTContext The context this transition is operating in.
500 @param aValidator Used for checking the pre & post conditions of the test object.
502 @post CDataLogger_ReportInformationWithParameters_Transition is fully constructed.
504 CDataLogger_ReportInformationWithParameters_Transition(CUnitTestContext& aUTContext,
505 TTransitionValidator& aValidator);
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)
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.
518 inline void TransitMethodL();
522 Intended Usage : To provide access to the unit test context cast to the correct type.
523 Error Condition : None.
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
529 inline CDataLogger_UnitTestContext& Context() const;
530 }; // CDataLogger_ReportInformationWithParameters_Transition
533 // Add additional Transition class definitions here...
535 #include "DataLoggerTransitions.inl"
537 #include "DataLoggerUnitTestContext.inl"
539 #endif // __DATALOGGERTRANSITIONS_H__