os/mm/mmtestenv/mmtestfw/Source/TestFramework/script.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/mmtestenv/mmtestfw/Source/TestFramework/script.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,105 @@
     1.4 +// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#ifndef __SCRIPT_H__
    1.20 +#define __SCRIPT_H__
    1.21 +
    1.22 +/**
    1.23 + *
    1.24 + * File name / line buffer lengths
    1.25 + *
    1.26 + * @xxxx
    1.27 + *
    1.28 + */
    1.29 +
    1.30 +class CParseLine;
    1.31 +class CFileName;
    1.32 +
    1.33 +/**
    1.34 + *
    1.35 + * Script processor.
    1.36 + * Reads, parses and executes the test script.
    1.37 + *
    1.38 + * @xxxx
    1.39 + *
    1.40 + */
    1.41 +class CScript : public CBase
    1.42 +	{
    1.43 +public:
    1.44 +	static CScript* NewL(CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
    1.45 +	static CScript* NewL(CParseLine* aParse, CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
    1.46 +	static CScript* NewLC(CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
    1.47 +	static CScript* NewLC(CParseLine* aParse, CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
    1.48 +	~CScript();	
    1.49 +
    1.50 +	TBool OpenScriptFile(CFileName* aScriptFileName);		// read in a script file
    1.51 +	TVerdict ExecuteScriptL();						// parse and execute script 
    1.52 +	void DisplayResults();
    1.53 +	void AddResult(TVerdict aTestVerdict);
    1.54 +	void AddResult(CScript* aSubScript);
    1.55 +	void Pause();
    1.56 +	TBool BreakOnError();
    1.57 +
    1.58 +	TBool iPauseAtEnd;
    1.59 +	// iMultThread removed - multithreading now standard
    1.60 +
    1.61 +protected:
    1.62 +	CScript();
    1.63 +	void ConstructL(CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
    1.64 +	void ConstructL(CParseLine* aParse, CTestUtils*, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
    1.65 +
    1.66 +private:
    1.67 +	void ProcessLineL(const TDesC8& aNarrowline, TInt8 aLineNo);	// process a line of script
    1.68 +	void LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
    1.69 +		TRefByValue<const TDesC16> aFmt, ...);
    1.70 +
    1.71 +private:
    1.72 +	// data members
    1.73 +	RFs		iTheFs;										// the file system
    1.74 +	HBufC8* iScriptBuffer;								// ptr to script file in memory
    1.75 +	TPath	iTheTestPath;								// test path
    1.76 +
    1.77 +	// line parse object
    1.78 +	CParseLine* iParse;
    1.79 +	// flag indicates whether iParse is owned or not
    1.80 +	TBool	iParseOwner;
    1.81 +
    1.82 +	// recursion count - static global 
    1.83 +// do not define static if Unit Testing
    1.84 +#if !defined (__TSU_TESTFRAMEWORK__)
    1.85 +	static TInt iScriptDepth;
    1.86 +#endif
    1.87 +
    1.88 +	// log
    1.89 +	CLog* iLog;
    1.90 +
    1.91 +	// default guard timer, if any
    1.92 +	TInt64 iGuardTimer;
    1.93 +	
    1.94 +	// matchString if any
    1.95 +	HBufC* iMatchString;
    1.96 +
    1.97 +	// current results
    1.98 +	TInt	iPass;
    1.99 +	TInt	iFail;
   1.100 +	TInt	iInconclusive;
   1.101 +	TInt	iTestSuiteError;
   1.102 +	TInt	iAbort;
   1.103 +	TInt	iKnownFailure;
   1.104 +	TInt	iTotal;
   1.105 +
   1.106 +	};
   1.107 +
   1.108 +#endif // __SCRIPT_H__