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_TESTSETUP_H__
|
sl@0
|
20 |
#define __T_TESTSETUP_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
//The test groupings. Defined here to save multiple declarations in tScriptTests.h and tHardcodedTests.h
|
sl@0
|
23 |
#define EXOOM 1 //Do not run if doing OOM testing
|
sl@0
|
24 |
#define INOOM 2 //Run only if doing OOM testing
|
sl@0
|
25 |
#define EXCANCEL 4 //Do not run if doing cancellation testing
|
sl@0
|
26 |
#define INCANCEL 8 //Run only if doing cancellation testing
|
sl@0
|
27 |
#define SKIP 16 //Do not run unless the "-s" is specified
|
sl@0
|
28 |
#define SMOKE 32 //Run only if "-e" is specified
|
sl@0
|
29 |
#define INTER 64 //Run only if "-i" is specified
|
sl@0
|
30 |
#define DEFAULTGROUPING SMOKE
|
sl@0
|
31 |
|
sl@0
|
32 |
#include <e32base.h>
|
sl@0
|
33 |
#include "t_output.h"
|
sl@0
|
34 |
|
sl@0
|
35 |
class CTestHandlerSettings;
|
sl@0
|
36 |
struct TScriptTests;
|
sl@0
|
37 |
struct THardcodedTests;
|
sl@0
|
38 |
|
sl@0
|
39 |
class CTestSetup : public CBase
|
sl@0
|
40 |
{
|
sl@0
|
41 |
public:
|
sl@0
|
42 |
IMPORT_C ~CTestSetup();
|
sl@0
|
43 |
|
sl@0
|
44 |
/**
|
sl@0
|
45 |
* Run the tests described in a script.
|
sl@0
|
46 |
*
|
sl@0
|
47 |
* @param aUseCommandLine - if true (the default), use any script and log
|
sl@0
|
48 |
* files specified on the commandline in preference to aScript and aLogFile.
|
sl@0
|
49 |
* @param aResult - boolean which gets set to indicate the result
|
sl@0
|
50 |
* @param aConsole - specifies a user defined console. NULL if we the
|
sl@0
|
51 |
* test setup creates one
|
sl@0
|
52 |
*/
|
sl@0
|
53 |
|
sl@0
|
54 |
IMPORT_C static void CreateAndRunTestsL(TScriptTests theTestTypes[], const TDesC& aScript, const TDesC& aLogFile,
|
sl@0
|
55 |
TBool aUseCommandline = ETrue, CConsoleBase* aConsole = NULL, TBool* aResult = NULL);
|
sl@0
|
56 |
IMPORT_C static void CreateAndRunTestsL(THardcodedTests theTestTypes[], const TDesC& aDefaultLog);
|
sl@0
|
57 |
|
sl@0
|
58 |
inline CConsoleBase& Console(void) { return(*iConsole);}
|
sl@0
|
59 |
inline Output& LogFile(void) { return(*iLogFile);}
|
sl@0
|
60 |
|
sl@0
|
61 |
protected:
|
sl@0
|
62 |
CTestSetup(CConsoleBase* aConsole);
|
sl@0
|
63 |
void ConstructL();
|
sl@0
|
64 |
void OpenLogFileL(RFs &aFs, TInt nPos, const TDesC &aDefaultLog, TBool aUseCommandline = ETrue);
|
sl@0
|
65 |
|
sl@0
|
66 |
protected:
|
sl@0
|
67 |
/// A console that the test framework uses
|
sl@0
|
68 |
CConsoleBase* iConsole;
|
sl@0
|
69 |
/// Do we own iConsole?
|
sl@0
|
70 |
TBool iConsoleOwned;
|
sl@0
|
71 |
/// Interface for writing to the log file
|
sl@0
|
72 |
Output* iLogFile;
|
sl@0
|
73 |
/// A condole that the test actions write to
|
sl@0
|
74 |
CConsoleBase* iTestConsole;
|
sl@0
|
75 |
|
sl@0
|
76 |
protected:
|
sl@0
|
77 |
TBool CheckAllFlags(const CTestHandlerSettings& aCommandLineSettings, TInt& aScriptGroupings);
|
sl@0
|
78 |
TBool CheckExhaustiveandSmoke(const CTestHandlerSettings& aCommandLineSettings, TInt& aScriptGroupings);
|
sl@0
|
79 |
TBool CheckSkipped(const CTestHandlerSettings& aCommandLineSettings, TInt& aScriptGroupings);
|
sl@0
|
80 |
TBool CheckInteractive(const CTestHandlerSettings& aCommandLineSettings, TInt& aScriptGroupings);
|
sl@0
|
81 |
TBool CheckOOMandCancel(const CTestHandlerSettings& aCommandLineSettings, TInt& aScriptGroupings);
|
sl@0
|
82 |
|
sl@0
|
83 |
IMPORT_C static HBufC* GetArgument(TInt nPos=0);
|
sl@0
|
84 |
private:
|
sl@0
|
85 |
static void InitFileserverSessionLC(RFs& aFs);
|
sl@0
|
86 |
};
|
sl@0
|
87 |
|
sl@0
|
88 |
#endif
|