os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/t_testsetup.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/t_testsetup.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,88 @@
     1.4 +/*
     1.5 +* Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of the License "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +#ifndef __T_TESTSETUP_H__
    1.23 +#define __T_TESTSETUP_H__
    1.24 +
    1.25 +//The test groupings. Defined here to save multiple declarations in tScriptTests.h and tHardcodedTests.h
    1.26 +#define EXOOM		1	//Do not run if doing OOM testing
    1.27 +#define INOOM		2	//Run only if doing OOM testing
    1.28 +#define EXCANCEL	4	//Do not run if doing cancellation testing
    1.29 +#define INCANCEL	8	//Run only if doing cancellation testing
    1.30 +#define SKIP		16	//Do not run unless the "-s" is specified
    1.31 +#define SMOKE		32	//Run only if "-e" is specified
    1.32 +#define INTER		64	//Run only if "-i" is specified
    1.33 +#define DEFAULTGROUPING		SMOKE
    1.34 +
    1.35 +#include <e32base.h>
    1.36 +#include "t_output.h"
    1.37 +
    1.38 +class CTestHandlerSettings;
    1.39 +struct TScriptTests;
    1.40 +struct THardcodedTests;
    1.41 +
    1.42 +class CTestSetup : public CBase
    1.43 +	{
    1.44 +public:
    1.45 +	IMPORT_C ~CTestSetup();
    1.46 +
    1.47 +	/**
    1.48 +	 * Run the tests described in a script.
    1.49 +	 *
    1.50 +	 * @param aUseCommandLine - if true (the default), use any script and log
    1.51 +	 * files specified on the commandline in preference to aScript and aLogFile.
    1.52 +	 * @param aResult - boolean which gets set to indicate the result
    1.53 +	 * @param aConsole - specifies a user defined console. NULL if we the 
    1.54 +	 * test setup creates one
    1.55 +	 */
    1.56 +	
    1.57 +	IMPORT_C static void CreateAndRunTestsL(TScriptTests theTestTypes[], const TDesC& aScript, const TDesC& aLogFile, 
    1.58 +		TBool aUseCommandline = ETrue, CConsoleBase* aConsole = NULL, TBool* aResult = NULL);
    1.59 +	IMPORT_C static void CreateAndRunTestsL(THardcodedTests theTestTypes[], const TDesC& aDefaultLog);
    1.60 +
    1.61 +	inline CConsoleBase& Console(void) { return(*iConsole);}
    1.62 +	inline Output& LogFile(void) { return(*iLogFile);}
    1.63 +
    1.64 +protected:
    1.65 +	CTestSetup(CConsoleBase* aConsole);
    1.66 +	void ConstructL();
    1.67 +	void OpenLogFileL(RFs &aFs, TInt nPos, const TDesC &aDefaultLog, TBool aUseCommandline = ETrue);
    1.68 +
    1.69 +protected:
    1.70 +	/// A console that the test framework uses
    1.71 +	CConsoleBase* iConsole;
    1.72 +	/// Do we own iConsole?
    1.73 +	TBool iConsoleOwned;
    1.74 +	/// Interface for writing to the log file
    1.75 +	Output* iLogFile;
    1.76 +	/// A condole that the test actions write to
    1.77 +	CConsoleBase* iTestConsole;
    1.78 +
    1.79 +protected:
    1.80 +	TBool CheckAllFlags(const CTestHandlerSettings& aCommandLineSettings, TInt& aScriptGroupings);
    1.81 +	TBool CheckExhaustiveandSmoke(const CTestHandlerSettings& aCommandLineSettings, TInt& aScriptGroupings);
    1.82 +	TBool CheckSkipped(const CTestHandlerSettings& aCommandLineSettings, TInt& aScriptGroupings);
    1.83 +	TBool CheckInteractive(const CTestHandlerSettings& aCommandLineSettings, TInt& aScriptGroupings);
    1.84 +	TBool CheckOOMandCancel(const CTestHandlerSettings& aCommandLineSettings, TInt& aScriptGroupings);
    1.85 +
    1.86 +	IMPORT_C static HBufC* GetArgument(TInt nPos=0);
    1.87 +private:
    1.88 +	static void InitFileserverSessionLC(RFs& aFs);
    1.89 +	};
    1.90 +
    1.91 +#endif