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: #include "t_testactionspec.h"
sl@0: #include "t_testsetup.h"
sl@0: #include "tScriptSetup.h"
sl@0: #include "t_input.h"
sl@0: #include "tScriptTests.h"
sl@0: #include "t_tefinput.h"
sl@0:
sl@0: _LIT8(KTrue, "true");
sl@0: _LIT8(KFalse, "false");
sl@0:
sl@0: _LIT8(KExOOMStart, "");
sl@0: _LIT8(KExOOMEnd, "");
sl@0: _LIT8(KInOOMStart, "");
sl@0: _LIT8(KInOOMEnd, "");
sl@0: _LIT8(KExCancelStart, "");
sl@0: _LIT8(KExCancelEnd, "");
sl@0: _LIT8(KInCancelStart, "");
sl@0: _LIT8(KInCancelEnd, "");
sl@0: _LIT8(KSkippedStart, "");
sl@0: _LIT8(KSkippedEnd, "");
sl@0: _LIT8(KSmokeStart, "");
sl@0: _LIT8(KSmokeEnd, "");
sl@0: _LIT8(KInteractiveStart, "");
sl@0: _LIT8(KInteractiveEnd, "");
sl@0:
sl@0:
sl@0: TTestActionSpec::TTestActionSpec()
sl@0: {
sl@0: }
sl@0:
sl@0: TTestActionSpec::~TTestActionSpec()
sl@0: {
sl@0: iniSectionResultBody.Close();
sl@0: }
sl@0:
sl@0: TInt TTestActionSpec::Init(const TDesC8& aInput,
sl@0: TInt& aPos,
sl@0: CConsoleBase& /*aConsole*/,
sl@0: Output& aOut,
sl@0: TInt& aBitFlag)
sl@0: {
sl@0: TInt err = KErrNone;
sl@0: iActionName.Set(Input::ParseElement(aInput, KActionNameStart, KActionNameEnd, aPos, err));
sl@0: if (err != KErrNone)
sl@0: {
sl@0: aOut.writeString(_L("Error couldn't find actionname in test case spec"));
sl@0: aOut.writeNewLine();
sl@0: return err;
sl@0: }
sl@0:
sl@0: iActionType.Set(Input::ParseElement(aInput, KActionTypeStart, KActionTypeEnd, aPos, err));
sl@0: if (err != KErrNone)
sl@0: {
sl@0: aOut.writeString(_L("Error couldn't find actiontype in test case spec"));
sl@0: aOut.writeNewLine();
sl@0: return err;
sl@0: }
sl@0:
sl@0: iActionGroup.Set(Input::ParseElement(aInput, KActionGroupingStart, KActionGroupingEnd, aPos, err));
sl@0: if (err == KErrNone)
sl@0: {
sl@0: //Do parsing of the returned groupings string
sl@0: TInt relativePos=0;
sl@0: TPtrC8 excludeOOM = Input::ParseElement(iActionGroup, KExOOMStart, KExOOMEnd, relativePos, err);
sl@0: relativePos=0;
sl@0: TPtrC8 includeOOM = Input::ParseElement(iActionGroup, KInOOMStart, KInOOMEnd, relativePos, err);
sl@0: relativePos=0;
sl@0: TPtrC8 excludeCancel = Input::ParseElement(iActionGroup, KExCancelStart, KExCancelEnd, relativePos, err);
sl@0: relativePos=0;
sl@0: TPtrC8 includeCancel = Input::ParseElement(iActionGroup, KInCancelStart, KInCancelEnd, relativePos, err);
sl@0: relativePos=0;
sl@0: TPtrC8 skipped = Input::ParseElement(iActionGroup, KSkippedStart, KSkippedEnd, relativePos, err);
sl@0: relativePos=0;
sl@0: TPtrC8 smoketest = Input::ParseElement(iActionGroup, KSmokeStart, KSmokeEnd, relativePos, err);
sl@0: relativePos=0;
sl@0: TPtrC8 interactive = Input::ParseElement(iActionGroup, KInteractiveStart, KInteractiveEnd, relativePos, err);
sl@0:
sl@0: if (excludeOOM==KTrue)
sl@0: {
sl@0: aBitFlag|=EXOOM;
sl@0: }
sl@0: else if (excludeOOM==KFalse)
sl@0: {
sl@0: aBitFlag&= (~EXOOM);
sl@0: }
sl@0:
sl@0: if (includeOOM==KTrue)
sl@0: {
sl@0: aBitFlag|=INOOM;
sl@0: }
sl@0: else if (includeOOM==KFalse)
sl@0: {
sl@0: aBitFlag&= (~INOOM);
sl@0: }
sl@0:
sl@0: if (excludeCancel==KTrue)
sl@0: {
sl@0: aBitFlag|=EXCANCEL;
sl@0: }
sl@0: else if (excludeCancel==KFalse)
sl@0: {
sl@0: aBitFlag&= (~EXCANCEL);
sl@0: }
sl@0:
sl@0: if (includeCancel==KTrue)
sl@0: {
sl@0: aBitFlag|=INCANCEL;
sl@0: }
sl@0: else if (includeCancel==KFalse)
sl@0: {
sl@0: aBitFlag&= (~INCANCEL);
sl@0: }
sl@0:
sl@0: if (skipped==KTrue)
sl@0: {
sl@0: aBitFlag|=SKIP;
sl@0: }
sl@0: else if (skipped==KFalse)
sl@0: {
sl@0: aBitFlag&= (~SKIP);
sl@0: }
sl@0:
sl@0: if (smoketest==KTrue)
sl@0: {
sl@0: aBitFlag|=SMOKE;
sl@0: }
sl@0: else if (smoketest==KFalse)
sl@0: {
sl@0: aBitFlag&= (~SMOKE);
sl@0: }
sl@0:
sl@0: if (interactive==KTrue)
sl@0: {
sl@0: aBitFlag|=INTER;
sl@0: }
sl@0: else if (interactive==KFalse)
sl@0: {
sl@0: aBitFlag&= (~INTER);
sl@0: }
sl@0: }
sl@0:
sl@0: iActionBody.Set(Input::ParseElement(aInput, KActionBodyStart, KActionBodyEnd, aPos, err));
sl@0: iActionResult.Set(Input::ParseElement(aInput, KActionResultStart, KActionResultEnd, aPos, err));
sl@0: iTefScript = EFalse;
sl@0:
sl@0: return KErrNone;
sl@0: }
sl@0:
sl@0:
sl@0: // Extracts information from *.script and *.ini files to the appropriate member variables.
sl@0:
sl@0: TInt TTestActionSpec::TEFInit(RFs& aFs,
sl@0: const TDesC8& aInput,
sl@0: const TDesC8& aTestCaseID,
sl@0: TDesC8& aPrevTestCaseID,
sl@0: TBool& tefFile,
sl@0: TBool& runtest,
sl@0: TBool& inifile,
sl@0: TDes8& aScriptResult,
sl@0: TDes8& aActionType,
sl@0: const TDesC& aScriptPath,
sl@0: CConsoleBase& /*aConsole*/,
sl@0: Output& aOut)
sl@0: {
sl@0:
sl@0: TInt err = KErrNone;
sl@0: TInt actionTypePos=3;
sl@0: TBool scriptactionResultSet = EFalse;
sl@0: // TBool iniactionResultSet = EFalse;
sl@0: TBuf8<512> prevTestCaseID;
sl@0: TBuf8<512> prevTestDescription;
sl@0:
sl@0:
sl@0:
sl@0: // Checks if the first word from the script file is an error code
sl@0: // if(error code)
sl@0: // sets 'actionResult' to the relevent error code with the tags
sl@0:
sl@0: TPtrC8 firstWord = Tefinput::ParseNthElement(aInput,1, err);
sl@0: if(err == KErrNone)
sl@0: {
sl@0: TInt tmpno;
sl@0: TLex8 lex8(firstWord);
sl@0: err = lex8.Val(tmpno);
sl@0: if(err != KErrNone)
sl@0: {
sl@0: actionTypePos = 4;
sl@0: err = Tefinput::ParseActionResult(firstWord, aScriptResult);
sl@0: scriptactionResultSet = ETrue;
sl@0: }
sl@0: }
sl@0:
sl@0: //1. Extracts the .ini file name from the .script file
sl@0: //2. Reads in the [section] name from the .script file
sl@0: //3. Generates .ini path from .script file path and .ini file name
sl@0: //4. Sets iActionBody with the info from .ini file
sl@0:
sl@0: TBuf iniFilePath;
sl@0: TBuf<512> iniFileData;
sl@0: TPtrC8 iniSectionData;
sl@0:
sl@0:
sl@0: TPtrC8 iniFileName = Tefinput::ParseNthElement(aInput,actionTypePos+1,err);
sl@0: if(err == KErrNone)
sl@0: {
sl@0: TPtrC8 iniSectionName = Tefinput::ParseNthElement(aInput,actionTypePos+2,err);
sl@0: if(err == KErrNone)
sl@0: {
sl@0: err = Tefinput::ParseiniPath(iniFileName, aScriptPath, iniFilePath);
sl@0: if(err == KErrNone)
sl@0: {
sl@0: aTestIniFilePtr.Assign(Tefinput::GetiniFile(aFs, iniFilePath, err)); // Load up our local RBuf ptr to takeover the management of the inifile data in Heap
sl@0:
sl@0: if(err == KErrNone)
sl@0: {
sl@0: TPtrC8 iniFile = aTestIniFilePtr.Ptr();
sl@0: inifile = ETrue;
sl@0: err = Tefinput::ParseActionbody(iniFile, iniSectionName, iniSectionData);
sl@0: if(err == KErrNone)
sl@0: {
sl@0: TInt pos = 0;
sl@0: iActionBody.Set(Input::ParseElement(iniSectionData, KActionBodyStart, KActionBodyEnd, pos, err));
sl@0: if (err == KErrNotFound)
sl@0: {
sl@0: aOut.writeString(_L("Error couldn't find actionbody in test case spec"));
sl@0: aOut.writeNewLine();
sl@0: return err;
sl@0: }
sl@0: }
sl@0: }
sl@0: else
sl@0: {
sl@0: inifile = EFalse;
sl@0: }
sl@0: }
sl@0: }
sl@0: }
sl@0: else
sl@0: {
sl@0: inifile = EFalse;
sl@0: }
sl@0:
sl@0: TInt pos = 0;
sl@0:
sl@0: // Extracts info b/w tags
sl@0: // Sets iActionResult with info both from .script and .ini file
sl@0: TPtrC8 tempResult;
sl@0: TPtrC8 scriptResult;
sl@0: TInt resultlen ;
sl@0:
sl@0: if(scriptactionResultSet)
sl@0: {
sl@0: scriptResult.Set(aScriptResult);
sl@0: tempResult.Set(Input::ParseElement(iniSectionData, KActionResultStart, KActionResultEnd, pos, err));
sl@0: if (err == KErrNone)
sl@0: {
sl@0: resultlen = scriptResult.Length() + tempResult.Length();
sl@0: iniSectionResultBody.Create(tempResult,resultlen);
sl@0: iniSectionResultBody.Insert(0,scriptResult);
sl@0: iActionResult.Set(iniSectionResultBody);
sl@0: // iniactionResultSet = ETrue;
sl@0: }
sl@0: else
sl@0: {
sl@0: iniSectionResultBody.Create(scriptResult);
sl@0: iActionResult.Set(iniSectionResultBody);
sl@0: }
sl@0: }
sl@0: else
sl@0: {
sl@0: tempResult.Set(Input::ParseElement(iniSectionData, KActionResultStart, KActionResultEnd, pos, err));
sl@0: err = Tefinput::GetActionResult(KErrNone, aScriptResult);
sl@0: if(err == KErrNone)
sl@0: {
sl@0: scriptResult.Set(aScriptResult);
sl@0: resultlen = tempResult.Length() + scriptResult.Length();
sl@0: iniSectionResultBody.Create(tempResult, resultlen);
sl@0: iniSectionResultBody.Insert(0,aScriptResult);
sl@0: iActionResult.Set(iniSectionResultBody);
sl@0: }
sl@0: else
sl@0: {
sl@0: iniSectionResultBody.Create(tempResult);
sl@0: iActionResult.Set(iniSectionResultBody);
sl@0: }
sl@0: }
sl@0:
sl@0:
sl@0: // aPrevTestCaseID = aTestCaseID;
sl@0: //Sets iActionName with the @SYMTestCaseID
sl@0: if(!runtest)
sl@0: {
sl@0: iActionName.Set(aPrevTestCaseID);
sl@0: }
sl@0: else
sl@0: {
sl@0: iActionName.Set(aTestCaseID);
sl@0: }
sl@0:
sl@0:
sl@0:
sl@0: //Sets iActionType from .script file
sl@0:
sl@0: TBuf8<512> modifiedType;
sl@0: TBuf8<512> modifiedTypeTemp;
sl@0: TPtrC8 actionTypeTemp;
sl@0: TPtrC8 actionType;
sl@0: TPtrC8 TempType;
sl@0:
sl@0:
sl@0: iActionType.Set(Tefinput::ParseNthElement(aInput,actionTypePos,err));
sl@0: if (err == KErrNone)
sl@0: {
sl@0: modifiedType.Copy(iActionType);
sl@0: modifiedType.Copy(Tefinput::TrimActionType(modifiedType, aActionType));
sl@0:
sl@0: iActionType.Set(aActionType);
sl@0: }
sl@0: else
sl@0: {
sl@0: aOut.writeString(_L("Error couldn't find actiontype in test case spec"));
sl@0: aOut.writeNewLine();
sl@0: return err;
sl@0: }
sl@0:
sl@0:
sl@0:
sl@0: iTefScript = tefFile;
sl@0:
sl@0:
sl@0:
sl@0:
sl@0: return KErrNone;
sl@0: }
sl@0:
sl@0:
sl@0: void TTestActionSpec::HardcodedInit(const TDesC8& aInput)
sl@0: {
sl@0: iActionName.Set(aInput);
sl@0: iActionType.Set(KNullDesC8);
sl@0: iActionGroup.Set(KNullDesC8);
sl@0: iActionBody.Set(KNullDesC8);
sl@0: iActionResult.Set(KNullDesC8);
sl@0: }