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.
19 #include "TestController.h"
20 #include "ComponentTester.h"
21 #include <ecom/test_bed/testbeddefinitions.h>
22 #include <ecom/test_bed/datalogger.h>
25 CTestController::CTestController(CActiveScheduler* aScheduler, RTest* aRTest)
27 iScheduler(aScheduler),
33 EXPORT_C CTestController::~CTestController()
35 // Cancel any outstanding tests
38 iTestList.ResetAndDestroy();
47 EXPORT_C CTestController* CTestController::NewLC(CActiveScheduler* aScheduler,
48 ComponentTesterInitialiserLC aEntryPoint,
50 TLoggingInfo* aLogInfo)
52 CTestController* self = new (ELeave) CTestController(aScheduler, aRTest);
53 CleanupStack::PushL(self);
54 self->ConstructL(aLogInfo, aEntryPoint);
59 EXPORT_C CTestController* CTestController::NewL(CActiveScheduler* aScheduler,
60 ComponentTesterInitialiserLC aEntryPoint,
62 TLoggingInfo* aLogInfo)
64 CTestController* self = NewLC(aScheduler, aEntryPoint, aRTest, aLogInfo);
70 void CTestController::ConstructL(TLoggingInfo* aLogInfo, ComponentTesterInitialiserLC aEntryPoint)
72 if(iScheduler == NULL)
74 // Construct and install the active scheduler
75 iScheduler = new (ELeave) CActiveScheduler;
76 iOwnScheduler = ETrue;
77 CActiveScheduler::Install(iScheduler);
80 // Create a logging channel
81 iDataLogger = CDataLogger::NewL(aLogInfo);
82 Dll::SetTls(iDataLogger);
84 // Create the component tester object required for testing
85 InitialiseComponentTesterL(aEntryPoint);
87 _LIT(KCreatingTestManager,"Creating a test manager");
88 iDataLogger->LogInformation(KCreatingTestManager());
90 iTestManager = CTestManager::NewL(&iTestList, *iDataLogger, *this, iRTest);
94 EXPORT_C void CTestController::Start()
96 iTestManager->RunTests(NULL);
100 EXPORT_C void CTestController::Start(RPointerArray<TTestInfo>* aTests)
102 iTestManager->RunTests(aTests);
106 EXPORT_C void CTestController::Start(TRequestStatus* aStatus)
108 Start(aStatus, NULL);
111 EXPORT_C void CTestController::Start(TRequestStatus* aStatus, RPointerArray<TTestInfo>* aTests)
113 __ASSERT_DEBUG(CActiveScheduler::Current(), User::Invariant());
114 iClientStatus = aStatus;
115 iTestManager->RunTests(aTests);
119 EXPORT_C const RPointerArray<CComponentInfo>& CTestController::FindComponents() const
121 // Return the list of classes that can be tested
126 @fn CleanupArray(TAny* aArray)
127 Intended Useage:The CleanupArray method is used for cleanup support
128 of locally declared arrays
131 @param aArray is the array whose contents should be destroyed
133 static void CleanupArray(TAny* aArray)
135 RPointerArray<CUnitTestInfo>* array =
136 REINTERPRET_CAST(RPointerArray<CUnitTestInfo>*, aArray);
137 array->ResetAndDestroy();
141 void CTestController::InitialiseComponentTesterL(ComponentTesterInitialiserLC aEntryPointLC)
143 _LIT(KInitCompTester, "Initialising derived component tester object");
144 iDataLogger->LogInformation(KInitCompTester());
145 // Invoking the function passed in will result in a derived
146 // CComponentTester object being created and pushed on the clean up
147 // stack. Therefore we need to do a pop and destroy later.
148 CComponentTester* componentTesterFromEXE = aEntryPointLC(*iDataLogger,*iTestManager);
150 _LIT(KCreateTranSets,"Creating component tester & Building Unit Test information.");
151 iDataLogger->LogInformation(KCreateTranSets());
152 RPointerArray<CUnitTestInfo>* unitTests = componentTesterFromEXE->TransitionSetsL();
154 CleanupStack::PopAndDestroy(componentTesterFromEXE); //componentTester as pushed by aEntryPoint
156 TCleanupItem cleanup(CleanupArray, unitTests);
157 CleanupStack::PushL(cleanup);
159 CComponentInfo* info = CComponentInfo::NewL(aEntryPointLC, unitTests);
160 CleanupStack::Pop(unitTests); // unitTests, now owned by info
161 CleanupStack::PushL(info);
162 User::LeaveIfError(iTestList.Append(info)); // pass ownership onto the list.
163 CleanupStack::Pop(info); // now owned by iTestList
166 EXPORT_C CDataLogger& CTestController::DataLogger()
168 return *(REINTERPRET_CAST(CDataLogger*,Dll::Tls()));
171 EXPORT_C void CTestController::Cancel()
175 iTestManager->Cancel();
177 if(!iTestManager->StartedTests() && iClientStatus)
179 User::RequestComplete(iClientStatus, KTestBedTestCancel);
180 iClientStatus = NULL;
185 void CTestController::TestsComplete()
189 User::RequestComplete(iClientStatus, KErrNone);
190 iClientStatus = NULL;
193 CActiveScheduler::Stop();