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 sl@0: #include sl@0: sl@0: #include "TestController.h" sl@0: #include "ComponentTester.h" sl@0: #include sl@0: #include sl@0: sl@0: sl@0: CTestController::CTestController(CActiveScheduler* aScheduler, RTest* aRTest) sl@0: : CBase(), sl@0: iScheduler(aScheduler), sl@0: iRTest(aRTest) sl@0: { sl@0: } sl@0: sl@0: sl@0: EXPORT_C CTestController::~CTestController() sl@0: { sl@0: // Cancel any outstanding tests sl@0: Cancel(); sl@0: sl@0: iTestList.ResetAndDestroy(); sl@0: delete iTestManager; sl@0: if(iOwnScheduler) sl@0: delete iScheduler; sl@0: Dll::SetTls(NULL); sl@0: delete iDataLogger; sl@0: } sl@0: sl@0: sl@0: EXPORT_C CTestController* CTestController::NewLC(CActiveScheduler* aScheduler, sl@0: ComponentTesterInitialiserLC aEntryPoint, sl@0: RTest* aRTest, sl@0: TLoggingInfo* aLogInfo) sl@0: { sl@0: CTestController* self = new (ELeave) CTestController(aScheduler, aRTest); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(aLogInfo, aEntryPoint); sl@0: return self; sl@0: } sl@0: sl@0: sl@0: EXPORT_C CTestController* CTestController::NewL(CActiveScheduler* aScheduler, sl@0: ComponentTesterInitialiserLC aEntryPoint, sl@0: RTest* aRTest, sl@0: TLoggingInfo* aLogInfo) sl@0: { sl@0: CTestController* self = NewLC(aScheduler, aEntryPoint, aRTest, aLogInfo); sl@0: CleanupStack::Pop(); sl@0: return self; sl@0: } sl@0: sl@0: sl@0: void CTestController::ConstructL(TLoggingInfo* aLogInfo, ComponentTesterInitialiserLC aEntryPoint) sl@0: { sl@0: if(iScheduler == NULL) sl@0: { sl@0: // Construct and install the active scheduler sl@0: iScheduler = new (ELeave) CActiveScheduler; sl@0: iOwnScheduler = ETrue; sl@0: CActiveScheduler::Install(iScheduler); sl@0: } sl@0: sl@0: // Create a logging channel sl@0: iDataLogger = CDataLogger::NewL(aLogInfo); sl@0: Dll::SetTls(iDataLogger); sl@0: sl@0: // Create the component tester object required for testing sl@0: InitialiseComponentTesterL(aEntryPoint); sl@0: sl@0: _LIT(KCreatingTestManager,"Creating a test manager"); sl@0: iDataLogger->LogInformation(KCreatingTestManager()); sl@0: sl@0: iTestManager = CTestManager::NewL(&iTestList, *iDataLogger, *this, iRTest); sl@0: } sl@0: sl@0: sl@0: EXPORT_C void CTestController::Start() sl@0: { sl@0: iTestManager->RunTests(NULL); sl@0: iScheduler->Start(); sl@0: } sl@0: sl@0: EXPORT_C void CTestController::Start(RPointerArray* aTests) sl@0: { sl@0: iTestManager->RunTests(aTests); sl@0: iScheduler->Start(); sl@0: } sl@0: sl@0: EXPORT_C void CTestController::Start(TRequestStatus* aStatus) sl@0: { sl@0: Start(aStatus, NULL); sl@0: } sl@0: sl@0: EXPORT_C void CTestController::Start(TRequestStatus* aStatus, RPointerArray* aTests) sl@0: { sl@0: __ASSERT_DEBUG(CActiveScheduler::Current(), User::Invariant()); sl@0: iClientStatus = aStatus; sl@0: iTestManager->RunTests(aTests); sl@0: } sl@0: sl@0: sl@0: EXPORT_C const RPointerArray& CTestController::FindComponents() const sl@0: { sl@0: // Return the list of classes that can be tested sl@0: return iTestList; sl@0: } sl@0: sl@0: /** sl@0: @fn CleanupArray(TAny* aArray) sl@0: Intended Useage:The CleanupArray 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 CleanupArray(TAny* aArray) sl@0: { sl@0: RPointerArray* array = sl@0: REINTERPRET_CAST(RPointerArray*, aArray); sl@0: array->ResetAndDestroy(); sl@0: delete array; sl@0: } sl@0: sl@0: void CTestController::InitialiseComponentTesterL(ComponentTesterInitialiserLC aEntryPointLC) sl@0: { sl@0: _LIT(KInitCompTester, "Initialising derived component tester object"); sl@0: iDataLogger->LogInformation(KInitCompTester()); sl@0: // Invoking the function passed in will result in a derived sl@0: // CComponentTester object being created and pushed on the clean up sl@0: // stack. Therefore we need to do a pop and destroy later. sl@0: CComponentTester* componentTesterFromEXE = aEntryPointLC(*iDataLogger,*iTestManager); sl@0: sl@0: _LIT(KCreateTranSets,"Creating component tester & Building Unit Test information."); sl@0: iDataLogger->LogInformation(KCreateTranSets()); sl@0: RPointerArray* unitTests = componentTesterFromEXE->TransitionSetsL(); sl@0: sl@0: CleanupStack::PopAndDestroy(componentTesterFromEXE); //componentTester as pushed by aEntryPoint sl@0: sl@0: TCleanupItem cleanup(CleanupArray, unitTests); sl@0: CleanupStack::PushL(cleanup); sl@0: sl@0: CComponentInfo* info = CComponentInfo::NewL(aEntryPointLC, unitTests); sl@0: CleanupStack::Pop(unitTests); // unitTests, now owned by info sl@0: CleanupStack::PushL(info); sl@0: User::LeaveIfError(iTestList.Append(info)); // pass ownership onto the list. sl@0: CleanupStack::Pop(info); // now owned by iTestList sl@0: } sl@0: sl@0: EXPORT_C CDataLogger& CTestController::DataLogger() sl@0: { sl@0: return *(REINTERPRET_CAST(CDataLogger*,Dll::Tls())); sl@0: } sl@0: sl@0: EXPORT_C void CTestController::Cancel() sl@0: { sl@0: if(iTestManager) sl@0: { sl@0: iTestManager->Cancel(); sl@0: sl@0: if(!iTestManager->StartedTests() && iClientStatus) sl@0: { sl@0: User::RequestComplete(iClientStatus, KTestBedTestCancel); sl@0: iClientStatus = NULL; sl@0: } sl@0: } sl@0: } sl@0: sl@0: void CTestController::TestsComplete() sl@0: { sl@0: if(iClientStatus) sl@0: { sl@0: User::RequestComplete(iClientStatus, KErrNone); sl@0: iClientStatus = NULL; sl@0: } sl@0: else sl@0: CActiveScheduler::Stop(); sl@0: } sl@0: