sl@0: /* sl@0: * Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of the License "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: #ifndef __T_TESTSETUP_H__ sl@0: #define __T_TESTSETUP_H__ sl@0: sl@0: //The test groupings. Defined here to save multiple declarations in tScriptTests.h and tHardcodedTests.h sl@0: #define EXOOM 1 //Do not run if doing OOM testing sl@0: #define INOOM 2 //Run only if doing OOM testing sl@0: #define EXCANCEL 4 //Do not run if doing cancellation testing sl@0: #define INCANCEL 8 //Run only if doing cancellation testing sl@0: #define SKIP 16 //Do not run unless the "-s" is specified sl@0: #define SMOKE 32 //Run only if "-e" is specified sl@0: #define INTER 64 //Run only if "-i" is specified sl@0: #define DEFAULTGROUPING SMOKE sl@0: sl@0: #include sl@0: #include "t_output.h" sl@0: sl@0: class CTestHandlerSettings; sl@0: struct TScriptTests; sl@0: struct THardcodedTests; sl@0: sl@0: class CTestSetup : public CBase sl@0: { sl@0: public: sl@0: IMPORT_C ~CTestSetup(); sl@0: sl@0: /** sl@0: * Run the tests described in a script. sl@0: * sl@0: * @param aUseCommandLine - if true (the default), use any script and log sl@0: * files specified on the commandline in preference to aScript and aLogFile. sl@0: * @param aResult - boolean which gets set to indicate the result sl@0: * @param aConsole - specifies a user defined console. NULL if we the sl@0: * test setup creates one sl@0: */ sl@0: sl@0: IMPORT_C static void CreateAndRunTestsL(TScriptTests theTestTypes[], const TDesC& aScript, const TDesC& aLogFile, sl@0: TBool aUseCommandline = ETrue, CConsoleBase* aConsole = NULL, TBool* aResult = NULL); sl@0: IMPORT_C static void CreateAndRunTestsL(THardcodedTests theTestTypes[], const TDesC& aDefaultLog); sl@0: sl@0: inline CConsoleBase& Console(void) { return(*iConsole);} sl@0: inline Output& LogFile(void) { return(*iLogFile);} sl@0: sl@0: protected: sl@0: CTestSetup(CConsoleBase* aConsole); sl@0: void ConstructL(); sl@0: void OpenLogFileL(RFs &aFs, TInt nPos, const TDesC &aDefaultLog, TBool aUseCommandline = ETrue); sl@0: sl@0: protected: sl@0: /// A console that the test framework uses sl@0: CConsoleBase* iConsole; sl@0: /// Do we own iConsole? sl@0: TBool iConsoleOwned; sl@0: /// Interface for writing to the log file sl@0: Output* iLogFile; sl@0: /// A condole that the test actions write to sl@0: CConsoleBase* iTestConsole; sl@0: sl@0: protected: sl@0: TBool CheckAllFlags(const CTestHandlerSettings& aCommandLineSettings, TInt& aScriptGroupings); sl@0: TBool CheckExhaustiveandSmoke(const CTestHandlerSettings& aCommandLineSettings, TInt& aScriptGroupings); sl@0: TBool CheckSkipped(const CTestHandlerSettings& aCommandLineSettings, TInt& aScriptGroupings); sl@0: TBool CheckInteractive(const CTestHandlerSettings& aCommandLineSettings, TInt& aScriptGroupings); sl@0: TBool CheckOOMandCancel(const CTestHandlerSettings& aCommandLineSettings, TInt& aScriptGroupings); sl@0: sl@0: IMPORT_C static HBufC* GetArgument(TInt nPos=0); sl@0: private: sl@0: static void InitFileserverSessionLC(RFs& aFs); sl@0: }; sl@0: sl@0: #endif