os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/tScriptSetup.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/tScriptSetup.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,79 @@
     1.4 +/*
     1.5 +* Copyright (c) 1998-2010 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of the License "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +#ifndef __T_SCRIPTSETUP_H__
    1.23 +#define __T_SCRIPTSETUP_H__
    1.24 +
    1.25 +#include "t_testsetup.h"
    1.26 +#include "tScriptTests.h"
    1.27 +
    1.28 +//test setup base classes
    1.29 +_LIT8(KActionStart, "<action>");
    1.30 +_LIT8(KActionEnd, "</action>");
    1.31 +_LIT8(KActionNameStart, "<actionname>");
    1.32 +_LIT8(KActionNameEnd, "</actionname>");
    1.33 +_LIT8(KActionTypeStart, "<actiontype>");
    1.34 +_LIT8(KActionTypeEnd, "</actiontype>");
    1.35 +_LIT8(KActionBodyStart, "<actionbody>");
    1.36 +_LIT8(KActionBodyEnd, "</actionbody>");
    1.37 +_LIT8(KActionResultStart, "<actionresult>");
    1.38 +_LIT8(KActionResultEnd, "</actionresult>");
    1.39 +_LIT8(KActionGroupingStart, "<actiongrouping>");
    1.40 +_LIT8(KActionGroupingEnd, "</actiongrouping>");
    1.41 +_LIT8(KKnownDefectStart, "<knowndefect>");
    1.42 +_LIT8(KKnownDefectEnd, "</knowndefect>");
    1.43 +_LIT8(KRunTestStep, "RUN_TEST_STEP");
    1.44 +_LIT8(KStartTestStep, "START_TESTCASE");
    1.45 +_LIT8(KEndTestStep, "END_TESTCASE");
    1.46 +
    1.47 +class CTestAction;
    1.48 +class TTestActionSpec;
    1.49 +class CTestSetup;
    1.50 +class CTestSpec;
    1.51 +
    1.52 +
    1.53 +class CScriptSetup : public CTestSetup
    1.54 +	{
    1.55 +public:
    1.56 +	IMPORT_C static CScriptSetup* NewLC(CConsoleBase* aConsole);
    1.57 +
    1.58 +public:
    1.59 +	//aTestSpec is the class that holds the array of test actions, and has the GetNextTest function
    1.60 +	//theTestTypes is the static array of test types 
    1.61 +	//aCommandLineSettings contains the command line parameters
    1.62 +	IMPORT_C virtual void SetupTestsL(RFs& aFs,	CTestSpec& aTestSpec, TScriptTests theTestTypes[],
    1.63 +			const CTestHandlerSettings& aCommandLineSettings);
    1.64 +	IMPORT_C ~CScriptSetup();
    1.65 +
    1.66 +	IMPORT_C TBool InitialiseL(RFs &aFs, const TDesC& aDefaultScript = KNullDesC, const TDesC& aDefaultLog = KNullDesC, TBool aUseCommandLine = ETrue);
    1.67 +	HBufC* iScriptPath;
    1.68 +protected:
    1.69 +	CScriptSetup(CConsoleBase* aConsole);
    1.70 +
    1.71 +protected:
    1.72 +	HBufC8* iTestInput;
    1.73 +	HBufC8* scriptResult;
    1.74 +
    1.75 +	TBool	iTefScript;
    1.76 +
    1.77 +protected:
    1.78 +	IMPORT_C virtual CTestAction* CreateActionL(RFs& aFs, const TTestActionSpec& aTestActionSpec, 
    1.79 +		const TScriptTests theTestArray[]) const;
    1.80 +	};
    1.81 +
    1.82 +#endif