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 "TestManager.h"
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
CTestManager::CTestManager(RPointerArray<CComponentInfo>* aTestList,
|
sl@0
|
20 |
CDataLogger& aDataLogger,
|
sl@0
|
21 |
MManagerObserver& aObserver,
|
sl@0
|
22 |
RTest* aRTest)
|
sl@0
|
23 |
: CActive(CActive::EPriorityStandard),
|
sl@0
|
24 |
iObserver(aObserver),
|
sl@0
|
25 |
iTestList(aTestList),
|
sl@0
|
26 |
iDataLogger(aDataLogger),
|
sl@0
|
27 |
iRTest(aRTest)
|
sl@0
|
28 |
{
|
sl@0
|
29 |
}
|
sl@0
|
30 |
|
sl@0
|
31 |
|
sl@0
|
32 |
CTestManager* CTestManager::NewL(RPointerArray<CComponentInfo>* aTestList,
|
sl@0
|
33 |
CDataLogger& aDataLogger,
|
sl@0
|
34 |
MManagerObserver& aObserver,
|
sl@0
|
35 |
RTest* aRTest)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
CTestManager* self = new (ELeave) CTestManager(aTestList, aDataLogger, aObserver, aRTest);
|
sl@0
|
38 |
CleanupStack::PushL(self);
|
sl@0
|
39 |
self->ConstructL();
|
sl@0
|
40 |
CleanupStack::Pop();
|
sl@0
|
41 |
return self;
|
sl@0
|
42 |
}
|
sl@0
|
43 |
|
sl@0
|
44 |
|
sl@0
|
45 |
void CTestManager::ConstructL()
|
sl@0
|
46 |
{
|
sl@0
|
47 |
CActiveScheduler::Add(this);
|
sl@0
|
48 |
|
sl@0
|
49 |
// Say we are stopping just in case RunTests never gets called
|
sl@0
|
50 |
// - if it does get called this will get unset
|
sl@0
|
51 |
iAmStopping = ETrue;
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
|
sl@0
|
55 |
CTestManager::~CTestManager()
|
sl@0
|
56 |
{
|
sl@0
|
57 |
Cancel();
|
sl@0
|
58 |
|
sl@0
|
59 |
delete iCurrentTester;
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
|
sl@0
|
63 |
void CTestManager::RunL()
|
sl@0
|
64 |
{
|
sl@0
|
65 |
delete iCurrentTester;
|
sl@0
|
66 |
iCurrentTester = NULL;
|
sl@0
|
67 |
|
sl@0
|
68 |
if((iCurrentTestLoad < iTestList->Count()) && !iAmStopping)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
iStatus = KRequestPending;
|
sl@0
|
71 |
SetActive();
|
sl@0
|
72 |
|
sl@0
|
73 |
TestComponentL(iCurrentTestLoad);
|
sl@0
|
74 |
|
sl@0
|
75 |
// Next time run the next test
|
sl@0
|
76 |
++iCurrentTestLoad;
|
sl@0
|
77 |
// Set the flag for the next state.
|
sl@0
|
78 |
iAmStopping = iCurrentTestLoad == iTestList->Count();
|
sl@0
|
79 |
}
|
sl@0
|
80 |
else if(iAmStopping)
|
sl@0
|
81 |
iObserver.TestsComplete();
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|
sl@0
|
84 |
TInt CTestManager::RunError(TInt /*aErrorCode*/)
|
sl@0
|
85 |
{
|
sl@0
|
86 |
// Do nothing because anything that needs to be cleaned up should be on the cleanup
|
sl@0
|
87 |
// stack. We want any remaining tests to carry on.
|
sl@0
|
88 |
return KErrNone;
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
|
sl@0
|
92 |
void CTestManager::DoCancel()
|
sl@0
|
93 |
{
|
sl@0
|
94 |
_LIT(KTestsCancelled,"TestBed cancelled at user request.");
|
sl@0
|
95 |
iDataLogger.LogInformation(KTestsCancelled());
|
sl@0
|
96 |
iDataLogger.ReportInformation(KTestsCancelled());
|
sl@0
|
97 |
|
sl@0
|
98 |
delete iCurrentTester;
|
sl@0
|
99 |
iCurrentTester = NULL;
|
sl@0
|
100 |
|
sl@0
|
101 |
iObserver.TestsComplete();
|
sl@0
|
102 |
}
|
sl@0
|
103 |
|
sl@0
|
104 |
|
sl@0
|
105 |
void CTestManager::RunTests(RPointerArray<TTestInfo>* aTests)
|
sl@0
|
106 |
{
|
sl@0
|
107 |
iTestsToRun = aTests;
|
sl@0
|
108 |
|
sl@0
|
109 |
if(iTestList->Count() >0)
|
sl@0
|
110 |
iAmStopping = EFalse;
|
sl@0
|
111 |
else
|
sl@0
|
112 |
{
|
sl@0
|
113 |
// If someone tried to call RunTests when there are no tests
|
sl@0
|
114 |
// complete immediately
|
sl@0
|
115 |
TRequestStatus* status = &iStatus;
|
sl@0
|
116 |
User::RequestComplete(status, KErrNone);
|
sl@0
|
117 |
}
|
sl@0
|
118 |
|
sl@0
|
119 |
if(!IsActive())
|
sl@0
|
120 |
{
|
sl@0
|
121 |
SetActive();
|
sl@0
|
122 |
if(!iAmStopping)
|
sl@0
|
123 |
{
|
sl@0
|
124 |
TRequestStatus* status = &iStatus;
|
sl@0
|
125 |
User::RequestComplete(status, KErrNone);
|
sl@0
|
126 |
}
|
sl@0
|
127 |
else
|
sl@0
|
128 |
iStatus = KRequestPending;
|
sl@0
|
129 |
}
|
sl@0
|
130 |
}
|
sl@0
|
131 |
|
sl@0
|
132 |
/**
|
sl@0
|
133 |
@fn CleanupTestArray(TAny* aArray)
|
sl@0
|
134 |
Intended Useage:The CleanupTestArray method is used for cleanup support
|
sl@0
|
135 |
of locally declared arrays
|
sl@0
|
136 |
@internalComponent
|
sl@0
|
137 |
@since 7.0
|
sl@0
|
138 |
@param aArray is the array whose contents should be destroyed
|
sl@0
|
139 |
*/
|
sl@0
|
140 |
static void CleanupTestArray(TAny* aArray)
|
sl@0
|
141 |
{
|
sl@0
|
142 |
// Whilst this array is an RPointerArray, it does not own the pointers
|
sl@0
|
143 |
// and therefor should not destroy them
|
sl@0
|
144 |
// This should be changed to an RArray
|
sl@0
|
145 |
RPointerArray<TTestInfo>* array = REINTERPRET_CAST(RPointerArray<TTestInfo>*, aArray);
|
sl@0
|
146 |
array->Reset();
|
sl@0
|
147 |
delete array;
|
sl@0
|
148 |
}
|
sl@0
|
149 |
|
sl@0
|
150 |
|
sl@0
|
151 |
void CTestManager::Complete(CComponentTester* /*aTester*/, TInt /*aUnitTestId*/)
|
sl@0
|
152 |
{
|
sl@0
|
153 |
TRequestStatus* status = &iStatus;
|
sl@0
|
154 |
User::RequestComplete(status, KErrNone);
|
sl@0
|
155 |
}
|
sl@0
|
156 |
|
sl@0
|
157 |
void CTestManager::TestComponentL(TInt aComponentIndex)
|
sl@0
|
158 |
{
|
sl@0
|
159 |
// This should be changed to an RArray<TTestInfo*> and be typedefd
|
sl@0
|
160 |
RPointerArray<TTestInfo>* tests = NULL;
|
sl@0
|
161 |
if(iTestsToRun != NULL)
|
sl@0
|
162 |
{
|
sl@0
|
163 |
tests = new(ELeave) RPointerArray<TTestInfo>;
|
sl@0
|
164 |
TCleanupItem cleanup(CleanupTestArray, tests);
|
sl@0
|
165 |
CleanupStack::PushL(cleanup);
|
sl@0
|
166 |
// Work out which tests to run
|
sl@0
|
167 |
for(TInt index = 0; index < iTestsToRun->Count(); ++index)
|
sl@0
|
168 |
{
|
sl@0
|
169 |
if((*iTestsToRun)[index]->iComponentId == aComponentIndex)
|
sl@0
|
170 |
User::LeaveIfError(tests->Append((*iTestsToRun)[index]));
|
sl@0
|
171 |
}
|
sl@0
|
172 |
if(tests->Count() == 0)
|
sl@0
|
173 |
{
|
sl@0
|
174 |
CleanupStack::PopAndDestroy(); // cleanup
|
sl@0
|
175 |
Complete(NULL, 0);
|
sl@0
|
176 |
return;
|
sl@0
|
177 |
}
|
sl@0
|
178 |
}
|
sl@0
|
179 |
// Create the EXEs derived CComponentTester for this test iteration.
|
sl@0
|
180 |
ComponentTesterInitialiserLC createLC = (*iTestList)[aComponentIndex]->GlobalEntryFunc();
|
sl@0
|
181 |
iCurrentTester= createLC(iDataLogger, *this);
|
sl@0
|
182 |
CleanupStack::Pop(iCurrentTester);
|
sl@0
|
183 |
iCurrentTester->SetRTest(iRTest);
|
sl@0
|
184 |
|
sl@0
|
185 |
if(iTestsToRun != NULL)
|
sl@0
|
186 |
CleanupStack::Pop(); // cleanup
|
sl@0
|
187 |
// Execute unit tests for the current component
|
sl@0
|
188 |
iCurrentTester->TestComponent(tests);
|
sl@0
|
189 |
}
|
sl@0
|
190 |
|
sl@0
|
191 |
TBool CTestManager::StartedTests() const
|
sl@0
|
192 |
{
|
sl@0
|
193 |
return iCurrentTestLoad > 0;
|
sl@0
|
194 |
}
|
sl@0
|
195 |
|