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