os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/tScriptSetup.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 1998-2010 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of the License "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 #ifndef __T_SCRIPTSETUP_H__
    20 #define __T_SCRIPTSETUP_H__
    21 
    22 #include "t_testsetup.h"
    23 #include "tScriptTests.h"
    24 
    25 //test setup base classes
    26 _LIT8(KActionStart, "<action>");
    27 _LIT8(KActionEnd, "</action>");
    28 _LIT8(KActionNameStart, "<actionname>");
    29 _LIT8(KActionNameEnd, "</actionname>");
    30 _LIT8(KActionTypeStart, "<actiontype>");
    31 _LIT8(KActionTypeEnd, "</actiontype>");
    32 _LIT8(KActionBodyStart, "<actionbody>");
    33 _LIT8(KActionBodyEnd, "</actionbody>");
    34 _LIT8(KActionResultStart, "<actionresult>");
    35 _LIT8(KActionResultEnd, "</actionresult>");
    36 _LIT8(KActionGroupingStart, "<actiongrouping>");
    37 _LIT8(KActionGroupingEnd, "</actiongrouping>");
    38 _LIT8(KKnownDefectStart, "<knowndefect>");
    39 _LIT8(KKnownDefectEnd, "</knowndefect>");
    40 _LIT8(KRunTestStep, "RUN_TEST_STEP");
    41 _LIT8(KStartTestStep, "START_TESTCASE");
    42 _LIT8(KEndTestStep, "END_TESTCASE");
    43 
    44 class CTestAction;
    45 class TTestActionSpec;
    46 class CTestSetup;
    47 class CTestSpec;
    48 
    49 
    50 class CScriptSetup : public CTestSetup
    51 	{
    52 public:
    53 	IMPORT_C static CScriptSetup* NewLC(CConsoleBase* aConsole);
    54 
    55 public:
    56 	//aTestSpec is the class that holds the array of test actions, and has the GetNextTest function
    57 	//theTestTypes is the static array of test types 
    58 	//aCommandLineSettings contains the command line parameters
    59 	IMPORT_C virtual void SetupTestsL(RFs& aFs,	CTestSpec& aTestSpec, TScriptTests theTestTypes[],
    60 			const CTestHandlerSettings& aCommandLineSettings);
    61 	IMPORT_C ~CScriptSetup();
    62 
    63 	IMPORT_C TBool InitialiseL(RFs &aFs, const TDesC& aDefaultScript = KNullDesC, const TDesC& aDefaultLog = KNullDesC, TBool aUseCommandLine = ETrue);
    64 	HBufC* iScriptPath;
    65 protected:
    66 	CScriptSetup(CConsoleBase* aConsole);
    67 
    68 protected:
    69 	HBufC8* iTestInput;
    70 	HBufC8* scriptResult;
    71 
    72 	TBool	iTefScript;
    73 
    74 protected:
    75 	IMPORT_C virtual CTestAction* CreateActionL(RFs& aFs, const TTestActionSpec& aTestActionSpec, 
    76 		const TScriptTests theTestArray[]) const;
    77 	};
    78 
    79 #endif