sl@0
|
1 |
// Copyright (c) 2002-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 |
// This module contains CScript class
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
// system includes
|
sl@0
|
19 |
#include <f32file.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
// test system includes
|
sl@0
|
22 |
#include <testframework.h>
|
sl@0
|
23 |
#include "Filename.h"
|
sl@0
|
24 |
#include "script.h"
|
sl@0
|
25 |
#include "parseline.h"
|
sl@0
|
26 |
#include "config.h"
|
sl@0
|
27 |
|
sl@0
|
28 |
#if !defined (__TSU_TESTFRAMEWORK__)
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
*
|
sl@0
|
31 |
* Script files can reference other script files.
|
sl@0
|
32 |
* KMaxDepthRecursion limits the number of references.
|
sl@0
|
33 |
* This is to catch accidental circular references in script files
|
sl@0
|
34 |
* which would otherwise cause the system to continue until all
|
sl@0
|
35 |
* memory had be used making more CScript objects.
|
sl@0
|
36 |
*
|
sl@0
|
37 |
* @xxxx
|
sl@0
|
38 |
*
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
const TInt KMaxDepthRecursion = 100;
|
sl@0
|
41 |
|
sl@0
|
42 |
#endif
|
sl@0
|
43 |
|
sl@0
|
44 |
/**
|
sl@0
|
45 |
*
|
sl@0
|
46 |
* Global data : count of how deep in script files parser is.
|
sl@0
|
47 |
* This is to check against infinite recursion
|
sl@0
|
48 |
*
|
sl@0
|
49 |
* NB : we must patch this out for Unit Testing, where script.cpp
|
sl@0
|
50 |
* is part of a DLL
|
sl@0
|
51 |
*
|
sl@0
|
52 |
* @xxxx
|
sl@0
|
53 |
*
|
sl@0
|
54 |
*/
|
sl@0
|
55 |
// do not define static if Unit Testing
|
sl@0
|
56 |
#if !defined (__TSU_TESTFRAMEWORK__)
|
sl@0
|
57 |
GLDEF_D TInt CScript::iScriptDepth = 0;
|
sl@0
|
58 |
#endif
|
sl@0
|
59 |
|
sl@0
|
60 |
/**
|
sl@0
|
61 |
*
|
sl@0
|
62 |
* Console prompts
|
sl@0
|
63 |
*
|
sl@0
|
64 |
* @xxxx
|
sl@0
|
65 |
*
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
//_LIT(KTxtPressAnyKey,"[press any key to continue]\n"); // EABI warning removal
|
sl@0
|
68 |
//_LIT(KTxtBreakOnError,"The test has failed, press X to terminate this test\n [press any other key to continue]\n"); // EABI warning removal
|
sl@0
|
69 |
|
sl@0
|
70 |
/**
|
sl@0
|
71 |
*
|
sl@0
|
72 |
* CScript first-phase constructor
|
sl@0
|
73 |
*
|
sl@0
|
74 |
* @xxxx
|
sl@0
|
75 |
*
|
sl@0
|
76 |
*/
|
sl@0
|
77 |
CScript::CScript()
|
sl@0
|
78 |
{
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
/**
|
sl@0
|
82 |
*
|
sl@0
|
83 |
* CScript second-phase constructor for a script processor which
|
sl@0
|
84 |
* does not inherit a parser.
|
sl@0
|
85 |
*
|
sl@0
|
86 |
* @param "CTestUtils* aTestUtils"
|
sl@0
|
87 |
* The TestUtils object to use
|
sl@0
|
88 |
*
|
sl@0
|
89 |
* @param "CLog* aLog"
|
sl@0
|
90 |
* The logger to use
|
sl@0
|
91 |
*
|
sl@0
|
92 |
* @xxxx
|
sl@0
|
93 |
*
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
void CScript::ConstructL(CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString)
|
sl@0
|
96 |
{
|
sl@0
|
97 |
iLog = aLog;
|
sl@0
|
98 |
iGuardTimer = aGuardTimer;
|
sl@0
|
99 |
|
sl@0
|
100 |
iMatchString = aMatchString.AllocL();
|
sl@0
|
101 |
|
sl@0
|
102 |
iParse = CParseLine::NewL(this, aTestUtils, aLog, aGuardTimer, *iMatchString);
|
sl@0
|
103 |
iParseOwner = ETrue;
|
sl@0
|
104 |
|
sl@0
|
105 |
iPauseAtEnd = EFalse;
|
sl@0
|
106 |
|
sl@0
|
107 |
#if !defined (__TSU_TESTFRAMEWORK__)
|
sl@0
|
108 |
iScriptDepth++;
|
sl@0
|
109 |
#endif
|
sl@0
|
110 |
}
|
sl@0
|
111 |
|
sl@0
|
112 |
/**
|
sl@0
|
113 |
*
|
sl@0
|
114 |
* CScript static constructor for a script processor which
|
sl@0
|
115 |
* does not inherit a parser.
|
sl@0
|
116 |
*
|
sl@0
|
117 |
* @param "CTestUtils* aTestUtils"
|
sl@0
|
118 |
* The TestUtils object to use
|
sl@0
|
119 |
*
|
sl@0
|
120 |
* @param "CLog* aLog"
|
sl@0
|
121 |
* The logger to use
|
sl@0
|
122 |
*
|
sl@0
|
123 |
* @xxxx
|
sl@0
|
124 |
*
|
sl@0
|
125 |
*/
|
sl@0
|
126 |
CScript* CScript::NewL(CTestUtils* aTestUtils, CLog * aLog, TInt64 aGuardTimer, const TDesC& aMatchString)
|
sl@0
|
127 |
{
|
sl@0
|
128 |
CScript * self = new(ELeave) CScript;
|
sl@0
|
129 |
CleanupStack::PushL(self);
|
sl@0
|
130 |
self->ConstructL(aTestUtils, aLog, aGuardTimer, aMatchString);
|
sl@0
|
131 |
CleanupStack::Pop();
|
sl@0
|
132 |
return self;
|
sl@0
|
133 |
}
|
sl@0
|
134 |
|
sl@0
|
135 |
/**
|
sl@0
|
136 |
*
|
sl@0
|
137 |
* CScript static constructor for a script processor which
|
sl@0
|
138 |
* does not inherit a parser.
|
sl@0
|
139 |
*
|
sl@0
|
140 |
* @param "CTestUtils* aTestUtils"
|
sl@0
|
141 |
* The TestUtils object to use
|
sl@0
|
142 |
*
|
sl@0
|
143 |
* @param "CLog* aLog"
|
sl@0
|
144 |
* The logger to use
|
sl@0
|
145 |
*
|
sl@0
|
146 |
* @xxxx
|
sl@0
|
147 |
*
|
sl@0
|
148 |
*/
|
sl@0
|
149 |
CScript* CScript::NewLC(CTestUtils* aTestUtils, CLog * aLog, TInt64 aGuardTimer, const TDesC& aMatchString)
|
sl@0
|
150 |
{
|
sl@0
|
151 |
CScript * self = new(ELeave) CScript;
|
sl@0
|
152 |
CleanupStack::PushL(self);
|
sl@0
|
153 |
self->ConstructL(aTestUtils, aLog, aGuardTimer, aMatchString);
|
sl@0
|
154 |
return self;
|
sl@0
|
155 |
}
|
sl@0
|
156 |
|
sl@0
|
157 |
/**
|
sl@0
|
158 |
*
|
sl@0
|
159 |
* CScript second-phase constructor, for a script processor which
|
sl@0
|
160 |
* inherits a parser.
|
sl@0
|
161 |
*
|
sl@0
|
162 |
* @param "CParseLine* aParse"
|
sl@0
|
163 |
* The parser to use
|
sl@0
|
164 |
*
|
sl@0
|
165 |
* @param "CTestUtils*"
|
sl@0
|
166 |
* Dummy parameter (would be used for constructing a parser);
|
sl@0
|
167 |
* retained to maintain overload distinction
|
sl@0
|
168 |
*
|
sl@0
|
169 |
* @param "CLog * aLog"
|
sl@0
|
170 |
* The logger to use
|
sl@0
|
171 |
*
|
sl@0
|
172 |
* @xxxx
|
sl@0
|
173 |
*
|
sl@0
|
174 |
*/
|
sl@0
|
175 |
void CScript::ConstructL(CParseLine* aParse, CTestUtils*, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString)
|
sl@0
|
176 |
{
|
sl@0
|
177 |
iLog = aLog;
|
sl@0
|
178 |
iGuardTimer = aGuardTimer;
|
sl@0
|
179 |
|
sl@0
|
180 |
iMatchString = aMatchString.AllocL(); // should be the same as that for aParse, for moment don't check
|
sl@0
|
181 |
|
sl@0
|
182 |
iParse = aParse;
|
sl@0
|
183 |
iParseOwner = EFalse;
|
sl@0
|
184 |
|
sl@0
|
185 |
iPauseAtEnd = EFalse;
|
sl@0
|
186 |
|
sl@0
|
187 |
#if !defined (__TSU_TESTFRAMEWORK__)
|
sl@0
|
188 |
iScriptDepth++;
|
sl@0
|
189 |
#endif
|
sl@0
|
190 |
|
sl@0
|
191 |
}
|
sl@0
|
192 |
|
sl@0
|
193 |
/**
|
sl@0
|
194 |
*
|
sl@0
|
195 |
* CScript static constructor for a script processor which
|
sl@0
|
196 |
* inherits a parser.
|
sl@0
|
197 |
*
|
sl@0
|
198 |
* @param "CParseLine* aParse"
|
sl@0
|
199 |
* The parser to use
|
sl@0
|
200 |
*
|
sl@0
|
201 |
* @param "CTestUtils* aTestUtils"
|
sl@0
|
202 |
* The TestUtils object to use
|
sl@0
|
203 |
*
|
sl@0
|
204 |
* @param "CLog* aLog"
|
sl@0
|
205 |
* The logger to use
|
sl@0
|
206 |
*
|
sl@0
|
207 |
* @xxxx
|
sl@0
|
208 |
*
|
sl@0
|
209 |
*/
|
sl@0
|
210 |
CScript* CScript::NewL(CParseLine* aParse, CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString)
|
sl@0
|
211 |
{
|
sl@0
|
212 |
CScript* self = new(ELeave) CScript;
|
sl@0
|
213 |
CleanupStack::PushL(self);
|
sl@0
|
214 |
self->ConstructL(aParse, aTestUtils, aLog, aGuardTimer, aMatchString);
|
sl@0
|
215 |
CleanupStack::Pop();
|
sl@0
|
216 |
return self;
|
sl@0
|
217 |
}
|
sl@0
|
218 |
|
sl@0
|
219 |
/**
|
sl@0
|
220 |
*
|
sl@0
|
221 |
* CScript static constructor for a script processor which
|
sl@0
|
222 |
* inherits a parser.
|
sl@0
|
223 |
*
|
sl@0
|
224 |
* @param "CParseLine* aParse"
|
sl@0
|
225 |
* The parser to use
|
sl@0
|
226 |
*
|
sl@0
|
227 |
* @param "CTestUtils* aTestUtils"
|
sl@0
|
228 |
* The TestUtils object to use
|
sl@0
|
229 |
*
|
sl@0
|
230 |
* @param "CLog* aLog"
|
sl@0
|
231 |
* The logger to use
|
sl@0
|
232 |
*
|
sl@0
|
233 |
* @xxxx
|
sl@0
|
234 |
*
|
sl@0
|
235 |
*/
|
sl@0
|
236 |
CScript* CScript::NewLC(CParseLine* aParse, CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString)
|
sl@0
|
237 |
{
|
sl@0
|
238 |
CScript* self = new(ELeave) CScript;
|
sl@0
|
239 |
CleanupStack::PushL(self);
|
sl@0
|
240 |
self->ConstructL(aParse, aTestUtils, aLog, aGuardTimer, aMatchString);
|
sl@0
|
241 |
return self;
|
sl@0
|
242 |
}
|
sl@0
|
243 |
|
sl@0
|
244 |
/**
|
sl@0
|
245 |
*
|
sl@0
|
246 |
* CScript destructor
|
sl@0
|
247 |
*
|
sl@0
|
248 |
* @xxxx
|
sl@0
|
249 |
*
|
sl@0
|
250 |
*/
|
sl@0
|
251 |
CScript::~CScript()
|
sl@0
|
252 |
{
|
sl@0
|
253 |
// delete parser if we own it
|
sl@0
|
254 |
if(iParseOwner)
|
sl@0
|
255 |
{
|
sl@0
|
256 |
delete iParse;
|
sl@0
|
257 |
iParse = NULL;
|
sl@0
|
258 |
}
|
sl@0
|
259 |
|
sl@0
|
260 |
// delete scriptbuffer
|
sl@0
|
261 |
delete iScriptBuffer;
|
sl@0
|
262 |
|
sl@0
|
263 |
delete iMatchString;
|
sl@0
|
264 |
|
sl@0
|
265 |
#if !defined (__TSU_TESTFRAMEWORK__)
|
sl@0
|
266 |
iScriptDepth--;
|
sl@0
|
267 |
#endif
|
sl@0
|
268 |
}
|
sl@0
|
269 |
|
sl@0
|
270 |
|
sl@0
|
271 |
/**
|
sl@0
|
272 |
*
|
sl@0
|
273 |
* Open and read a script file.
|
sl@0
|
274 |
*
|
sl@0
|
275 |
* @param "TFileName aScriptFileName"
|
sl@0
|
276 |
* The script file name
|
sl@0
|
277 |
*
|
sl@0
|
278 |
* @return "TBool"
|
sl@0
|
279 |
* true if script file successfully read
|
sl@0
|
280 |
*
|
sl@0
|
281 |
* @xxxx
|
sl@0
|
282 |
*
|
sl@0
|
283 |
*/
|
sl@0
|
284 |
#ifdef EXCLUDE_FOR_UNITTEST
|
sl@0
|
285 |
TBool CScript::OpenScriptFile(CFileName* /*aScriptFileName*/)
|
sl@0
|
286 |
{
|
sl@0
|
287 |
// empty function to silence OPT:REF warning under WINS UREL build
|
sl@0
|
288 |
return ETrue;
|
sl@0
|
289 |
}
|
sl@0
|
290 |
#else
|
sl@0
|
291 |
TBool CScript::OpenScriptFile(CFileName* aScriptFileName)
|
sl@0
|
292 |
{
|
sl@0
|
293 |
// get the full pathname default drive name and extension
|
sl@0
|
294 |
_LIT(KRelated,"\\xx.script");
|
sl@0
|
295 |
TParse parseScriptFileName;
|
sl@0
|
296 |
TInt returnCode = parseScriptFileName.Set(aScriptFileName->FileName(), &KRelated, NULL);
|
sl@0
|
297 |
if (returnCode != KErrNone)
|
sl@0
|
298 |
{
|
sl@0
|
299 |
ERR_PRINTF2(_L("Could not set script filename: %S"), &parseScriptFileName.FullName());
|
sl@0
|
300 |
Pause();
|
sl@0
|
301 |
return EFalse;
|
sl@0
|
302 |
}
|
sl@0
|
303 |
|
sl@0
|
304 |
#if !defined (__TSU_TESTFRAMEWORK__)
|
sl@0
|
305 |
if (iScriptDepth > KMaxDepthRecursion)
|
sl@0
|
306 |
{
|
sl@0
|
307 |
// prevent the parser from recursing forever
|
sl@0
|
308 |
ERR_PRINTF2(_L("Script parser aborting: depth:%d"), iScriptDepth);
|
sl@0
|
309 |
return EFalse;
|
sl@0
|
310 |
}
|
sl@0
|
311 |
#if !defined(__WINS__)
|
sl@0
|
312 |
if (iScriptDepth > 3)
|
sl@0
|
313 |
{
|
sl@0
|
314 |
// on target, we are likely to KERN-EXEC 3 if nesting more than 4 levels
|
sl@0
|
315 |
WARN_PRINTF2(_L("Warning : script parser depth = %d"), iScriptDepth);
|
sl@0
|
316 |
}
|
sl@0
|
317 |
#endif
|
sl@0
|
318 |
#endif
|
sl@0
|
319 |
|
sl@0
|
320 |
// connect to the fileserver
|
sl@0
|
321 |
returnCode = iTheFs.Connect();
|
sl@0
|
322 |
if (returnCode != KErrNone)
|
sl@0
|
323 |
{
|
sl@0
|
324 |
ERR_PRINTF1(_L("Error trying to connect to the file server") );
|
sl@0
|
325 |
return EFalse;
|
sl@0
|
326 |
}
|
sl@0
|
327 |
|
sl@0
|
328 |
|
sl@0
|
329 |
RFile listfile;
|
sl@0
|
330 |
// have we got a drive letter specified - if not, check all drives
|
sl@0
|
331 |
if (parseScriptFileName.DrivePresent())
|
sl@0
|
332 |
{
|
sl@0
|
333 |
returnCode = listfile.Open(iTheFs, parseScriptFileName.FullName(), EFileRead | EFileShareAny);
|
sl@0
|
334 |
}
|
sl@0
|
335 |
else
|
sl@0
|
336 |
{
|
sl@0
|
337 |
// checks C, D, E and Z drives - this is ugly, is there a better way of doing this?
|
sl@0
|
338 |
INFO_PRINTF1(_L("Looking for script file on all drives..."));
|
sl@0
|
339 |
_LIT(KDriveC, "C:");
|
sl@0
|
340 |
parseScriptFileName.Set(aScriptFileName->FileName(), &KRelated, &KDriveC);
|
sl@0
|
341 |
returnCode = listfile.Open(iTheFs, parseScriptFileName.FullName(), EFileRead | EFileShareAny);
|
sl@0
|
342 |
if (returnCode != KErrNone)
|
sl@0
|
343 |
{
|
sl@0
|
344 |
_LIT(KDriveD, "D:");
|
sl@0
|
345 |
parseScriptFileName.Set(aScriptFileName->FileName(), &KRelated, &KDriveD);
|
sl@0
|
346 |
returnCode = listfile.Open(iTheFs, parseScriptFileName.FullName(), EFileRead | EFileShareAny);
|
sl@0
|
347 |
if (returnCode != KErrNone)
|
sl@0
|
348 |
{
|
sl@0
|
349 |
_LIT(KDriveE, "E:");
|
sl@0
|
350 |
parseScriptFileName.Set(aScriptFileName->FileName(), &KRelated, &KDriveE);
|
sl@0
|
351 |
returnCode = listfile.Open(iTheFs, parseScriptFileName.FullName(), EFileRead | EFileShareAny);
|
sl@0
|
352 |
if (returnCode != KErrNone)
|
sl@0
|
353 |
{
|
sl@0
|
354 |
_LIT(KDriveZ, "Z:");
|
sl@0
|
355 |
parseScriptFileName.Set(aScriptFileName->FileName(), &KRelated, &KDriveZ);
|
sl@0
|
356 |
returnCode = listfile.Open(iTheFs, parseScriptFileName.FullName(), EFileRead | EFileShareAny);
|
sl@0
|
357 |
}
|
sl@0
|
358 |
}
|
sl@0
|
359 |
}
|
sl@0
|
360 |
}
|
sl@0
|
361 |
|
sl@0
|
362 |
// check if open fails
|
sl@0
|
363 |
if (returnCode != KErrNone)
|
sl@0
|
364 |
{
|
sl@0
|
365 |
parseScriptFileName.Set(aScriptFileName->FileName(), &KRelated, NULL);
|
sl@0
|
366 |
ERR_PRINTF2(_L("Failed to open script file : %S"), &parseScriptFileName.FullName());
|
sl@0
|
367 |
listfile.Close();
|
sl@0
|
368 |
iTheFs.Close();
|
sl@0
|
369 |
Pause();
|
sl@0
|
370 |
return EFalse;
|
sl@0
|
371 |
}
|
sl@0
|
372 |
|
sl@0
|
373 |
// display the file being processed
|
sl@0
|
374 |
INFO_PRINTF2(_L("Reading script %S"), &parseScriptFileName.FullName());
|
sl@0
|
375 |
|
sl@0
|
376 |
// get the script file size
|
sl@0
|
377 |
TInt listfilesize;
|
sl@0
|
378 |
returnCode = listfile.Size(listfilesize);
|
sl@0
|
379 |
if (returnCode != KErrNone)
|
sl@0
|
380 |
{
|
sl@0
|
381 |
ERR_PRINTF2(_L("Failed to read script file: %S size "), &parseScriptFileName.FullName());
|
sl@0
|
382 |
listfile.Close();
|
sl@0
|
383 |
iTheFs.Close();
|
sl@0
|
384 |
return EFalse;
|
sl@0
|
385 |
}
|
sl@0
|
386 |
|
sl@0
|
387 |
// JW 30-10-02 DEF004555
|
sl@0
|
388 |
// Buffer was being orphaned if already allocated, where there was more than one
|
sl@0
|
389 |
// script file on the command line
|
sl@0
|
390 |
// Now, we check for this and delete iScriptBuffer if it already exists
|
sl@0
|
391 |
if(iScriptBuffer)
|
sl@0
|
392 |
{
|
sl@0
|
393 |
delete iScriptBuffer;
|
sl@0
|
394 |
iScriptBuffer = NULL;
|
sl@0
|
395 |
}
|
sl@0
|
396 |
|
sl@0
|
397 |
// get a buffer to read the file into
|
sl@0
|
398 |
TRAPD(err, iScriptBuffer = HBufC8::NewL(listfilesize));
|
sl@0
|
399 |
if (err != KErrNone || iScriptBuffer == NULL)
|
sl@0
|
400 |
{
|
sl@0
|
401 |
ERR_PRINTF2(_L("Failed to allocate memory for script file %S "), &parseScriptFileName.FullName());
|
sl@0
|
402 |
listfile.Close();
|
sl@0
|
403 |
iTheFs.Close();
|
sl@0
|
404 |
return EFalse;
|
sl@0
|
405 |
}
|
sl@0
|
406 |
|
sl@0
|
407 |
// get a pointer to the buffer
|
sl@0
|
408 |
TPtr8 ptr = iScriptBuffer->Des();
|
sl@0
|
409 |
|
sl@0
|
410 |
// read the file into the buffer
|
sl@0
|
411 |
returnCode = listfile.Read(ptr);
|
sl@0
|
412 |
if (returnCode != KErrNone)
|
sl@0
|
413 |
{
|
sl@0
|
414 |
ERR_PRINTF2(_L("Failed to read script file %S "), &parseScriptFileName.FullName());
|
sl@0
|
415 |
listfile.Close();
|
sl@0
|
416 |
iTheFs.Close();
|
sl@0
|
417 |
return EFalse;
|
sl@0
|
418 |
}
|
sl@0
|
419 |
|
sl@0
|
420 |
listfile.Close();
|
sl@0
|
421 |
iTheFs.Close();
|
sl@0
|
422 |
return ETrue;
|
sl@0
|
423 |
}
|
sl@0
|
424 |
#endif // EXCLUDE_FOR_UNITTEST
|
sl@0
|
425 |
|
sl@0
|
426 |
/**
|
sl@0
|
427 |
*
|
sl@0
|
428 |
* Parse and execute script file.
|
sl@0
|
429 |
* Assumes script file has been read into iScriptBuffer
|
sl@0
|
430 |
*
|
sl@0
|
431 |
* @return "TVerdict"
|
sl@0
|
432 |
* The script verdict (for logging)
|
sl@0
|
433 |
*
|
sl@0
|
434 |
* @xxxx
|
sl@0
|
435 |
*
|
sl@0
|
436 |
*/
|
sl@0
|
437 |
TVerdict CScript::ExecuteScriptL()
|
sl@0
|
438 |
{
|
sl@0
|
439 |
// use TLex to decode the script
|
sl@0
|
440 |
TLex8 llex(*iScriptBuffer);
|
sl@0
|
441 |
|
sl@0
|
442 |
// keep a count of the line number
|
sl@0
|
443 |
TInt8 lineNo = 1;
|
sl@0
|
444 |
|
sl@0
|
445 |
// loop though processing the rest a line at a time
|
sl@0
|
446 |
while(!llex.Eos())
|
sl@0
|
447 |
{
|
sl@0
|
448 |
// skip any spaces
|
sl@0
|
449 |
while ( llex.Peek() == ' ' )
|
sl@0
|
450 |
llex.Inc();
|
sl@0
|
451 |
|
sl@0
|
452 |
// mark the start of the line
|
sl@0
|
453 |
llex.Mark();
|
sl@0
|
454 |
|
sl@0
|
455 |
// move to the next
|
sl@0
|
456 |
while(!llex.Eos() && llex.Peek() != '\n')
|
sl@0
|
457 |
llex.Inc();
|
sl@0
|
458 |
|
sl@0
|
459 |
// step over \n
|
sl@0
|
460 |
if ( llex.Peek() == '\n' )
|
sl@0
|
461 |
llex.Inc();
|
sl@0
|
462 |
|
sl@0
|
463 |
// get the line
|
sl@0
|
464 |
TPtrC8 pline = llex.MarkedToken();
|
sl@0
|
465 |
if (pline.Length() != 0)
|
sl@0
|
466 |
{
|
sl@0
|
467 |
// and then process
|
sl@0
|
468 |
ProcessLineL(pline, lineNo);
|
sl@0
|
469 |
}
|
sl@0
|
470 |
|
sl@0
|
471 |
// on to the next line
|
sl@0
|
472 |
lineNo++;
|
sl@0
|
473 |
}
|
sl@0
|
474 |
|
sl@0
|
475 |
// script processing complete, now return the script verdict
|
sl@0
|
476 |
// Note: the script verdicts are just for the log
|
sl@0
|
477 |
// if no tests failed then return pass for the script
|
sl@0
|
478 |
// this covers scripts which do not test anything
|
sl@0
|
479 |
return (iFail == 0 ? EPass : EFail );
|
sl@0
|
480 |
}
|
sl@0
|
481 |
|
sl@0
|
482 |
/**
|
sl@0
|
483 |
*
|
sl@0
|
484 |
* Process a single line from the script file.
|
sl@0
|
485 |
*
|
sl@0
|
486 |
* @param "const TDesC8& aNarrowline"
|
sl@0
|
487 |
* The script line
|
sl@0
|
488 |
*
|
sl@0
|
489 |
* @param "TInt8 lineNo"
|
sl@0
|
490 |
* The script line number
|
sl@0
|
491 |
*
|
sl@0
|
492 |
* @xxxx
|
sl@0
|
493 |
*
|
sl@0
|
494 |
*/
|
sl@0
|
495 |
void CScript::ProcessLineL(const TDesC8& aNarrowline, TInt8 aLineNo)
|
sl@0
|
496 |
{
|
sl@0
|
497 |
// call parse to process line
|
sl@0
|
498 |
iParse->ProcessLineL(aNarrowline, aLineNo);
|
sl@0
|
499 |
}
|
sl@0
|
500 |
|
sl@0
|
501 |
/**
|
sl@0
|
502 |
*
|
sl@0
|
503 |
* Display the accumulated script results.
|
sl@0
|
504 |
*
|
sl@0
|
505 |
* @xxxx
|
sl@0
|
506 |
*
|
sl@0
|
507 |
*/
|
sl@0
|
508 |
void CScript::DisplayResults()
|
sl@0
|
509 |
{
|
sl@0
|
510 |
|
sl@0
|
511 |
INFO_PRINTF1(_L("Test Results Summary ") );
|
sl@0
|
512 |
INFO_PRINTF1(_L("-------------------- ") );
|
sl@0
|
513 |
INFO_PRINTF2(_L("Passed :%d"), iPass);
|
sl@0
|
514 |
INFO_PRINTF2(_L("Failed :%d"), iFail);
|
sl@0
|
515 |
INFO_PRINTF2(_L("Inconclusive :%d"), iInconclusive);
|
sl@0
|
516 |
INFO_PRINTF2(_L("Test suite errors :%d"), iTestSuiteError);
|
sl@0
|
517 |
INFO_PRINTF2(_L("Aborted :%d"), iAbort);
|
sl@0
|
518 |
INFO_PRINTF2(_L("KnownFailure :%d"), iKnownFailure); //A new TVerdict
|
sl@0
|
519 |
INFO_PRINTF2(_L("Total :%d"), iTotal);
|
sl@0
|
520 |
|
sl@0
|
521 |
if(iPauseAtEnd)
|
sl@0
|
522 |
{
|
sl@0
|
523 |
// A pause at the end has been requested
|
sl@0
|
524 |
Pause();
|
sl@0
|
525 |
}
|
sl@0
|
526 |
|
sl@0
|
527 |
}
|
sl@0
|
528 |
|
sl@0
|
529 |
/**
|
sl@0
|
530 |
*
|
sl@0
|
531 |
* Pause testing.
|
sl@0
|
532 |
* NOTE : stubbed pending re-implementation of user input
|
sl@0
|
533 |
*
|
sl@0
|
534 |
* @xxxx
|
sl@0
|
535 |
*
|
sl@0
|
536 |
*/
|
sl@0
|
537 |
void CScript::Pause()
|
sl@0
|
538 |
{
|
sl@0
|
539 |
WARN_PRINTF1(_L("Warning : PAUSE not implemented"));
|
sl@0
|
540 |
}
|
sl@0
|
541 |
|
sl@0
|
542 |
/**
|
sl@0
|
543 |
*
|
sl@0
|
544 |
* Display error on the console and invite abort.
|
sl@0
|
545 |
* NOTE : stubbed pending re-implementation of user input
|
sl@0
|
546 |
*
|
sl@0
|
547 |
* @xxxx
|
sl@0
|
548 |
*
|
sl@0
|
549 |
*/
|
sl@0
|
550 |
TBool CScript::BreakOnError()
|
sl@0
|
551 |
{
|
sl@0
|
552 |
WARN_PRINTF1(_L("Warning : BREAK_ON_ERROR not implemented"));
|
sl@0
|
553 |
return EFalse;
|
sl@0
|
554 |
}
|
sl@0
|
555 |
|
sl@0
|
556 |
/**
|
sl@0
|
557 |
*
|
sl@0
|
558 |
* Add a test result to the accumulated totals.
|
sl@0
|
559 |
*
|
sl@0
|
560 |
* @param "TVerdict aTestVerdict"
|
sl@0
|
561 |
* The test verdict
|
sl@0
|
562 |
*
|
sl@0
|
563 |
* @xxxx
|
sl@0
|
564 |
*
|
sl@0
|
565 |
*/
|
sl@0
|
566 |
void CScript::AddResult(TVerdict aTestVerdict)
|
sl@0
|
567 |
{
|
sl@0
|
568 |
// another test complete, so increment total
|
sl@0
|
569 |
iTotal++;
|
sl@0
|
570 |
|
sl@0
|
571 |
// add in the current result
|
sl@0
|
572 |
switch (aTestVerdict)
|
sl@0
|
573 |
{
|
sl@0
|
574 |
case EPass:
|
sl@0
|
575 |
iPass++;
|
sl@0
|
576 |
break;
|
sl@0
|
577 |
case EFail:
|
sl@0
|
578 |
iFail++;
|
sl@0
|
579 |
break;
|
sl@0
|
580 |
case EInconclusive:
|
sl@0
|
581 |
iInconclusive++;
|
sl@0
|
582 |
break;
|
sl@0
|
583 |
case ETestSuiteError:
|
sl@0
|
584 |
iTestSuiteError++;
|
sl@0
|
585 |
break;
|
sl@0
|
586 |
case EAbort:
|
sl@0
|
587 |
iAbort++;
|
sl@0
|
588 |
break;
|
sl@0
|
589 |
case EKnownFailure: //A new TVerdict for a known failed test
|
sl@0
|
590 |
iKnownFailure++;
|
sl@0
|
591 |
break;
|
sl@0
|
592 |
}
|
sl@0
|
593 |
|
sl@0
|
594 |
// display the result
|
sl@0
|
595 |
TPtrC verdictText = CLog::TestResultText(aTestVerdict);
|
sl@0
|
596 |
TPtrC currentSuiteName = iParse->CurrentSuiteName();
|
sl@0
|
597 |
TPtrC currentStepName = iParse->CurrentStepName();
|
sl@0
|
598 |
|
sl@0
|
599 |
iLog->LogResult(aTestVerdict, _L("Test Result for %S:%S is %S "),
|
sl@0
|
600 |
¤tSuiteName, ¤tStepName, &verdictText);
|
sl@0
|
601 |
|
sl@0
|
602 |
}
|
sl@0
|
603 |
|
sl@0
|
604 |
/**
|
sl@0
|
605 |
*
|
sl@0
|
606 |
* Add a test result from a subscript to the accumulated totals.
|
sl@0
|
607 |
*
|
sl@0
|
608 |
* @param "CScript* aSubScript"
|
sl@0
|
609 |
* The subscript
|
sl@0
|
610 |
*
|
sl@0
|
611 |
* @xxxx
|
sl@0
|
612 |
*
|
sl@0
|
613 |
*/
|
sl@0
|
614 |
void CScript::AddResult(CScript* aSubScript)
|
sl@0
|
615 |
{
|
sl@0
|
616 |
|
sl@0
|
617 |
iPass += aSubScript->iPass;
|
sl@0
|
618 |
iFail += aSubScript->iFail;
|
sl@0
|
619 |
iInconclusive += aSubScript->iInconclusive;
|
sl@0
|
620 |
iTestSuiteError += aSubScript->iTestSuiteError;
|
sl@0
|
621 |
iAbort += aSubScript->iAbort;
|
sl@0
|
622 |
iKnownFailure += aSubScript->iKnownFailure;
|
sl@0
|
623 |
iTotal +=aSubScript->iTotal;
|
sl@0
|
624 |
}
|
sl@0
|
625 |
|
sl@0
|
626 |
/**
|
sl@0
|
627 |
*
|
sl@0
|
628 |
* Traceable logging function for parseline.
|
sl@0
|
629 |
*
|
sl@0
|
630 |
* @param "const TText8* aFile"
|
sl@0
|
631 |
* Source code file name
|
sl@0
|
632 |
*
|
sl@0
|
633 |
* @param "TInt aLine"
|
sl@0
|
634 |
* Source code line
|
sl@0
|
635 |
*
|
sl@0
|
636 |
* @param "TInt aSeverity"
|
sl@0
|
637 |
* Severity level required to log
|
sl@0
|
638 |
*
|
sl@0
|
639 |
* @param "TRefByValue<const TDesC16> aFmt"
|
sl@0
|
640 |
* Printf-style format.
|
sl@0
|
641 |
*
|
sl@0
|
642 |
* @param "..."
|
sl@0
|
643 |
* Variable print parameters
|
sl@0
|
644 |
*
|
sl@0
|
645 |
* @xxxx
|
sl@0
|
646 |
*
|
sl@0
|
647 |
*/
|
sl@0
|
648 |
void CScript::LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
|
sl@0
|
649 |
TRefByValue<const TDesC16> aFmt,...)
|
sl@0
|
650 |
{
|
sl@0
|
651 |
VA_LIST aList;
|
sl@0
|
652 |
VA_START(aList, aFmt);
|
sl@0
|
653 |
|
sl@0
|
654 |
if(aSeverity)
|
sl@0
|
655 |
{
|
sl@0
|
656 |
if(iLog)
|
sl@0
|
657 |
{
|
sl@0
|
658 |
iLog->LogExtra(aFile, aLine, aSeverity, aFmt, aList);
|
sl@0
|
659 |
}
|
sl@0
|
660 |
}
|
sl@0
|
661 |
|
sl@0
|
662 |
VA_END(aList);
|
sl@0
|
663 |
}
|