os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/t_testactionspec.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_TESTACTIONSPEC_H__
    20 #define __T_TESTACTIONSPEC_H__
    21 
    22 #include <e32base.h>
    23 #include <f32file.h> 
    24 
    25 
    26 class CConsoleBase;
    27 class Output;
    28 
    29 /**
    30  * TODO
    31  */
    32 class TTestActionSpec
    33 	{ 
    34 public:
    35 	TTestActionSpec();
    36 	~TTestActionSpec();
    37 	TInt Init(const TDesC8& aInput, TInt& aPos, CConsoleBase& aConsole, Output& aOut, TInt& aBitFlag);
    38 //	TInt TEFInit(RFs& aFs, const TDesC8& aInput, HBufC8*& aSectionData, HBufC8*& aIniSectionResultBody, const TDesC8& aTestCaseID, const TDesC8& aPrevTestCaseID, const TDesC8& aTestDescription, TBool testSet, const TDesC& aScriptPath, CConsoleBase& aConsole, Output& aOut, TInt& aBitFlag);
    39 	TInt TEFInit(RFs& aFs, const TDesC8& aInput, const TDesC8& aTestCaseID, TDesC8& aPrevTestCaseID, TBool& tefFile, TBool& runtest, TBool& iniFile, TDes8& aScriptResult , TDes8& aActionType, const TDesC& aScriptPath, CConsoleBase& /*aConsole*/, Output& aOut);
    40 	void HardcodedInit(const TDesC8& aInput);
    41 
    42 public:
    43 	TPtrC8 iActionName;
    44 	TPtrC8 iActionType;
    45 	TPtrC8 iActionGroup;
    46 	TPtrC8 iActionBody;
    47 	TPtrC8 iActionResult;
    48 	
    49 
    50 	
    51 	TBool	iTefScript;
    52 	
    53 	TPtrC8 iActionDescription;
    54 
    55 	RBuf8  iniSectionResultBody;
    56 	RBuf8 aTestIniFilePtr;		// This will hold the location in Heap where the ini file has been loaded for general use
    57 
    58 	/**
    59 	 * This member indicates the expected result of the action.
    60 	 */
    61 	
    62 	};
    63 
    64 #endif
    65