sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <e32std.h>
|
sl@0
|
17 |
#include <e32uid.h>
|
sl@0
|
18 |
|
sl@0
|
19 |
#include "TestController.h"
|
sl@0
|
20 |
#include "ComponentTester.h"
|
sl@0
|
21 |
#include <ecom/test_bed/testbeddefinitions.h>
|
sl@0
|
22 |
#include <ecom/test_bed/datalogger.h>
|
sl@0
|
23 |
|
sl@0
|
24 |
|
sl@0
|
25 |
CTestController::CTestController(CActiveScheduler* aScheduler, RTest* aRTest)
|
sl@0
|
26 |
: CBase(),
|
sl@0
|
27 |
iScheduler(aScheduler),
|
sl@0
|
28 |
iRTest(aRTest)
|
sl@0
|
29 |
{
|
sl@0
|
30 |
}
|
sl@0
|
31 |
|
sl@0
|
32 |
|
sl@0
|
33 |
EXPORT_C CTestController::~CTestController()
|
sl@0
|
34 |
{
|
sl@0
|
35 |
// Cancel any outstanding tests
|
sl@0
|
36 |
Cancel();
|
sl@0
|
37 |
|
sl@0
|
38 |
iTestList.ResetAndDestroy();
|
sl@0
|
39 |
delete iTestManager;
|
sl@0
|
40 |
if(iOwnScheduler)
|
sl@0
|
41 |
delete iScheduler;
|
sl@0
|
42 |
Dll::SetTls(NULL);
|
sl@0
|
43 |
delete iDataLogger;
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
|
sl@0
|
47 |
EXPORT_C CTestController* CTestController::NewLC(CActiveScheduler* aScheduler,
|
sl@0
|
48 |
ComponentTesterInitialiserLC aEntryPoint,
|
sl@0
|
49 |
RTest* aRTest,
|
sl@0
|
50 |
TLoggingInfo* aLogInfo)
|
sl@0
|
51 |
{
|
sl@0
|
52 |
CTestController* self = new (ELeave) CTestController(aScheduler, aRTest);
|
sl@0
|
53 |
CleanupStack::PushL(self);
|
sl@0
|
54 |
self->ConstructL(aLogInfo, aEntryPoint);
|
sl@0
|
55 |
return self;
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
|
sl@0
|
59 |
EXPORT_C CTestController* CTestController::NewL(CActiveScheduler* aScheduler,
|
sl@0
|
60 |
ComponentTesterInitialiserLC aEntryPoint,
|
sl@0
|
61 |
RTest* aRTest,
|
sl@0
|
62 |
TLoggingInfo* aLogInfo)
|
sl@0
|
63 |
{
|
sl@0
|
64 |
CTestController* self = NewLC(aScheduler, aEntryPoint, aRTest, aLogInfo);
|
sl@0
|
65 |
CleanupStack::Pop();
|
sl@0
|
66 |
return self;
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
|
sl@0
|
70 |
void CTestController::ConstructL(TLoggingInfo* aLogInfo, ComponentTesterInitialiserLC aEntryPoint)
|
sl@0
|
71 |
{
|
sl@0
|
72 |
if(iScheduler == NULL)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
// Construct and install the active scheduler
|
sl@0
|
75 |
iScheduler = new (ELeave) CActiveScheduler;
|
sl@0
|
76 |
iOwnScheduler = ETrue;
|
sl@0
|
77 |
CActiveScheduler::Install(iScheduler);
|
sl@0
|
78 |
}
|
sl@0
|
79 |
|
sl@0
|
80 |
// Create a logging channel
|
sl@0
|
81 |
iDataLogger = CDataLogger::NewL(aLogInfo);
|
sl@0
|
82 |
Dll::SetTls(iDataLogger);
|
sl@0
|
83 |
|
sl@0
|
84 |
// Create the component tester object required for testing
|
sl@0
|
85 |
InitialiseComponentTesterL(aEntryPoint);
|
sl@0
|
86 |
|
sl@0
|
87 |
_LIT(KCreatingTestManager,"Creating a test manager");
|
sl@0
|
88 |
iDataLogger->LogInformation(KCreatingTestManager());
|
sl@0
|
89 |
|
sl@0
|
90 |
iTestManager = CTestManager::NewL(&iTestList, *iDataLogger, *this, iRTest);
|
sl@0
|
91 |
}
|
sl@0
|
92 |
|
sl@0
|
93 |
|
sl@0
|
94 |
EXPORT_C void CTestController::Start()
|
sl@0
|
95 |
{
|
sl@0
|
96 |
iTestManager->RunTests(NULL);
|
sl@0
|
97 |
iScheduler->Start();
|
sl@0
|
98 |
}
|
sl@0
|
99 |
|
sl@0
|
100 |
EXPORT_C void CTestController::Start(RPointerArray<TTestInfo>* aTests)
|
sl@0
|
101 |
{
|
sl@0
|
102 |
iTestManager->RunTests(aTests);
|
sl@0
|
103 |
iScheduler->Start();
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
EXPORT_C void CTestController::Start(TRequestStatus* aStatus)
|
sl@0
|
107 |
{
|
sl@0
|
108 |
Start(aStatus, NULL);
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
EXPORT_C void CTestController::Start(TRequestStatus* aStatus, RPointerArray<TTestInfo>* aTests)
|
sl@0
|
112 |
{
|
sl@0
|
113 |
__ASSERT_DEBUG(CActiveScheduler::Current(), User::Invariant());
|
sl@0
|
114 |
iClientStatus = aStatus;
|
sl@0
|
115 |
iTestManager->RunTests(aTests);
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
|
sl@0
|
119 |
EXPORT_C const RPointerArray<CComponentInfo>& CTestController::FindComponents() const
|
sl@0
|
120 |
{
|
sl@0
|
121 |
// Return the list of classes that can be tested
|
sl@0
|
122 |
return iTestList;
|
sl@0
|
123 |
}
|
sl@0
|
124 |
|
sl@0
|
125 |
/**
|
sl@0
|
126 |
@fn CleanupArray(TAny* aArray)
|
sl@0
|
127 |
Intended Useage:The CleanupArray method is used for cleanup support
|
sl@0
|
128 |
of locally declared arrays
|
sl@0
|
129 |
@internalComponent
|
sl@0
|
130 |
@since 7.0
|
sl@0
|
131 |
@param aArray is the array whose contents should be destroyed
|
sl@0
|
132 |
*/
|
sl@0
|
133 |
static void CleanupArray(TAny* aArray)
|
sl@0
|
134 |
{
|
sl@0
|
135 |
RPointerArray<CUnitTestInfo>* array =
|
sl@0
|
136 |
REINTERPRET_CAST(RPointerArray<CUnitTestInfo>*, aArray);
|
sl@0
|
137 |
array->ResetAndDestroy();
|
sl@0
|
138 |
delete array;
|
sl@0
|
139 |
}
|
sl@0
|
140 |
|
sl@0
|
141 |
void CTestController::InitialiseComponentTesterL(ComponentTesterInitialiserLC aEntryPointLC)
|
sl@0
|
142 |
{
|
sl@0
|
143 |
_LIT(KInitCompTester, "Initialising derived component tester object");
|
sl@0
|
144 |
iDataLogger->LogInformation(KInitCompTester());
|
sl@0
|
145 |
// Invoking the function passed in will result in a derived
|
sl@0
|
146 |
// CComponentTester object being created and pushed on the clean up
|
sl@0
|
147 |
// stack. Therefore we need to do a pop and destroy later.
|
sl@0
|
148 |
CComponentTester* componentTesterFromEXE = aEntryPointLC(*iDataLogger,*iTestManager);
|
sl@0
|
149 |
|
sl@0
|
150 |
_LIT(KCreateTranSets,"Creating component tester & Building Unit Test information.");
|
sl@0
|
151 |
iDataLogger->LogInformation(KCreateTranSets());
|
sl@0
|
152 |
RPointerArray<CUnitTestInfo>* unitTests = componentTesterFromEXE->TransitionSetsL();
|
sl@0
|
153 |
|
sl@0
|
154 |
CleanupStack::PopAndDestroy(componentTesterFromEXE); //componentTester as pushed by aEntryPoint
|
sl@0
|
155 |
|
sl@0
|
156 |
TCleanupItem cleanup(CleanupArray, unitTests);
|
sl@0
|
157 |
CleanupStack::PushL(cleanup);
|
sl@0
|
158 |
|
sl@0
|
159 |
CComponentInfo* info = CComponentInfo::NewL(aEntryPointLC, unitTests);
|
sl@0
|
160 |
CleanupStack::Pop(unitTests); // unitTests, now owned by info
|
sl@0
|
161 |
CleanupStack::PushL(info);
|
sl@0
|
162 |
User::LeaveIfError(iTestList.Append(info)); // pass ownership onto the list.
|
sl@0
|
163 |
CleanupStack::Pop(info); // now owned by iTestList
|
sl@0
|
164 |
}
|
sl@0
|
165 |
|
sl@0
|
166 |
EXPORT_C CDataLogger& CTestController::DataLogger()
|
sl@0
|
167 |
{
|
sl@0
|
168 |
return *(REINTERPRET_CAST(CDataLogger*,Dll::Tls()));
|
sl@0
|
169 |
}
|
sl@0
|
170 |
|
sl@0
|
171 |
EXPORT_C void CTestController::Cancel()
|
sl@0
|
172 |
{
|
sl@0
|
173 |
if(iTestManager)
|
sl@0
|
174 |
{
|
sl@0
|
175 |
iTestManager->Cancel();
|
sl@0
|
176 |
|
sl@0
|
177 |
if(!iTestManager->StartedTests() && iClientStatus)
|
sl@0
|
178 |
{
|
sl@0
|
179 |
User::RequestComplete(iClientStatus, KTestBedTestCancel);
|
sl@0
|
180 |
iClientStatus = NULL;
|
sl@0
|
181 |
}
|
sl@0
|
182 |
}
|
sl@0
|
183 |
}
|
sl@0
|
184 |
|
sl@0
|
185 |
void CTestController::TestsComplete()
|
sl@0
|
186 |
{
|
sl@0
|
187 |
if(iClientStatus)
|
sl@0
|
188 |
{
|
sl@0
|
189 |
User::RequestComplete(iClientStatus, KErrNone);
|
sl@0
|
190 |
iClientStatus = NULL;
|
sl@0
|
191 |
}
|
sl@0
|
192 |
else
|
sl@0
|
193 |
CActiveScheduler::Stop();
|
sl@0
|
194 |
}
|
sl@0
|
195 |
|