1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/t_tefinput.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,69 @@
1.4 +//
1.5 +// Copyright (c) 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 +#ifndef T_TEFINPUT_H_
1.22 +#define T_TEFINPUT_H_
1.23 +
1.24 +#include <e32cons.h>
1.25 +#include <f32file.h>
1.26 +#include <e32std.h>
1.27 +#include "t_input.h"
1.28 +
1.29 +
1.30 +
1.31 +class Tefinput
1.32 + {
1.33 +public: // static functions no object required
1.34 +
1.35 + // Extracts RUN_TESTSTEP from the whole of script file passed in
1.36 + IMPORT_C static TPtrC8 ParseRunTestStep(const TDesC8& aBuf, const TDesC8& aTag, TInt& aPos, TInt& aError);
1.37 +
1.38 + // Extracts the nth word from the given descritor
1.39 + IMPORT_C static TPtrC8 ParseNthElement(const TDesC8& aBuf, TInt aWordPos, TInt& aError);
1.40 +
1.41 + // Extracts testCaseID from the whole script file
1.42 + IMPORT_C static TPtrC8 ParseTestCaseID(const TDesC8& aBuf, const TDesC8& aTag, TDes8& aPrevTestID, TInt& aPos, TInt& aError, TBool& testSet, TBool& startTest);
1.43 +
1.44 + // Generates the path for .ini file from the .script file path
1.45 + IMPORT_C static TInt ParseiniPath(const TDesC8& aIniFileName, const TDesC& aScriptPath, TDes& aIniFilePath);
1.46 +
1.47 + // Reads the whole of .ini file contents, calls ParseActionbody()to extract info between <actionbody></actionbody>tags
1.48 + IMPORT_C static HBufC8* GetiniFile(RFs& aFs, const TDesC& aIniFilePath, TInt& err);
1.49 +
1.50 + // Extracts info between <actionbody></actionbody>tags from the inifile contents
1.51 + IMPORT_C static TInt ParseActionbody(TPtrC8& aBuf, const TDesC8& aIniTag, TPtrC8& aSectionBody);
1.52 +
1.53 + // Takes in an integer and returns the appropriate error code with <return></return> tags
1.54 + IMPORT_C static TInt GetActionResult(TInt aErrCode, TDes8& aReturnTag);
1.55 +
1.56 + // Checks if the first word in RUN_TEST_STEP is an error code. If, then calls GetActionResult().
1.57 + IMPORT_C static TInt ParseActionResult(const TDesC8& aBuf, TDes8& aActionResult);
1.58 +
1.59 +
1.60 + // Removes any /t, /n and empty spaces from any extracted data.
1.61 + IMPORT_C static TPtrC8 Trim(const TDesC8& aBuf);
1.62 +
1.63 + //Removes '_' that is joining 2 words
1.64 + IMPORT_C static TDes8 TrimActionType(const TDesC8& aBuf, TDes8& aType);
1.65 +
1.66 + //Returns ETRUE if reached end of a testcase
1.67 + IMPORT_C static TBool EndTestCase(const TDesC8& aBuf, const TDesC8& aRunStep, const TDesC8& aTag, TInt& aPos);
1.68 +
1.69 +
1.70 +};
1.71 +
1.72 +#endif