Update contrib.
2 * Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #include "t_testactionspec.h"
20 #include "t_testsetup.h"
21 #include "tScriptSetup.h"
23 #include "tScriptTests.h"
24 #include "t_tefinput.h"
27 _LIT8(KFalse, "false");
29 _LIT8(KExOOMStart, "<exoom>");
30 _LIT8(KExOOMEnd, "</exoom>");
31 _LIT8(KInOOMStart, "<inoom>");
32 _LIT8(KInOOMEnd, "</inoom>");
33 _LIT8(KExCancelStart, "<excancel>");
34 _LIT8(KExCancelEnd, "</excancel>");
35 _LIT8(KInCancelStart, "<incancel>");
36 _LIT8(KInCancelEnd, "</incancel>");
37 _LIT8(KSkippedStart, "<skipped>");
38 _LIT8(KSkippedEnd, "</skipped>");
39 _LIT8(KSmokeStart, "<smoke>");
40 _LIT8(KSmokeEnd, "</smoke>");
41 _LIT8(KInteractiveStart, "<interactive>");
42 _LIT8(KInteractiveEnd, "</interactive>");
45 TTestActionSpec::TTestActionSpec()
49 TTestActionSpec::~TTestActionSpec()
51 iniSectionResultBody.Close();
54 TInt TTestActionSpec::Init(const TDesC8& aInput,
56 CConsoleBase& /*aConsole*/,
61 iActionName.Set(Input::ParseElement(aInput, KActionNameStart, KActionNameEnd, aPos, err));
64 aOut.writeString(_L("Error couldn't find actionname in test case spec"));
69 iActionType.Set(Input::ParseElement(aInput, KActionTypeStart, KActionTypeEnd, aPos, err));
72 aOut.writeString(_L("Error couldn't find actiontype in test case spec"));
77 iActionGroup.Set(Input::ParseElement(aInput, KActionGroupingStart, KActionGroupingEnd, aPos, err));
80 //Do parsing of the returned groupings string
82 TPtrC8 excludeOOM = Input::ParseElement(iActionGroup, KExOOMStart, KExOOMEnd, relativePos, err);
84 TPtrC8 includeOOM = Input::ParseElement(iActionGroup, KInOOMStart, KInOOMEnd, relativePos, err);
86 TPtrC8 excludeCancel = Input::ParseElement(iActionGroup, KExCancelStart, KExCancelEnd, relativePos, err);
88 TPtrC8 includeCancel = Input::ParseElement(iActionGroup, KInCancelStart, KInCancelEnd, relativePos, err);
90 TPtrC8 skipped = Input::ParseElement(iActionGroup, KSkippedStart, KSkippedEnd, relativePos, err);
92 TPtrC8 smoketest = Input::ParseElement(iActionGroup, KSmokeStart, KSmokeEnd, relativePos, err);
94 TPtrC8 interactive = Input::ParseElement(iActionGroup, KInteractiveStart, KInteractiveEnd, relativePos, err);
96 if (excludeOOM==KTrue)
100 else if (excludeOOM==KFalse)
105 if (includeOOM==KTrue)
109 else if (includeOOM==KFalse)
114 if (excludeCancel==KTrue)
118 else if (excludeCancel==KFalse)
120 aBitFlag&= (~EXCANCEL);
123 if (includeCancel==KTrue)
127 else if (includeCancel==KFalse)
129 aBitFlag&= (~INCANCEL);
136 else if (skipped==KFalse)
141 if (smoketest==KTrue)
145 else if (smoketest==KFalse)
150 if (interactive==KTrue)
154 else if (interactive==KFalse)
160 iActionBody.Set(Input::ParseElement(aInput, KActionBodyStart, KActionBodyEnd, aPos, err));
161 iActionResult.Set(Input::ParseElement(aInput, KActionResultStart, KActionResultEnd, aPos, err));
168 // Extracts information from *.script and *.ini files to the appropriate member variables.
170 TInt TTestActionSpec::TEFInit(RFs& aFs,
171 const TDesC8& aInput,
172 const TDesC8& aTestCaseID,
173 TDesC8& aPrevTestCaseID,
177 TDes8& aScriptResult,
179 const TDesC& aScriptPath,
180 CConsoleBase& /*aConsole*/,
185 TInt actionTypePos=3;
186 TBool scriptactionResultSet = EFalse;
187 // TBool iniactionResultSet = EFalse;
188 TBuf8<512> prevTestCaseID;
189 TBuf8<512> prevTestDescription;
193 // Checks if the first word from the script file is an error code
195 // sets 'actionResult' to the relevent error code with the <return></return> tags
197 TPtrC8 firstWord = Tefinput::ParseNthElement(aInput,1, err);
201 TLex8 lex8(firstWord);
202 err = lex8.Val(tmpno);
206 err = Tefinput::ParseActionResult(firstWord, aScriptResult);
207 scriptactionResultSet = ETrue;
211 //1. Extracts the .ini file name from the .script file
212 //2. Reads in the [section] name from the .script file
213 //3. Generates .ini path from .script file path and .ini file name
214 //4. Sets iActionBody with the info from .ini file
216 TBuf<KMaxPath + KMaxFileName> iniFilePath;
217 TBuf<512> iniFileData;
218 TPtrC8 iniSectionData;
221 TPtrC8 iniFileName = Tefinput::ParseNthElement(aInput,actionTypePos+1,err);
224 TPtrC8 iniSectionName = Tefinput::ParseNthElement(aInput,actionTypePos+2,err);
227 err = Tefinput::ParseiniPath(iniFileName, aScriptPath, iniFilePath);
230 aTestIniFilePtr.Assign(Tefinput::GetiniFile(aFs, iniFilePath, err)); // Load up our local RBuf ptr to takeover the management of the inifile data in Heap
234 TPtrC8 iniFile = aTestIniFilePtr.Ptr();
236 err = Tefinput::ParseActionbody(iniFile, iniSectionName, iniSectionData);
240 iActionBody.Set(Input::ParseElement(iniSectionData, KActionBodyStart, KActionBodyEnd, pos, err));
241 if (err == KErrNotFound)
243 aOut.writeString(_L("Error couldn't find actionbody in test case spec"));
263 // Extracts info b/w <actionresult> </actionresult> tags
264 // Sets iActionResult with info both from .script and .ini file
269 if(scriptactionResultSet)
271 scriptResult.Set(aScriptResult);
272 tempResult.Set(Input::ParseElement(iniSectionData, KActionResultStart, KActionResultEnd, pos, err));
275 resultlen = scriptResult.Length() + tempResult.Length();
276 iniSectionResultBody.Create(tempResult,resultlen);
277 iniSectionResultBody.Insert(0,scriptResult);
278 iActionResult.Set(iniSectionResultBody);
279 // iniactionResultSet = ETrue;
283 iniSectionResultBody.Create(scriptResult);
284 iActionResult.Set(iniSectionResultBody);
289 tempResult.Set(Input::ParseElement(iniSectionData, KActionResultStart, KActionResultEnd, pos, err));
290 err = Tefinput::GetActionResult(KErrNone, aScriptResult);
293 scriptResult.Set(aScriptResult);
294 resultlen = tempResult.Length() + scriptResult.Length();
295 iniSectionResultBody.Create(tempResult, resultlen);
296 iniSectionResultBody.Insert(0,aScriptResult);
297 iActionResult.Set(iniSectionResultBody);
301 iniSectionResultBody.Create(tempResult);
302 iActionResult.Set(iniSectionResultBody);
307 // aPrevTestCaseID = aTestCaseID;
308 //Sets iActionName with the @SYMTestCaseID
311 iActionName.Set(aPrevTestCaseID);
315 iActionName.Set(aTestCaseID);
320 //Sets iActionType from .script file
322 TBuf8<512> modifiedType;
323 TBuf8<512> modifiedTypeTemp;
324 TPtrC8 actionTypeTemp;
329 iActionType.Set(Tefinput::ParseNthElement(aInput,actionTypePos,err));
332 modifiedType.Copy(iActionType);
333 modifiedType.Copy(Tefinput::TrimActionType(modifiedType, aActionType));
335 iActionType.Set(aActionType);
339 aOut.writeString(_L("Error couldn't find actiontype in test case spec"));
346 iTefScript = tefFile;
355 void TTestActionSpec::HardcodedInit(const TDesC8& aInput)
357 iActionName.Set(aInput);
358 iActionType.Set(KNullDesC8);
359 iActionGroup.Set(KNullDesC8);
360 iActionBody.Set(KNullDesC8);
361 iActionResult.Set(KNullDesC8);