os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/t_testsetup.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 #ifndef __T_TESTSETUP_H__
    20 #define __T_TESTSETUP_H__
    21 
    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
    31 
    32 #include <e32base.h>
    33 #include "t_output.h"
    34 
    35 class CTestHandlerSettings;
    36 struct TScriptTests;
    37 struct THardcodedTests;
    38 
    39 class CTestSetup : public CBase
    40 	{
    41 public:
    42 	IMPORT_C ~CTestSetup();
    43 
    44 	/**
    45 	 * Run the tests described in a script.
    46 	 *
    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
    52 	 */
    53 	
    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);
    57 
    58 	inline CConsoleBase& Console(void) { return(*iConsole);}
    59 	inline Output& LogFile(void) { return(*iLogFile);}
    60 
    61 protected:
    62 	CTestSetup(CConsoleBase* aConsole);
    63 	void ConstructL();
    64 	void OpenLogFileL(RFs &aFs, TInt nPos, const TDesC &aDefaultLog, TBool aUseCommandline = ETrue);
    65 
    66 protected:
    67 	/// A console that the test framework uses
    68 	CConsoleBase* iConsole;
    69 	/// Do we own iConsole?
    70 	TBool iConsoleOwned;
    71 	/// Interface for writing to the log file
    72 	Output* iLogFile;
    73 	/// A condole that the test actions write to
    74 	CConsoleBase* iTestConsole;
    75 
    76 protected:
    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);
    82 
    83 	IMPORT_C static HBufC* GetArgument(TInt nPos=0);
    84 private:
    85 	static void InitFileserverSessionLC(RFs& aFs);
    86 	};
    87 
    88 #endif