sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include "TestManager.h" sl@0: sl@0: sl@0: CTestManager::CTestManager(RPointerArray* aTestList, sl@0: CDataLogger& aDataLogger, sl@0: MManagerObserver& aObserver, sl@0: RTest* aRTest) sl@0: : CActive(CActive::EPriorityStandard), sl@0: iObserver(aObserver), sl@0: iTestList(aTestList), sl@0: iDataLogger(aDataLogger), sl@0: iRTest(aRTest) sl@0: { sl@0: } sl@0: sl@0: sl@0: CTestManager* CTestManager::NewL(RPointerArray* aTestList, sl@0: CDataLogger& aDataLogger, sl@0: MManagerObserver& aObserver, sl@0: RTest* aRTest) sl@0: { sl@0: CTestManager* self = new (ELeave) CTestManager(aTestList, aDataLogger, aObserver, aRTest); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: CleanupStack::Pop(); sl@0: return self; sl@0: } sl@0: sl@0: sl@0: void CTestManager::ConstructL() sl@0: { sl@0: CActiveScheduler::Add(this); sl@0: sl@0: // Say we are stopping just in case RunTests never gets called sl@0: // - if it does get called this will get unset sl@0: iAmStopping = ETrue; sl@0: } sl@0: sl@0: sl@0: CTestManager::~CTestManager() sl@0: { sl@0: Cancel(); sl@0: sl@0: delete iCurrentTester; sl@0: } sl@0: sl@0: sl@0: void CTestManager::RunL() sl@0: { sl@0: delete iCurrentTester; sl@0: iCurrentTester = NULL; sl@0: sl@0: if((iCurrentTestLoad < iTestList->Count()) && !iAmStopping) sl@0: { sl@0: iStatus = KRequestPending; sl@0: SetActive(); sl@0: sl@0: TestComponentL(iCurrentTestLoad); sl@0: sl@0: // Next time run the next test sl@0: ++iCurrentTestLoad; sl@0: // Set the flag for the next state. sl@0: iAmStopping = iCurrentTestLoad == iTestList->Count(); sl@0: } sl@0: else if(iAmStopping) sl@0: iObserver.TestsComplete(); sl@0: } sl@0: sl@0: TInt CTestManager::RunError(TInt /*aErrorCode*/) sl@0: { sl@0: // Do nothing because anything that needs to be cleaned up should be on the cleanup sl@0: // stack. We want any remaining tests to carry on. sl@0: return KErrNone; sl@0: } sl@0: sl@0: sl@0: void CTestManager::DoCancel() sl@0: { sl@0: _LIT(KTestsCancelled,"TestBed cancelled at user request."); sl@0: iDataLogger.LogInformation(KTestsCancelled()); sl@0: iDataLogger.ReportInformation(KTestsCancelled()); sl@0: sl@0: delete iCurrentTester; sl@0: iCurrentTester = NULL; sl@0: sl@0: iObserver.TestsComplete(); sl@0: } sl@0: sl@0: sl@0: void CTestManager::RunTests(RPointerArray* aTests) sl@0: { sl@0: iTestsToRun = aTests; sl@0: sl@0: if(iTestList->Count() >0) sl@0: iAmStopping = EFalse; sl@0: else sl@0: { sl@0: // If someone tried to call RunTests when there are no tests sl@0: // complete immediately sl@0: TRequestStatus* status = &iStatus; sl@0: User::RequestComplete(status, KErrNone); sl@0: } sl@0: sl@0: if(!IsActive()) sl@0: { sl@0: SetActive(); sl@0: if(!iAmStopping) sl@0: { sl@0: TRequestStatus* status = &iStatus; sl@0: User::RequestComplete(status, KErrNone); sl@0: } sl@0: else sl@0: iStatus = KRequestPending; sl@0: } sl@0: } sl@0: sl@0: /** sl@0: @fn CleanupTestArray(TAny* aArray) sl@0: Intended Useage:The CleanupTestArray method is used for cleanup support sl@0: of locally declared arrays sl@0: @internalComponent sl@0: @since 7.0 sl@0: @param aArray is the array whose contents should be destroyed sl@0: */ sl@0: static void CleanupTestArray(TAny* aArray) sl@0: { sl@0: // Whilst this array is an RPointerArray, it does not own the pointers sl@0: // and therefor should not destroy them sl@0: // This should be changed to an RArray sl@0: RPointerArray* array = REINTERPRET_CAST(RPointerArray*, aArray); sl@0: array->Reset(); sl@0: delete array; sl@0: } sl@0: sl@0: sl@0: void CTestManager::Complete(CComponentTester* /*aTester*/, TInt /*aUnitTestId*/) sl@0: { sl@0: TRequestStatus* status = &iStatus; sl@0: User::RequestComplete(status, KErrNone); sl@0: } sl@0: sl@0: void CTestManager::TestComponentL(TInt aComponentIndex) sl@0: { sl@0: // This should be changed to an RArray and be typedefd sl@0: RPointerArray* tests = NULL; sl@0: if(iTestsToRun != NULL) sl@0: { sl@0: tests = new(ELeave) RPointerArray; sl@0: TCleanupItem cleanup(CleanupTestArray, tests); sl@0: CleanupStack::PushL(cleanup); sl@0: // Work out which tests to run sl@0: for(TInt index = 0; index < iTestsToRun->Count(); ++index) sl@0: { sl@0: if((*iTestsToRun)[index]->iComponentId == aComponentIndex) sl@0: User::LeaveIfError(tests->Append((*iTestsToRun)[index])); sl@0: } sl@0: if(tests->Count() == 0) sl@0: { sl@0: CleanupStack::PopAndDestroy(); // cleanup sl@0: Complete(NULL, 0); sl@0: return; sl@0: } sl@0: } sl@0: // Create the EXEs derived CComponentTester for this test iteration. sl@0: ComponentTesterInitialiserLC createLC = (*iTestList)[aComponentIndex]->GlobalEntryFunc(); sl@0: iCurrentTester= createLC(iDataLogger, *this); sl@0: CleanupStack::Pop(iCurrentTester); sl@0: iCurrentTester->SetRTest(iRTest); sl@0: sl@0: if(iTestsToRun != NULL) sl@0: CleanupStack::Pop(); // cleanup sl@0: // Execute unit tests for the current component sl@0: iCurrentTester->TestComponent(tests); sl@0: } sl@0: sl@0: TBool CTestManager::StartedTests() const sl@0: { sl@0: return iCurrentTestLoad > 0; sl@0: } sl@0: