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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef __SCRIPT_H__
|
sl@0
|
17 |
#define __SCRIPT_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
*
|
sl@0
|
21 |
* File name / line buffer lengths
|
sl@0
|
22 |
*
|
sl@0
|
23 |
* @xxxx
|
sl@0
|
24 |
*
|
sl@0
|
25 |
*/
|
sl@0
|
26 |
|
sl@0
|
27 |
class CParseLine;
|
sl@0
|
28 |
class CFileName;
|
sl@0
|
29 |
|
sl@0
|
30 |
/**
|
sl@0
|
31 |
*
|
sl@0
|
32 |
* Script processor.
|
sl@0
|
33 |
* Reads, parses and executes the test script.
|
sl@0
|
34 |
*
|
sl@0
|
35 |
* @xxxx
|
sl@0
|
36 |
*
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
class CScript : public CBase
|
sl@0
|
39 |
{
|
sl@0
|
40 |
public:
|
sl@0
|
41 |
static CScript* NewL(CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
|
sl@0
|
42 |
static CScript* NewL(CParseLine* aParse, CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
|
sl@0
|
43 |
static CScript* NewLC(CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
|
sl@0
|
44 |
static CScript* NewLC(CParseLine* aParse, CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
|
sl@0
|
45 |
~CScript();
|
sl@0
|
46 |
|
sl@0
|
47 |
TBool OpenScriptFile(CFileName* aScriptFileName); // read in a script file
|
sl@0
|
48 |
TVerdict ExecuteScriptL(); // parse and execute script
|
sl@0
|
49 |
void DisplayResults();
|
sl@0
|
50 |
void AddResult(TVerdict aTestVerdict);
|
sl@0
|
51 |
void AddResult(CScript* aSubScript);
|
sl@0
|
52 |
void Pause();
|
sl@0
|
53 |
TBool BreakOnError();
|
sl@0
|
54 |
|
sl@0
|
55 |
TBool iPauseAtEnd;
|
sl@0
|
56 |
// iMultThread removed - multithreading now standard
|
sl@0
|
57 |
|
sl@0
|
58 |
protected:
|
sl@0
|
59 |
CScript();
|
sl@0
|
60 |
void ConstructL(CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
|
sl@0
|
61 |
void ConstructL(CParseLine* aParse, CTestUtils*, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
|
sl@0
|
62 |
|
sl@0
|
63 |
private:
|
sl@0
|
64 |
void ProcessLineL(const TDesC8& aNarrowline, TInt8 aLineNo); // process a line of script
|
sl@0
|
65 |
void LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
|
sl@0
|
66 |
TRefByValue<const TDesC16> aFmt, ...);
|
sl@0
|
67 |
|
sl@0
|
68 |
private:
|
sl@0
|
69 |
// data members
|
sl@0
|
70 |
RFs iTheFs; // the file system
|
sl@0
|
71 |
HBufC8* iScriptBuffer; // ptr to script file in memory
|
sl@0
|
72 |
TPath iTheTestPath; // test path
|
sl@0
|
73 |
|
sl@0
|
74 |
// line parse object
|
sl@0
|
75 |
CParseLine* iParse;
|
sl@0
|
76 |
// flag indicates whether iParse is owned or not
|
sl@0
|
77 |
TBool iParseOwner;
|
sl@0
|
78 |
|
sl@0
|
79 |
// recursion count - static global
|
sl@0
|
80 |
// do not define static if Unit Testing
|
sl@0
|
81 |
#if !defined (__TSU_TESTFRAMEWORK__)
|
sl@0
|
82 |
static TInt iScriptDepth;
|
sl@0
|
83 |
#endif
|
sl@0
|
84 |
|
sl@0
|
85 |
// log
|
sl@0
|
86 |
CLog* iLog;
|
sl@0
|
87 |
|
sl@0
|
88 |
// default guard timer, if any
|
sl@0
|
89 |
TInt64 iGuardTimer;
|
sl@0
|
90 |
|
sl@0
|
91 |
// matchString if any
|
sl@0
|
92 |
HBufC* iMatchString;
|
sl@0
|
93 |
|
sl@0
|
94 |
// current results
|
sl@0
|
95 |
TInt iPass;
|
sl@0
|
96 |
TInt iFail;
|
sl@0
|
97 |
TInt iInconclusive;
|
sl@0
|
98 |
TInt iTestSuiteError;
|
sl@0
|
99 |
TInt iAbort;
|
sl@0
|
100 |
TInt iKnownFailure;
|
sl@0
|
101 |
TInt iTotal;
|
sl@0
|
102 |
|
sl@0
|
103 |
};
|
sl@0
|
104 |
|
sl@0
|
105 |
#endif // __SCRIPT_H__
|