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