First public contribution.
1 // Copyright (c) 2002-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.
21 * File name / line buffer lengths
33 * Reads, parses and executes the test script.
38 class CScript : public CBase
41 static CScript* NewL(CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
42 static CScript* NewL(CParseLine* aParse, CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
43 static CScript* NewLC(CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
44 static CScript* NewLC(CParseLine* aParse, CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
47 TBool OpenScriptFile(CFileName* aScriptFileName); // read in a script file
48 TVerdict ExecuteScriptL(); // parse and execute script
49 void DisplayResults();
50 void AddResult(TVerdict aTestVerdict);
51 void AddResult(CScript* aSubScript);
56 // iMultThread removed - multithreading now standard
60 void ConstructL(CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
61 void ConstructL(CParseLine* aParse, CTestUtils*, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
64 void ProcessLineL(const TDesC8& aNarrowline, TInt8 aLineNo); // process a line of script
65 void LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
66 TRefByValue<const TDesC16> aFmt, ...);
70 RFs iTheFs; // the file system
71 HBufC8* iScriptBuffer; // ptr to script file in memory
72 TPath iTheTestPath; // test path
76 // flag indicates whether iParse is owned or not
79 // recursion count - static global
80 // do not define static if Unit Testing
81 #if !defined (__TSU_TESTFRAMEWORK__)
82 static TInt iScriptDepth;
88 // default guard timer, if any
105 #endif // __SCRIPT_H__