sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1998-2009 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_TESTACTION_H__
|
sl@0
|
20 |
#define __T_TESTACTION_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <e32base.h>
|
sl@0
|
23 |
#include <f32file.h>
|
sl@0
|
24 |
#include "t_testactionspec.h"
|
sl@0
|
25 |
|
sl@0
|
26 |
class CConsoleBase;
|
sl@0
|
27 |
class CConsoleBase;
|
sl@0
|
28 |
class Output;
|
sl@0
|
29 |
class CTestHandler;
|
sl@0
|
30 |
|
sl@0
|
31 |
const TInt KMaxErrorSize = 100;
|
sl@0
|
32 |
|
sl@0
|
33 |
class CTestAction : public CBase
|
sl@0
|
34 |
{
|
sl@0
|
35 |
public:
|
sl@0
|
36 |
IMPORT_C virtual ~CTestAction();
|
sl@0
|
37 |
|
sl@0
|
38 |
public:
|
sl@0
|
39 |
enum TScriptError
|
sl@0
|
40 |
{
|
sl@0
|
41 |
ENone,
|
sl@0
|
42 |
ESyntax,
|
sl@0
|
43 |
EFileNotFound
|
sl@0
|
44 |
};
|
sl@0
|
45 |
IMPORT_C virtual void PerformPrerequisite(TRequestStatus& aStatus);
|
sl@0
|
46 |
virtual void PerformAction(TRequestStatus& aStatus) = 0;
|
sl@0
|
47 |
IMPORT_C virtual void PerformPostrequisite(TRequestStatus& aStatus);
|
sl@0
|
48 |
TBool Finished();
|
sl@0
|
49 |
IMPORT_C virtual void ReportAction();
|
sl@0
|
50 |
IMPORT_C virtual void CheckResult(TInt aError);
|
sl@0
|
51 |
IMPORT_C void virtual FailTestNow(TRequestStatus& aStatus);
|
sl@0
|
52 |
IMPORT_C virtual TScriptError ScriptError(void);
|
sl@0
|
53 |
IMPORT_C virtual void ScriptError(TDes& aError);
|
sl@0
|
54 |
IMPORT_C virtual void SetScriptError(const TScriptError &iScriptError, const TDesC& aError);
|
sl@0
|
55 |
|
sl@0
|
56 |
// Specific functions for testing cancellation
|
sl@0
|
57 |
public:
|
sl@0
|
58 |
IMPORT_C virtual void PerformCancel();
|
sl@0
|
59 |
|
sl@0
|
60 |
// Specific functions for testing OOM
|
sl@0
|
61 |
public:
|
sl@0
|
62 |
IMPORT_C virtual void Reset();
|
sl@0
|
63 |
IMPORT_C virtual void AfterOOMFailure();
|
sl@0
|
64 |
IMPORT_C virtual void ResetState();
|
sl@0
|
65 |
|
sl@0
|
66 |
// Functions for accessing data shared between all test actions in a test run
|
sl@0
|
67 |
public:
|
sl@0
|
68 |
void SetTestHandler(CTestHandler& aTestHandler);
|
sl@0
|
69 |
protected:
|
sl@0
|
70 |
IMPORT_C CBase* SharedData() const;
|
sl@0
|
71 |
IMPORT_C void SetSharedData(CBase* aData);
|
sl@0
|
72 |
|
sl@0
|
73 |
protected:
|
sl@0
|
74 |
IMPORT_C CTestAction(CConsoleBase& aConsole, Output& aOut);
|
sl@0
|
75 |
IMPORT_C void ConstructL(const TTestActionSpec& aTestActionSpec);
|
sl@0
|
76 |
|
sl@0
|
77 |
private:
|
sl@0
|
78 |
IMPORT_C virtual void DoPerformPrerequisite(TRequestStatus& aStatus);
|
sl@0
|
79 |
IMPORT_C virtual void DoPerformPostrequisite(TRequestStatus& aStatus);
|
sl@0
|
80 |
virtual void DoReportAction() = 0;
|
sl@0
|
81 |
virtual void DoCheckResult(TInt aError) = 0;
|
sl@0
|
82 |
public:
|
sl@0
|
83 |
enum TActionState
|
sl@0
|
84 |
{
|
sl@0
|
85 |
EPrerequisite,
|
sl@0
|
86 |
EAction,
|
sl@0
|
87 |
EPostrequisite
|
sl@0
|
88 |
};
|
sl@0
|
89 |
|
sl@0
|
90 |
protected:
|
sl@0
|
91 |
TBool iFinished;
|
sl@0
|
92 |
TInt iExpectedResult;
|
sl@0
|
93 |
|
sl@0
|
94 |
public:
|
sl@0
|
95 |
/**
|
sl@0
|
96 |
* After the test, this will be ETrue if the test succeeded or EFalse otherwise.
|
sl@0
|
97 |
*/
|
sl@0
|
98 |
TBool iResult;
|
sl@0
|
99 |
|
sl@0
|
100 |
|
sl@0
|
101 |
/**
|
sl@0
|
102 |
* Inidicates if it s .script file
|
sl@0
|
103 |
*/
|
sl@0
|
104 |
TBool iTefScript;
|
sl@0
|
105 |
|
sl@0
|
106 |
/**
|
sl@0
|
107 |
* Denote a failure of any RUNTESTSTEP within a single TESTCASE
|
sl@0
|
108 |
* */
|
sl@0
|
109 |
TBool iRunningResult;
|
sl@0
|
110 |
|
sl@0
|
111 |
|
sl@0
|
112 |
/**
|
sl@0
|
113 |
* Indicates whether the test will fail because of known deferred defects etc
|
sl@0
|
114 |
*/
|
sl@0
|
115 |
TBool iKnownFailure;
|
sl@0
|
116 |
TActionState iActionState;
|
sl@0
|
117 |
HBufC8* iNameInfo;
|
sl@0
|
118 |
|
sl@0
|
119 |
protected:
|
sl@0
|
120 |
CConsoleBase& iConsole;
|
sl@0
|
121 |
Output& iOut;
|
sl@0
|
122 |
TBuf<KMaxErrorSize> aScriptErrorDescription;
|
sl@0
|
123 |
TScriptError iScriptError;
|
sl@0
|
124 |
CTestHandler* iTestHandler;
|
sl@0
|
125 |
};
|
sl@0
|
126 |
|
sl@0
|
127 |
#endif
|