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.
16 #include "TestManager.h"
19 CTestManager::CTestManager(RPointerArray<CComponentInfo>* aTestList,
20 CDataLogger& aDataLogger,
21 MManagerObserver& aObserver,
23 : CActive(CActive::EPriorityStandard),
26 iDataLogger(aDataLogger),
32 CTestManager* CTestManager::NewL(RPointerArray<CComponentInfo>* aTestList,
33 CDataLogger& aDataLogger,
34 MManagerObserver& aObserver,
37 CTestManager* self = new (ELeave) CTestManager(aTestList, aDataLogger, aObserver, aRTest);
38 CleanupStack::PushL(self);
45 void CTestManager::ConstructL()
47 CActiveScheduler::Add(this);
49 // Say we are stopping just in case RunTests never gets called
50 // - if it does get called this will get unset
55 CTestManager::~CTestManager()
59 delete iCurrentTester;
63 void CTestManager::RunL()
65 delete iCurrentTester;
66 iCurrentTester = NULL;
68 if((iCurrentTestLoad < iTestList->Count()) && !iAmStopping)
70 iStatus = KRequestPending;
73 TestComponentL(iCurrentTestLoad);
75 // Next time run the next test
77 // Set the flag for the next state.
78 iAmStopping = iCurrentTestLoad == iTestList->Count();
81 iObserver.TestsComplete();
84 TInt CTestManager::RunError(TInt /*aErrorCode*/)
86 // Do nothing because anything that needs to be cleaned up should be on the cleanup
87 // stack. We want any remaining tests to carry on.
92 void CTestManager::DoCancel()
94 _LIT(KTestsCancelled,"TestBed cancelled at user request.");
95 iDataLogger.LogInformation(KTestsCancelled());
96 iDataLogger.ReportInformation(KTestsCancelled());
98 delete iCurrentTester;
99 iCurrentTester = NULL;
101 iObserver.TestsComplete();
105 void CTestManager::RunTests(RPointerArray<TTestInfo>* aTests)
107 iTestsToRun = aTests;
109 if(iTestList->Count() >0)
110 iAmStopping = EFalse;
113 // If someone tried to call RunTests when there are no tests
114 // complete immediately
115 TRequestStatus* status = &iStatus;
116 User::RequestComplete(status, KErrNone);
124 TRequestStatus* status = &iStatus;
125 User::RequestComplete(status, KErrNone);
128 iStatus = KRequestPending;
133 @fn CleanupTestArray(TAny* aArray)
134 Intended Useage:The CleanupTestArray method is used for cleanup support
135 of locally declared arrays
138 @param aArray is the array whose contents should be destroyed
140 static void CleanupTestArray(TAny* aArray)
142 // Whilst this array is an RPointerArray, it does not own the pointers
143 // and therefor should not destroy them
144 // This should be changed to an RArray
145 RPointerArray<TTestInfo>* array = REINTERPRET_CAST(RPointerArray<TTestInfo>*, aArray);
151 void CTestManager::Complete(CComponentTester* /*aTester*/, TInt /*aUnitTestId*/)
153 TRequestStatus* status = &iStatus;
154 User::RequestComplete(status, KErrNone);
157 void CTestManager::TestComponentL(TInt aComponentIndex)
159 // This should be changed to an RArray<TTestInfo*> and be typedefd
160 RPointerArray<TTestInfo>* tests = NULL;
161 if(iTestsToRun != NULL)
163 tests = new(ELeave) RPointerArray<TTestInfo>;
164 TCleanupItem cleanup(CleanupTestArray, tests);
165 CleanupStack::PushL(cleanup);
166 // Work out which tests to run
167 for(TInt index = 0; index < iTestsToRun->Count(); ++index)
169 if((*iTestsToRun)[index]->iComponentId == aComponentIndex)
170 User::LeaveIfError(tests->Append((*iTestsToRun)[index]));
172 if(tests->Count() == 0)
174 CleanupStack::PopAndDestroy(); // cleanup
179 // Create the EXEs derived CComponentTester for this test iteration.
180 ComponentTesterInitialiserLC createLC = (*iTestList)[aComponentIndex]->GlobalEntryFunc();
181 iCurrentTester= createLC(iDataLogger, *this);
182 CleanupStack::Pop(iCurrentTester);
183 iCurrentTester->SetRTest(iRTest);
185 if(iTestsToRun != NULL)
186 CleanupStack::Pop(); // cleanup
187 // Execute unit tests for the current component
188 iCurrentTester->TestComponent(tests);
191 TBool CTestManager::StartedTests() const
193 return iCurrentTestLoad > 0;