First public contribution.
2 * Copyright (c) 1998-2010 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #ifndef __T_SCRIPTSETUP_H__
20 #define __T_SCRIPTSETUP_H__
22 #include "t_testsetup.h"
23 #include "tScriptTests.h"
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");
45 class TTestActionSpec;
50 class CScriptSetup : public CTestSetup
53 IMPORT_C static CScriptSetup* NewLC(CConsoleBase* aConsole);
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();
63 IMPORT_C TBool InitialiseL(RFs &aFs, const TDesC& aDefaultScript = KNullDesC, const TDesC& aDefaultLog = KNullDesC, TBool aUseCommandLine = ETrue);
66 CScriptSetup(CConsoleBase* aConsole);
75 IMPORT_C virtual CTestAction* CreateActionL(RFs& aFs, const TTestActionSpec& aTestActionSpec,
76 const TScriptTests theTestArray[]) const;