First public contribution.
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 // This file contains the definition of the class CUnitTest
15 // This file comment is for DOxygen only and is ignored by EDoc.
23 #ifndef __UNITTEST_H__
24 #define __UNITTEST_H__
30 #include <ecom/test_bed/testutilities.h>
31 #include <ecom/test_bed/transition.h>
32 #include <ecom/test_bed/unittestinfo.h>
33 #include <ecom/test_bed/unittestobserver.h>
40 Comments : Abstract base class upon which a test developer can base his unit test class.
41 Most functionality is implemented in this base class, to write a derived class just implement
42 a NewL() and a ConstructL() on the new object. ConstructL() should first call
43 UnitTestConstructL() and then create the transitions which make up this unit test.
47 _LIT(KExampleUnitTest,"CExampleUnitTest");
49 CExampleUnitTest* CExampleUnitTest::NewL(CDataLogger& aDataLogger,
50 MUnitTestObserver& aObserver)
52 CExampleUnitTest* self = new(ELeave) CExampleUnitTest(aDataLogger,
58 TInt CExampleUnitTest::RunError(TInt aError)
60 // The RunL left so chain to the base first and then cleanup
61 TInt error = CUnitTest::RunError(aError); // Chain to base
67 CExampleUnitTest::~CExampleUnitTest()
69 // delete the test context information
70 delete iStateAccessor;
74 // Simply delete our test class instance
78 CExampleUnitTest::CExampleUnitTest(CDataLogger& aDataLogger,
79 MUnitTestObserver& aObserver,
80 MStateAccessor& aStateAccessor)
81 : CUnitTest(KExampleUnitTest, aDataLogger, aObserver, aStateAccessor)
86 // Now the Individual transitions need to be added.
87 void CExampleUnitTest::ConstructL()
89 // Perform base class initialization
92 // Create the input variables to the transition creation
93 iStateAccessor = new(ELeave) TExampleStateAccessor();
94 iUTContext = new(ELeave) CUnitTestContext(iDataLogger, *iStateAccessor, *this);
95 iValidator = new(ELeave) TTransitionValidator(*iUTContext);
97 // Add the Transitions in the order they are to run
98 // C'tor first, D'tor last...
99 AddTransitionL(new(ELeave)CExampleNewLTransition(*iUTContext, *iValidator, iTestClass));
100 AddTransitionL(new(ELeave)CExampleDtorTransition(*iUTContext, *iValidator, iTestClass));
106 class CUnitTest : public CTimer, public MTransitionObserver
111 Intended Usage : Standard Destructor
115 IMPORT_C ~CUnitTest();
118 @fn void RunTest(TTimeIntervalMicroSeconds32 aTimeAfter = 0)
119 Intended Usage : Sets up the Timer Object request to cause the test to run.
122 @param aTimeAfter The time after which the unit test should be run
124 @post RunL() will be set up to run after the specified time.
127 IMPORT_C void RunTest(TTimeIntervalMicroSeconds32 aTimeAfter = 0);
130 @fn inline const TDesC& UnitTestName() const
131 Intended Usage : Return the name identifier of this Unit Test
134 @return TDesC& The identifier of this unit test
138 inline const TDesC& UnitTestName() const;
141 @fn TransitionSetL() const
142 Intended Usage : Creates and returns a CUnitTestInfo containing information on this
143 UnitTest. Passes ownership of the CUnitTestInfo to the calling object.
146 @return CUnitTestInfo* Information on this unit test
150 CUnitTestInfo* TransitionSetL() const;
153 @fn GetCurrentTransition() const
154 Intended Usage : Retrieve a reference to the transition whose RunL() method
155 is currently executing.
156 This allows transition information can be retrieved and
157 RepeatOnce() can be called on the transition.
159 @return CTransition& a reference to the currently executing transition.
164 IMPORT_C CTransition& GetCurrentTransition() const;
167 @fn SetCurrentTransition(CTransition& aTransition)
168 Intended Usage : MTransitionObserver override that recieves a reference to
169 the transition whose RnunL() method is executing.
170 This allows transition information can be retrieved and
171 RepeatOnce() can be called on the transition.
173 @param aTransition A reference to the transition to set as current
176 @post aTransition will be recorded as the currently
177 executing transition.
180 IMPORT_C void SetCurrentTransition(CTransition& aTransition);
183 @fn Complete(CTransition& aTransition, TInt aAsyncPostCheckError)
184 Intended Usage : MTransitionObserver override that is called to indicate
185 that an asynchronous function on the specified
186 transition has completed.
188 @param aTransition The transition which has completed an async function.
189 @param aAsyncPostCheckError An error code from the second phase of post-condition
190 validation done after the transition's asynchronous request had completed.
191 Used for asynchronous transitions only - for synchronous transitions, 2-phase
192 post-condition checking does not apply, and a value of KErrNone is supplied.
193 @pre The specified transition has launched an asynchronous function
194 @post The transition has fully completed, if all transitions are complete
195 then the unittest is complete.
198 IMPORT_C void Complete(CTransition& aTransition, TInt aAsyncPostCheckError);
201 @fn SetParametersL(TAny* aParams)
202 Intended Usage : Should be overridden in the derived unit test to accept parameters
203 to be used in the unit test. The default implementation is to do nothing.
206 @param aParams The parameter block which the unit test will use
207 @pre This CUnitTest is constructed
208 @post The parameters are stored and ready for use in the test
211 IMPORT_C virtual void SetParametersL(TAny* aParams);
214 @fn inline void SetRtest(RTest* aRTest)
215 Intended Usage : Used by Component Tester to initialise the iRTest
216 attribute so it coul dbe used in assessing unit test results.
219 @param aRTest Pointer to RTest object
223 inline void SetRTest(RTest* aRTest);
226 @fn PrepareUnitTestL()
227 Intended Usage : May be overidden in the derived unit test to perform any unit test
228 specific environment setup (eg copying data files into place). The
229 default implementation is to do nothing.
230 Error Condition : Depends on implementation.
232 @pre This CUnitTest is constructed
233 @post Depends on implementation
236 virtual void PrepareUnitTestL();
240 @fn inline CUnitTest(const TDesC& aName,
241 CDataLogger& aDataLogger,
242 MUnitTestObserver& aUnitTestObserver)
243 Intended Usage : Standard Constructor
245 @param aName The identifier of this unit test
246 @param aDataLogger Provides the logging capability
247 @param aUnitTestObserver Is informed when this unit test completes
251 inline CUnitTest(const TDesC& aName,
252 CDataLogger& aDataLogger,
253 MUnitTestObserver& aUnitTestObserver);
256 @fn virtual void RunL()
257 Intended Usage : Implementation of CActive method. Each iteration of RunL() causes one transition
261 @pre Preconditions are ensured by RunTest()
262 @post Transition has been activated
265 IMPORT_C virtual void RunL();
268 @fn IMPORT_C virtual void ConstructL() = 0
269 Intended Usage : Must be overridden in derived class to complete construction
274 IMPORT_C virtual void ConstructL() = 0;
277 @fn IMPORT_C void UnitTestConstructL()
278 Intended Usage : Called from derived class construction to perform all base
279 class initialisation.
282 @pre Should be called during construction of the derived class to perform base class
287 IMPORT_C void UnitTestConstructL();
290 @fn IMPORT_C void AddTransitionL(CTransition* aTransition)
291 Intended Usage : Adds the transition to the list to be run during this unit test
294 @param aTransition The transition to be added to the list
295 @pre Should be used in developer implemented ConstructL() to add transitions to the
297 @post The specified transition is added to the list to be run for this unit test
300 IMPORT_C void AddTransitionL(CTransition* aTransition);
303 @fn IMPORT_C void AddBlockingTransitionL(CTransition* aTransition)
304 Intended Usage : Adds a transition to the unit test which will block until all
305 previous asynchronous transitions have completed before running.
308 @param aTransition The transition to be added to the list
309 @pre Should be used in developer implemented ConstructL() to add transitions to the
311 @post The specified transition is added to the list to be run for this unit test
314 IMPORT_C void AddBlockingTransitionL(CTransition* aTransition);
317 @fn virtual void DoCancel()
318 Intended Usage : Standard Active Object method for cancelling the current request
321 @post Any outstanding requests are cancelled
323 IMPORT_C virtual void DoCancel();
326 IMPORT_C void AddLeaveErrorCodeL(TInt aLeaveErrorCode);
330 /** The identifier of this Unit Test*/
332 const TDesC& iUnitTestName;
333 /** List of the transitions which make up this Unit Test*/
335 RPointerArray<CTransition>* iTransitions;
336 /** The test logging mechanism*/
338 CDataLogger& iDataLogger;
339 /** Used to call back to the test controller that the test has finished*/
341 MUnitTestObserver& iUnitTestObserver;
342 /** The index in iTransitions of the next transition to be run */
344 TInt iNextTransitionIndex;
345 /** List of the asyncronous transitions which have requests outstanding */
347 RPointerArray<CTransition>* iOutstandingTransitions;
348 /** Indicates that the next transition is waiting for the completion of async requests
349 before it will be run*/
351 TBool iWaitingForCompletion;
352 /** The currently executing transition : NOT OWNED */
354 CTransition* iCurrentlyExecutingTransition;
355 /** List of all the acceptable error codes */
357 RArray<TInt> iLeaveErrorArray;
358 /** Connection to the file server - required by iFileMan */
361 /** File manager - useful in PrepareUnitTestL if copying files is required */
364 /** Optional reference to the RTest object used in the EXE test harness code which
365 kicked off this test framework */
368 friend class TUnitTest_StateAccessor;
371 #include <ecom/test_bed/unittest.inl>