Update contrib.
1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // This module contains CParseLine and CSuiteDll classes
15 // CParseLine contains the functions required to execute
16 // a line of test script file.
17 // CSuiteDll objects contains information about test suite
18 // dlls that have been loaded.
25 // test system includes
26 #include "TestFramework.h"
28 #include "parseline.h"
31 #include "parseline.inl"
33 const TInt KTimeIncrement = 100*1000000; // max wait interval in micro-seconds (100s)
34 const TUint KMaxThreadAttempts = 128; // max number of times to attempt to create a thread
43 _LIT(KTxtDLLpath, "c:\\;c:\\system\\libs;d:\\;d:\\system\\libs;e:\\;e:\\system\\libs;z:\\;z:\\system\\libs");
47 * Script parameter defaults
52 //const TInt KTestGuardTimerDefault = 1000L; // EABI warning removal
53 const TInt KPanicGuardTimerDefault = 1000000L;
54 const TInt KPanicExitReasonDefault = 0;
58 * CParseLine first-phase constructor
63 CParseLine::CParseLine(const TDesC& aMatchString)
64 :iTestVerdict(EPass), iMatchString(aMatchString)
70 * CParseLine second-phase constructor
72 * @param "CScript* aScript"
73 * The script to be parsed
75 * @param "CTestUtils* aTestUtils"
76 * The TestUtils object to use
84 void CParseLine::ConstructL(CScript* aScript, CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer)
86 // create a new Array to store the test steps in
87 iArrayLoadedSuiteDll = new(ELeave) CArrayPtrFlat<CSuiteDll>(1);
90 iTestUtils = aTestUtils;
92 iGuardTimer = aGuardTimer;
94 iBreakOnError = EFalse;
99 * CParseLine static constructor
101 * @param "CScript* aScript"
102 * The script to be parsed
104 * @param "CTestUtils* aTestUtils"
105 * The TestUtils object to use
107 * @param "CLog* aLog"
113 CParseLine* CParseLine::NewL(CScript* aScript, CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString)
115 CParseLine* self = new(ELeave) CParseLine(aMatchString);
116 CleanupStack::PushL(self);
117 self->ConstructL(aScript, aTestUtils, aLog, aGuardTimer);
124 * CParseLine destructor
129 CParseLine::~CParseLine()
132 // unload DLLs and their records
133 if (iArrayLoadedSuiteDll)
135 // delete all objects in iArrayLoadedSuiteDll
136 // the destructors will unload any loaded DLLS
137 iArrayLoadedSuiteDll->ResetAndDestroy();
138 delete iArrayLoadedSuiteDll;
145 * Process a single line from the script file.
147 * @param "const TDesC8& aNarrowline"
150 * @param "TInt8 aLineNo"
151 * The script line number
156 void CParseLine::ProcessLineL(const TDesC8& aNarrowline, TInt aLineNo)
158 // make a local unicode buffer
159 TPtr16 lineBuf(REINTERPRET_CAST(TUint16*,User::AllocLC(KMaxLenScriptLine*2)), 0, KMaxLenScriptLine);
160 lineBuf.Fill('\0', KMaxLenScriptLine);
162 // convert the narrow script file to Unicode
163 // TBC find a better way to do this
164 CFileName* testnameU = CFileName::NewLC();
165 testnameU->Copy(aNarrowline);
167 // find the end of the line
168 TInt end = testnameU->Locate('\n');
170 // copy the line into lineBuf
171 if ((end != KErrNotFound) && (end < KMaxLenScriptLine))
172 lineBuf = testnameU->Left(end - 1);
174 lineBuf = testnameU->FileName();
177 CleanupStack::PopAndDestroy(testnameU);
179 // the parser relies on spaces between tokens. Commas are
180 // allowed but are just replaced with spaces
181 TInt findComma = lineBuf.Locate(TChar(','));
182 while (findComma != KErrNotFound )
184 // found a comma so replace with space
185 lineBuf.Replace(findComma, 1, _L(" "));
186 findComma = lineBuf.Locate(TChar(','));
189 // for debugging display the line with a line no
191 INFO_PRINTF3(_L("Line:%d %S "), aLineNo, &lineBuf);
194 // if there has been a failure and the user has selected
195 // x then the next commands in the script are skipped until
196 // a test complete statement is found
199 if (lineBuf.FindF(_L("TEST_COMPLETE")) == 0)
201 TestComplete(lineBuf);
202 // reset flag now test complete found
203 iBreakOnError = EFalse;
206 CleanupStack::PopAndDestroy(); // linebuf
207 // do not process the rest of the line
211 // check the line for command keywords
212 if ((lineBuf.Find(_L("//")) == 0) || (lineBuf.Find(_L("#")) == 0))
216 else if (lineBuf.FindF(_L("LOAD_SUITE")) == 0)
220 else if (lineBuf.FindF(_L("RUN_SCRIPT")) == 0)
224 else if (lineBuf.FindF(_L("RUN_TEST_STEP")) == 0)
226 RunTestStep(lineBuf);
228 else if (lineBuf.FindF(_L("RUN_PANIC_STEP")) == 0)
230 RunPanicTestStep(lineBuf);
232 else if (lineBuf.FindF(_L("RUN_TERMINATION_STEP")) == 0)
234 RunTerminationTestStep(lineBuf);
236 else if (lineBuf.FindF(_L("RUN_UTILS")) == 0)
240 else if (lineBuf.FindF(_L("RUN_PROGRAM")) == 0)
244 else if (lineBuf.FindF(_L("UNLOAD")) == 0)
248 else if (lineBuf.FindF(_L("HEAP_MARK")) == 0)
252 else if (lineBuf.FindF(_L("HEAP_CHECK")) == 0)
256 else if (lineBuf.FindF(_L("REQUEST_MARK")) == 0)
260 else if (lineBuf.FindF(_L("REQUEST_CHECK")) == 0)
264 else if (lineBuf.FindF(_L("HANDLES_MARK")) == 0)
268 else if (lineBuf.FindF(_L("HANDLES_CHECK")) == 0)
272 else if (lineBuf.FindF(_L("PRINT")) == 0)
274 ScriptPrint(lineBuf);
276 else if (lineBuf.FindF(_L("DELAY")) == 0)
280 else if (lineBuf.FindF(_L("SEVERITY")) == 0)
282 SetSeverity(lineBuf);
284 else if (lineBuf.FindF(_L("PAUSE_AT_END")) == 0)
286 // if implemented, add iScript->iPauseAtEnd = ETrue;
287 WARN_PRINTF1(_L("Warning : PAUSE_AT_END not implemented"));
289 else if (lineBuf.FindF(_L("MULTITHREAD")) == 0)
291 WARN_PRINTF1(_L("Warning : MULTITHREAD keyword no longer required"));
293 else if (lineBuf.FindF(_L("SINGLETHREAD")) == 0)
295 ERR_PRINTF1(_L("Error : Single thread operation no longer supported"));
297 else if (lineBuf.FindF(_L("PAUSE")) == 0)
301 else if (lineBuf.FindF(_L("BREAK_ON_ERROR")) == 0)
303 // if the current test verdict is not PASS
304 // give the user the chance to quit
305 if ( iTestVerdict != EPass )
306 iBreakOnError = iScript->BreakOnError();
308 else if (lineBuf.FindF(_L("TEST_COMPLETE")) == 0)
310 // use Tlex to decode the cmd line
311 TestComplete(lineBuf);
313 else if (lineBuf.FindF(_L("LOG_SETTINGS")) == 0)
315 // use Tlex to decode the cmd line
316 LogSettings(lineBuf);
318 else if (lineBuf.Length() == 0)
320 // ignore blank lines
324 // failed to decode line
325 ERR_PRINTF3(_L("Error in script line:%d - \'%S\'"), aLineNo, &lineBuf);
328 CleanupStack::PopAndDestroy(); // linebuf
333 * Implements the TEST_COMPLETE script command.
335 * @param "const TDesC& aText"
341 void CParseLine::TestComplete(const TDesC& aText)
343 // use Tlex to decode the cmd line
346 // start at the begining
347 TPtrC token = lex.NextToken();
349 // get suite name, if any
350 token.Set(lex.NextToken());
352 if (token.Length() != 0)
354 TBuf<KMaxLenTestSuiteName> currentSuiteName;
355 currentSuiteName = token;
357 // get step name, if any
358 token.Set(lex.NextToken());
360 if (token.Length() != 0)
362 iCurrentStepName = token;
363 iCurrentSuiteName = currentSuiteName;
367 // failed to decode line - require 0 or 2 parameters exactly
368 // use last suite/step name, return fail
369 ERR_PRINTF2(_L("Error in script line: \'%S\'"), &aText);
370 iTestVerdict = EFail;
376 // add the current result to the script
377 iScript->AddResult(iTestVerdict);
380 // reset for next test
381 iTestVerdict = EPass;
386 * Implements the PRINT script command.
388 * @param "const TDesC& aText"
394 void CParseLine::ScriptPrint(const TDesC& aText)
396 // display the text after the PRINT and 1 space = 6
397 INFO_PRINTF2(_L("%s "), (aText.Ptr() + 6));
402 * Implements the DELAY script command.
404 * @param "const TDesC& aText"
410 void CParseLine::Delay(const TDesC& aText)
412 // if the test has already failed skip the delay
413 if (iTestVerdict != EPass)
415 WARN_PRINTF1(_L("Skipped delay as test has already failed"));
419 // get the required time for the delay
420 // first get the value as a string
423 TPtrC token = timeOut.NextToken();
425 // convert the value into a TInt
427 TInt64 guardTimerValue;
428 if (lexTime.Val(guardTimerValue) != KErrNone )
430 ERR_PRINTF2(_L("Error in guard timer value : could not decode \'%S\' as value"),
435 INFO_PRINTF2(_L("Delay for %ld mS"), guardTimerValue);
437 // wait for the required delay
438 User::After(I64INT(guardTimerValue) * 1000);
443 * Implements the SEVERITY script command.
445 * @param "const TDesC& aText"
451 void CParseLine::SetSeverity(const TDesC& aText)
453 // get the required time for the delay
454 // first get the value as a string
455 TLex severityOut(aText);
456 severityOut.NextToken();
457 TPtrC token = severityOut.NextToken();
459 // convert the value into a TInt
460 TLex lexSeverity(token);
461 TInt severityValue = ESevrAll;
462 if (lexSeverity.Val(severityValue) != KErrNone)
464 ERR_PRINTF2(_L("Error in severity level value : could not decode \'%S\' as value"),
469 // check severity value to ensure that only bitmasks in use are set...
470 if(!LogSeverity::IsValid(severityValue))
472 ERR_PRINTF1(_L("Error in severity value : out of range"));
477 iSeverity = severityValue;
479 TInt noOfDlls = iArrayLoadedSuiteDll->Count();
480 for ( TInt i = 0; i < noOfDlls; i++)
482 CSuiteDll* ptrSuite = iArrayLoadedSuiteDll->At(i);
483 CTestSuite* testSuite = ptrSuite->Suite();
484 testSuite->SetSeverity(iSeverity);
488 INFO_PRINTF2(_L("Severity is set to %d"), severityValue);
493 * Implements the RUN_SCRIPT script command.
495 * @param "const TDesC& aText"
501 void CParseLine::RunScriptL(const TDesC& aText)
503 // use Tlex to decode the cmd line
506 // start at the begining
507 TPtrC token=lex.NextToken();
509 // step over the keyword
510 token.Set(lex.NextToken());
512 // format for printing
513 INFO_PRINTF2(_L("RUN_SCRIPT %S"), &token);
515 // create a new Script object (but use the current parser
516 // as it has the dll loaded record)
517 CScript* newScript=CScript::NewLC(this, iTestUtils, iLog, iGuardTimer, iMatchString);
519 // read in the script file
520 CFileName* scriptFileName = CFileName::NewLC();
521 *scriptFileName = token;
523 if (newScript->OpenScriptFile(scriptFileName))
526 iTestVerdict = newScript->ExecuteScriptL();
528 // don't bother logging verdicts for scripts - not really useful
529 // add results from the new script to the owner script
530 iScript->AddResult(newScript);
534 // failed to find script so verdict incloncusive
535 iTestVerdict = EInconclusive;
538 CleanupStack::PopAndDestroy(scriptFileName);
539 CleanupStack::PopAndDestroy(newScript);
544 * Implements the RUN_TEST_STEP script command.
546 * @param "const TDesC& aText"
552 void CParseLine::RunTestStep(const TDesC& aText)
554 // use TLex to decode the cmd line
562 timeout.Set(lex.NextToken());
564 // get the other parameters
565 TPtrC suite, step, config, name, paramSet;
566 suite.Set(lex.NextToken());
567 step.Set(lex.NextToken());
568 config.Set(lex.NextToken());
569 name.Set(lex.NextToken());
570 if (name.Length()==0)
572 // name is optional, if not given use step
575 paramSet.Set(lex.NextToken());
576 if (paramSet.Length()==0)
578 // paramSet is optional, if not given use name
582 // save the name of the current test suite / step
583 iCurrentSuiteName = suite;
584 iCurrentStepName = name;
586 TVerdict currentTestVerdict;
588 INFO_PRINTF2(_L("<a name=\"%S\"</a>"),&name);
590 if (iMatchString.Length()>0 && name.Match(iMatchString)<0)
592 // we have a match string but no match - so skip
593 INFO_PRINTF2(_L("TEST_STEP:%S skipped"), &name);
600 // convert the guard timer value to a TInt64
601 TLex lexTimeOut(timeout);
602 TInt64 guardTimerValue;
603 if (lexTimeOut.Val(guardTimerValue) != KErrNone)
605 ERR_PRINTF2(_L("Error in guard timer value: %S"),
607 currentTestVerdict = EInconclusive;
612 // override guard timer if necessary
613 if((guardTimerValue == KNoGuardTimer) && (iGuardTimer != KNoGuardTimer))
615 INFO_PRINTF3(_L("Warning : Guard timer value overridden from %ld to %ld"),
616 guardTimerValue, iGuardTimer);
617 guardTimerValue = iGuardTimer;
620 // log the start of a test step
621 INFO_PRINTF7(_L("RUN_TEST_STEP:%S (step:%S suite:%S timeout:%ldmS config:%S(%S))"),
622 &name, &step, &suite, guardTimerValue, &config, ¶mSet);
624 // NOTE. Now running multithreaded all the time.
625 currentTestVerdict = DoTestNewThread(suite, step, guardTimerValue, config, paramSet);
628 TPtrC verdictText = CLog::TestResultText(currentTestVerdict);
630 INFO_PRINTF3(_L("TEST_STEP:%S returned:%S "),
631 &name, &verdictText);
633 // this result is only significant if everything else has passed
634 if (iTestVerdict == EPass)
635 iTestVerdict = currentTestVerdict;
641 * Implements the RUN_PANIC_STEP script command.
643 * @param "const TDesC& aText"
649 void CParseLine::RunPanicTestStep(const TDesC& aText)
651 // NOTE. RUN_PANIC_STEP now incorporates the panic reason and category
653 // use Tlex to decode the cmd line
656 // start at the begining
657 TPtrC timeout=lex.NextToken();
659 // step over the keyword
660 timeout.Set(lex.NextToken());
662 // get the other parameters
664 TPtrC category, reason;
665 TPtrC config, name, paramSet;
667 suite.Set(lex.NextToken());
668 step.Set(lex.NextToken());
669 category.Set(lex.NextToken());
670 reason.Set(lex.NextToken());
671 config.Set(lex.NextToken());
672 name.Set(lex.NextToken());
673 if (name.Length()==0)
675 // name is optional, if not given use step
678 paramSet.Set(lex.NextToken());
679 if (paramSet.Length()==0)
681 // paramSet is optional, if not given use name
685 if (iMatchString.Length()>0 && name.Match(iMatchString)<0)
687 // we have a match string but no match - so skip
688 INFO_PRINTF2(_L("TEST_STEP:%S skipped"), &name);
695 // save the name of the current test suite / step
696 iCurrentSuiteName = suite;
697 iCurrentStepName = name;
699 // convert the guard timer value to a TInt
700 TLex lexTimeOut(timeout);
701 TInt64 guardTimerValue;
702 if (lexTimeOut.Val(guardTimerValue) != KErrNone)
704 ERR_PRINTF3(_L("Error in guard timer value:%S using default %dmS"),
705 &timeout, KPanicGuardTimerDefault);
706 guardTimerValue = KPanicGuardTimerDefault;
709 // convert the exitReason value to a TInt
710 TLex lexReason(reason);
712 if (lexReason.Val(exitReason) != KErrNone)
714 ERR_PRINTF3(_L("Error in exitReason value:%S using default %d"),
715 &reason, KPanicExitReasonDefault);
716 exitReason = KPanicExitReasonDefault;
719 // override guard timer if necessary
720 if((guardTimerValue == KNoGuardTimer) && (iGuardTimer != KNoGuardTimer))
722 INFO_PRINTF3(_L("Warning : Guard timer value overridden from %ld to %ld"),
723 guardTimerValue, iGuardTimer);
724 guardTimerValue = iGuardTimer;
727 // log the start of a test step
728 INFO_PRINTF9(_L("RUN_PANIC_STEP:%S (step:%S suite:%S timeout:%ldmS category:%S reason:%d config:%S(%S))"),
729 &name, &step, &suite, guardTimerValue, &category, exitReason, &config, ¶mSet);
732 TVerdict currentTestVerdict;
734 // now running multithreaded all the time
735 currentTestVerdict = DoPanicTest(suite, step, guardTimerValue,
736 category, exitReason, config, paramSet);
738 TPtrC verdictText = CLog::TestResultText(currentTestVerdict);
739 INFO_PRINTF3(_L("TEST_STEP:%S returned:%S "),
740 &name, &verdictText);
742 // this result is only significant if every thing else has passed
743 if (iTestVerdict == EPass)
744 iTestVerdict = currentTestVerdict;
750 * Implements the RUN_TERMINATION_STEP script command.
752 * @param "const TDesC& aText"
758 void CParseLine::RunTerminationTestStep(const TDesC& aText)
760 // use Tlex to decode the cmd line
763 // start at the begining
764 TPtrC timeout=lex.NextToken();
766 // step over the keyword
767 timeout.Set(lex.NextToken());
769 // get the other parameters
774 suite.Set(lex.NextToken());
775 step.Set(lex.NextToken());
776 reason.Set(lex.NextToken());
777 config.Set(lex.NextToken());
779 // save the name of the current test suite / step
780 iCurrentSuiteName = suite;
781 iCurrentStepName = step;
783 // convert the guard timer value to a TInt
784 TLex lexTimeOut(timeout);
785 TInt64 guardTimerValue;
786 if (lexTimeOut.Val(guardTimerValue) != KErrNone)
788 ERR_PRINTF3(_L("Error in guard timer value:%S using default %dmS"),
789 &timeout, KPanicGuardTimerDefault);
790 guardTimerValue = KPanicGuardTimerDefault;
793 // convert the exitReason value to a TInt
794 TLex lexReason(reason);
796 if (lexReason.Val(exitReason) != KErrNone)
798 ERR_PRINTF3(_L("Error in exitReason value:%S using default %d"),
799 &reason, KPanicExitReasonDefault);
800 exitReason = KPanicExitReasonDefault;
803 // override guard timer if necessary
804 if((guardTimerValue == KNoGuardTimer) && (iGuardTimer != KNoGuardTimer))
806 INFO_PRINTF3(_L("Warning : Guard timer value overridden from %ld to %ld"),
807 guardTimerValue, iGuardTimer);
808 guardTimerValue = iGuardTimer;
811 // log the start of a test step
812 INFO_PRINTF6(_L("RUN_TERMINATION_STEP:%S suite:%S timeout:%ldmS reason:%d config:%S"),
813 &step, &suite, guardTimerValue, exitReason, &config);
816 TVerdict currentTestVerdict;
818 // now running multithreaded all the time
819 currentTestVerdict = DoTerminationTest(suite, step, guardTimerValue,
822 TPtrC verdictText = CLog::TestResultText(currentTestVerdict);
823 INFO_PRINTF3(_L("TEST_STEP:%S returned:%S "),
824 &step, &verdictText);
826 // this result is only significant if every thing else has passed
827 if (iTestVerdict == EPass)
828 iTestVerdict = currentTestVerdict;
834 * Implements the RUN_UTILS script command.
836 * @param "const TDesC& aText"
842 void CParseLine::RunUtil(const TDesC& aText)
845 iTestUtils->RunUtils(aText);
850 * Implements the REBOOT script command.
852 * @param "const TDesC& aText"
858 void CParseLine::Reboot()
860 WARN_PRINTF1(_L("Warning : REBOOT command not implemented"));
865 * Static function to call DoTestStep which is run
866 * in a separate thread
868 * @param "TAny* aPtr"
877 TInt CParseLine::ThreadFunctionL(TAny* aPtr)
879 TInt result = KErrNone;
881 // get clean-up stack
882 CTrapCleanup* trapCleanup = CTrapCleanup::New();
884 TRAPD(err, result = ThreadTrapFunctionL(aPtr));
887 return((err != KErrNone) ? err : result);
892 * Main function to call DoTestStep, called from within
895 * @param "TAny* aPtr"
904 TInt CParseLine::ThreadTrapFunctionL(TAny* aPtr)
906 // get the data for the test
907 CStepData* data = REINTERPRET_CAST(CStepData*, aPtr);
908 CSuiteDll* suiteDll = data->SuiteDll();
909 CTestSuite* testSuite = suiteDll->Suite();
911 // setup local logger
912 CLog* logClient = CLog::NewLC();
913 logClient->OpenLogFileL();
914 testSuite->SetLogSystem(logClient);
917 TVerdict result = testSuite->DoTestStep(data->Step(), data->Config(), data->ParamSet());
919 // NB it is the CALLING program's responsibility to save/restore the logger.
920 // If the thread terminates prematurely, the logger is in an undefined state.
922 CleanupStack::PopAndDestroy(logClient);
923 testSuite->SetLogSystem(NULL);
925 // return the test result
931 * Do a test step in a new thread.
933 * @param "const TDesC& aSuite"
936 * @param "const TDesC& aStep"
939 * @param "TInt aGuardTimerValue"
940 * The guard timer value
942 * @param "const TDesC& aConfig"
951 TVerdict CParseLine::DoTestNewThread(const TDesC& aSuite, const TDesC& aStep,
952 TInt64 aGuardTimerValue, const TDesC& aConfig, const TDesC& aParamSet)
954 // get the number of suites loaded
955 TInt noOfDlls = iArrayLoadedSuiteDll->Count();
957 // search the list of loaded test suite DLLs for the required one
958 for (TInt i = 0; i < noOfDlls; i++)
960 CSuiteDll* ptrSuite = iArrayLoadedSuiteDll->At(i);
961 TPtrC name = ptrSuite->Name();
963 if (name.FindF(aSuite)!= KErrNotFound)
966 CTestSuite* testSuite = ptrSuite->Suite();
967 testSuite->SetStepStatus(EStepStatusNone);
969 // store old log status, for restore at thread exit
970 // NB we must do this here, as if thread times out, the log
971 // is in an undefined state
972 CLog* oldLogger = testSuite->LogSystem();
974 CStepData* data = NULL;
975 TRAPD(err, data = CStepData::NewL(aStep, aConfig, aParamSet, ptrSuite));
978 ERR_PRINTF2(_L("CStepData::NewL() left with error %d : unable to create test data!"), err);
982 // get step's own stack and heap sizes
983 TInt theHeapSize = KMaxTestThreadHeapSize;
984 TInt theStackSize = KTestStackSize;
985 GetHeapAndStackSize(data, &theHeapSize, &theStackSize);
987 TInt res = KErrAlreadyExists;
990 TPtrC threadBaseName(_L("DoTestThread"));
993 // create a unique named test thread
994 // this will leave if creation is not successful
995 TRAP (res, CreateUniqueTestThreadL( threadBaseName,
1005 if (res != KErrNone)
1007 ERR_PRINTF2(_L("CreateUniqueTestThreadL() left with error %d : unable to create test thread "), res);
1014 TTime testStart, testStop;
1015 testStart.HomeTime();
1017 // start the thread and request the status
1018 TRequestStatus threadStatus;
1019 newThread.Logon(threadStatus);
1021 // if there is no guard timer value, don't time at all
1022 if (aGuardTimerValue == KNoGuardTimer)
1026 User::WaitForRequest(threadStatus);
1030 // wait for either test thread or timer to end
1032 guardTimer.CreateLocal(); // create for this thread
1033 TRequestStatus timerStatus;
1036 // NB now using At() to allow 64-bit timer values
1037 TInt64 guardTimerUsec = aGuardTimerValue * 1000;
1038 TInt64 totalTime = 0;
1042 if (totalTime>=guardTimerUsec) // timeout has occured
1046 if (totalTime+KTimeIncrement >= guardTimerUsec)
1048 TInt64 temp = guardTimerUsec-totalTime;
1049 timeout = I64INT(temp);
1052 timeout = KTimeIncrement;
1053 totalTime += timeout;
1054 guardTimer.After(timerStatus, timeout);
1055 User::WaitForRequest(threadStatus, timerStatus);
1056 if (threadStatus!=KRequestPending) // normal exit
1060 guardTimer.Cancel();
1064 // reset any file server error simulations
1066 TInt fsError = fs.Connect();
1067 if (fsError == KErrNone)
1069 fs.SetErrorCondition(KErrNone);
1074 testSuite->SetLogSystem(oldLogger);
1076 // get the test result
1077 TVerdict result = STATIC_CAST(TVerdict, threadStatus.Int());
1079 // check terminated ok
1080 switch(newThread.ExitType())
1082 case EExitTerminate:
1087 TExitCategoryName exitCategory = newThread.ExitCategory();
1088 TInt exitReason = newThread.ExitReason();
1089 ERR_PRINTF3(_L("Thread had a panic %S:%d"), &exitCategory, exitReason);
1095 // if the thread is still pending then the guard timer must have expired
1096 ERR_PRINTF1(_L("Thread timed out"));
1097 // kill the test step thread
1099 // give the OS time to cleanup devices, etc.
1100 // NB if the thread dies, the postamble will NOT run
1101 User::After(2000000);
1108 // done with the test thread
1112 testStop.HomeTime();
1114 TUint testDuration = I64INT(testStop.MicroSecondsFrom(testStart).Int64());
1115 testDuration /= 1000; // to microseconds
1116 TUint testDurationMsec = testDuration % 1000;
1117 TUint testDurationSec = testDuration / 1000;
1118 INFO_PRINTF3(_L("Test took %d.%03d sec"), testDurationSec, testDurationMsec);
1120 // return the test verdict
1127 // the required suite has not been found
1128 ERR_PRINTF3(_L("Error in test step:%S - cannot find suite:%S" ),
1131 return ETestSuiteError;
1136 * Do a test step which is expected to panic.
1138 * @param "const TDesC& aSuite"
1141 * @param "const TDesC& aStep"
1144 * @param "TInt aGuardTimerValue"
1145 * The guard timer value
1147 * @param "const TExitCategoryName aExitCategory"
1148 * The expected exit category
1150 * @param "TInt aExitReason"
1151 * The expected exit reason
1153 * @param "const TDesC& aConfig"
1156 * @return "TVerdict"
1162 TVerdict CParseLine::DoPanicTest(const TDesC& aSuite, const TDesC& aStep, TInt64 aGuardTimerValue,
1163 const TExitCategoryName aExitCategory, TInt aExitReason,
1164 const TDesC& aConfig, const TDesC& aParamSet)
1167 // get the number of suites loaded
1168 TInt noOfDlls = iArrayLoadedSuiteDll->Count();
1170 // search the list of loaded test suite DLLs for the required one
1171 for (TInt i = 0; i < noOfDlls; i++)
1173 CSuiteDll* ptrSuite = iArrayLoadedSuiteDll->At(i);
1174 TPtrC name = ptrSuite->Name();
1176 if (name.FindF(aSuite)!= KErrNotFound)
1178 // reset step status
1179 CTestSuite* testSuite = ptrSuite->Suite();
1180 testSuite->SetStepStatus(EStepStatusNone);
1182 // store old log status, for restore at thread exit
1183 // NB we must do this here, as if thread times out, the log
1184 // is in an undefined state
1185 CLog* oldLogger = testSuite->LogSystem();
1187 CStepData* data = NULL;
1188 TRAPD(err, data = CStepData::NewL(aStep, aConfig, aParamSet, ptrSuite));
1189 if (err != KErrNone)
1191 ERR_PRINTF2(_L("CStepData::NewL() left with error %d : unable to create test data!"), err);
1195 // get step's own stack and heap sizes
1196 TInt theHeapSize = KMaxTestThreadHeapSize;
1197 TInt theStackSize = KTestStackSize;
1198 GetHeapAndStackSize(data, &theHeapSize, &theStackSize);
1200 TInt res = KErrAlreadyExists;
1203 // create a unique test name by appending a counter
1204 TPtrC threadBaseName(_L("DoTestThread"));
1205 TBuf<32> threadName;
1207 // create a unique named test thread
1208 // this will leave if creation is not successful
1209 TRAP (res, CreateUniqueTestThreadL( threadBaseName,
1218 if (res != KErrNone)
1220 ERR_PRINTF2(_L("CreateUniqueTestThreadL() left with error %d : unable to create test thread "), res);
1227 TTime testStart, testStop;
1228 testStart.HomeTime();
1230 // start the thread and request the status
1231 TRequestStatus threadStatus;
1232 newThread.Logon(threadStatus);
1234 // if there is no guard timer value, don't time at all
1235 if (aGuardTimerValue == KNoGuardTimer)
1239 User::WaitForRequest(threadStatus);
1243 // wait for either test thread or timer to end
1245 guardTimer.CreateLocal(); // create for this thread
1246 TRequestStatus timerStatus;
1249 // NB now using At() to allow 64-bit timer values
1250 TInt64 guardTimerUsec = aGuardTimerValue * 1000;
1251 TInt64 totalTime = 0;
1255 if (totalTime>=guardTimerUsec) // timeout has occured
1259 if (totalTime+KTimeIncrement >= guardTimerUsec)
1261 TInt64 temp = guardTimerUsec-totalTime;
1262 timeout = I64INT(temp);
1265 timeout = KTimeIncrement;
1266 totalTime += timeout;
1267 guardTimer.After(timerStatus, timeout);
1268 User::WaitForRequest(threadStatus, timerStatus);
1269 if (threadStatus!=KRequestPending) // normal exit
1273 guardTimer.Cancel();
1278 testSuite->SetLogSystem(oldLogger);
1280 // get the test result
1281 TVerdict result = STATIC_CAST(TVerdict, threadStatus.Int());
1283 // check terminated ok
1284 switch(newThread.ExitType())
1288 TExitCategoryName exitCategory = newThread.ExitCategory();
1289 TInt exitReason = newThread.ExitReason();
1290 if((exitCategory != aExitCategory) || (exitReason != aExitReason && aExitReason != KNoPanicReason) )
1292 ERR_PRINTF3(_L("Test step had an unexpected panic %S:%d and failed"),
1293 &exitCategory, exitReason);
1298 // check here that the panic occurred within the test itself
1299 CTestSuite* testSuite = ptrSuite->Suite();
1300 TTestStepStatus status = testSuite->StepStatus();
1303 case EStepStatusPreamble:
1305 // thread panicked in the test itself - success
1306 INFO_PRINTF3(_L("Test step had a panic %S:%d and passed"),
1307 &exitCategory, exitReason);
1311 case EStepStatusStart:
1313 // thread panicked in preamble
1314 ERR_PRINTF3(_L("Test step had a panic %S:%d in preamble"),
1315 &exitCategory, exitReason);
1319 case EStepStatusTest:
1321 // thread panicked in postamble
1322 ERR_PRINTF3(_L("Test step had a panic %S:%d in postamble"),
1323 &exitCategory, exitReason);
1329 // thread panicked outside the test
1330 ERR_PRINTF3(_L("Test step had a panic %S:%d outside the test"),
1331 &exitCategory, exitReason);
1340 // if the thread is still pending then the guard timer must have expired
1341 ERR_PRINTF1(_L("Thread timed out"));
1342 // kill the test step thread
1344 // give the OS time to cleanup devices, etc.
1345 // NB if the thread dies, the postamble will NOT run
1346 User::After(2000000);
1349 case EExitTerminate:
1352 ERR_PRINTF1(_L("Test did not panic, so failed"));
1357 // done with the test thread
1361 testStop.HomeTime();
1363 TUint testDuration = I64INT(testStop.MicroSecondsFrom(testStart).Int64());
1364 testDuration /= 1000; // to microseconds
1365 TUint testDurationMsec = testDuration % 1000;
1366 TUint testDurationSec = testDuration / 1000;
1367 INFO_PRINTF3(_L("Test took %d.%03d sec"), testDurationSec, testDurationMsec);
1369 // return the test verdict
1376 // the required suite has not been found
1377 ERR_PRINTF3(_L("Error in test step:%S - cannot find suite:%S"),
1380 return ETestSuiteError;
1385 * Do a test step which is expected to terminate.
1387 * @param "const TDesC& aSuite"
1390 * @param "const TDesC& aStep"
1393 * @param "TInt aGuardTimerValue"
1394 * The guard timer value
1396 * @param "TInt aExitReason"
1397 * The expected exit reason
1399 * @param "const TDesC& aConfig"
1402 * @return "TVerdict"
1408 TVerdict CParseLine::DoTerminationTest(const TDesC& aSuite, const TDesC& aStep, TInt64 aGuardTimerValue,
1409 TInt aExitReason, const TDesC& aConfig)
1412 // get the number of suites loaded
1413 TInt noOfDlls = iArrayLoadedSuiteDll->Count();
1415 // search the list of loaded test suite DLLs for the required one
1416 for (TInt i = 0; i < noOfDlls; i++)
1418 CSuiteDll* ptrSuite = iArrayLoadedSuiteDll->At(i);
1419 TPtrC name = ptrSuite->Name();
1421 if (name.FindF(aSuite)!= KErrNotFound)
1423 // reset step status
1424 CTestSuite* testSuite = ptrSuite->Suite();
1425 testSuite->SetStepStatus(EStepStatusNone);
1427 // store old log status, for restore at thread exit
1428 // NB we must do this here, as if thread times out, the log
1429 // is in an undefined state
1430 CLog* oldLogger = testSuite->LogSystem();
1432 CStepData* data = NULL;
1433 TRAPD(err, data = CStepData::NewL(aStep, aConfig, ptrSuite));
1434 if (err != KErrNone)
1436 ERR_PRINTF2(_L("CStepData::NewL() left with error %d : unable to create test data!"), err);
1440 // get step's own stack and heap sizes
1441 TInt theHeapSize = KMaxTestThreadHeapSize;
1442 TInt theStackSize = KTestStackSize;
1443 GetHeapAndStackSize(data, &theHeapSize, &theStackSize);
1445 TInt res = KErrAlreadyExists;
1448 // create a unique test name by appending a counter
1449 TPtrC threadBaseName(_L("DoTestThread"));
1450 TBuf<32> threadName;
1452 // create a unique named test thread
1453 // this will leave if creation is not successful
1454 TRAP (res, CreateUniqueTestThreadL( threadBaseName,
1463 if (res != KErrNone)
1465 ERR_PRINTF2(_L("CreateUniqueTestThreadL() left with error %d : unable to create test thread "), res);
1472 TTime testStart, testStop;
1473 testStart.HomeTime();
1475 // start the thread and request the status
1476 TRequestStatus threadStatus;
1477 newThread.Logon(threadStatus);
1479 // if there is no guard timer value, don't time at all
1480 if (aGuardTimerValue == KNoGuardTimer)
1484 User::WaitForRequest(threadStatus);
1488 // wait for either test thread or timer to end
1490 guardTimer.CreateLocal(); // create for this thread
1491 TRequestStatus timerStatus;
1494 // NB now using At() to allow 64-bit timer values
1495 TInt64 guardTimerUsec = aGuardTimerValue * 1000;
1496 TInt64 totalTime = 0;
1500 if (totalTime>=guardTimerUsec) // timeout has occured
1504 if (totalTime+KTimeIncrement >= guardTimerUsec)
1506 TInt64 temp = guardTimerUsec-totalTime;
1507 timeout = I64INT(temp);
1510 timeout = KTimeIncrement;
1511 totalTime += timeout;
1512 guardTimer.After(timerStatus, timeout);
1513 User::WaitForRequest(threadStatus, timerStatus);
1514 if (threadStatus!=KRequestPending) // normal exit
1518 guardTimer.Cancel();
1523 testSuite->SetLogSystem(oldLogger);
1525 // get the test result
1526 TVerdict result = STATIC_CAST(TVerdict, threadStatus.Int());
1528 // check terminated ok
1529 switch(newThread.ExitType())
1531 case EExitTerminate:
1534 TInt exitReason = newThread.ExitReason();
1535 if(exitReason != aExitReason)
1537 ERR_PRINTF2(_L("Test step had an unexpected exit reason:%d and failed"),
1543 // check here that the panic occurred within the test itself
1544 CTestSuite* testSuite = ptrSuite->Suite();
1545 TTestStepStatus status = testSuite->StepStatus();
1548 case EStepStatusPreamble:
1550 // thread terminated in the test itself - success
1551 INFO_PRINTF2(_L("Test step had terminated:%d and passed"),
1556 case EStepStatusStart:
1558 // thread panicked in preamble
1559 ERR_PRINTF2(_L("Test step had terminated:%d in preamble"),
1564 case EStepStatusTest:
1566 // thread panicked in postamble
1567 ERR_PRINTF2(_L("Test step had terminated:%d in postamble"),
1574 // thread panicked outside the test
1575 ERR_PRINTF2(_L("Test step had terminated:%d outside the test"),
1585 // if the thread is still pending then the guard timer must have expired
1586 ERR_PRINTF1(_L("Thread timed out"));
1587 // kill the test step thread
1589 // give the OS time to cleanup devices, etc.
1590 // NB if the thread dies, the postamble will NOT run
1591 User::After(2000000);
1596 ERR_PRINTF1(_L("Test did not terminate, so failed"));
1601 // done with the test thread
1605 testStop.HomeTime();
1607 TUint testDuration = I64INT(testStop.MicroSecondsFrom(testStart).Int64());
1608 testDuration /= 1000; // to microseconds
1609 TUint testDurationMsec = testDuration % 1000;
1610 TUint testDurationSec = testDuration / 1000;
1611 INFO_PRINTF3(_L("Test took %d.%03d sec"), testDurationSec, testDurationMsec);
1613 // return the test verdict
1620 // the required suite has not been found
1621 ERR_PRINTF3(_L("Error in test step:%S - cannot find suite:%S"),
1624 return ETestSuiteError;
1629 * Gets a step's heap and stack size.
1631 * @param "const CStepData& aStepData"
1633 * @param "TInt* aHeapSize"
1634 * Returns the step's heap size
1635 * @param "TInt* aStackSize"
1636 * Returns the step's stack size
1641 void CParseLine::GetHeapAndStackSize(const CStepData* aStepData, TInt* aHeapSize, TInt* aStackSize)
1643 CSuiteDll* suiteDll = aStepData->SuiteDll();
1644 CTestSuite* testSuite = suiteDll->Suite();
1645 testSuite->GetHeapAndStackSize(aStepData->Step(), aHeapSize, aStackSize);
1650 * Implements the RUN_PROGRAM script command.
1652 * @param "const TDesC& aText"
1658 void CParseLine::RunProgram(const TDesC& aText)
1662 // use Tlex to decode the cmd line
1665 // step over the keyword
1670 token.Set(lex.NextToken());
1672 // get the parameters
1673 param.Set(lex.NextToken());
1675 INFO_PRINTF1(_L("Run Program "));
1678 // In the ARM build run program as a new process
1679 // use the rest of the text as parameters
1681 TInt ret = program.Create(token, lex.Remainder());
1683 if (ret != KErrNone)
1685 TPtrC errortxt = CLog::EpocErrorToText(ret);
1686 ERR_PRINTF2(_L("Failed to start process - error %S"), &errortxt);
1691 INFO_PRINTF1(_L("Program started"));
1694 TRequestStatus threadStatus;
1695 program.Logon(threadStatus);
1698 // wait for guard timer
1699 User::WaitForRequest(threadStatus);
1701 // check return type
1702 if (program.ExitType() == EExitPanic)
1703 INFO_PRINTF1(_L("Program returned EExitPanic"));
1704 else if (program.ExitType() == EExitPending)
1705 INFO_PRINTF1(_L("Program returned EExitPending"));
1707 INFO_PRINTF1(_L("Program returned EExitTerminate"));
1713 * Implements the LOG_SETTINGS script command.
1714 * Command format is LOG_SETTINGS "put src." (1/0),
1715 * "HTML format" (1/0)
1717 * @param "const TDesC& aText"
1723 void CParseLine::LogSettings(const TDesC& aText)
1725 // use Tlex to decode the cmd line
1728 // start at the begining
1729 TPtrC token=lex.NextToken();
1731 // step over the keyword
1732 //Get information about source
1733 token.Set(lex.NextToken());
1736 TInt isSrc = ETrue; //Shall we put src information?
1737 if (srcLex.Val(isSrc) != KErrNone)
1739 ERR_PRINTF2(_L("Error in LOG_SETTINGS: could not decode >%S< as value(0/1)"),
1744 iLog->SetPutSrcInfo(isSrc) ;
1746 //Get information about format
1747 token.Set(lex.NextToken());
1748 TLex htmlLex(token);
1750 if (htmlLex.Val(isSrc) != KErrNone)
1752 ERR_PRINTF2(_L("Error in LOG_SETTINGS: could not decode >%S< as value(0/1)"),
1757 iLog->SetHtmlLogMode(isSrc);
1764 * Implements the LOAD_SUITE script command.
1765 * This function loads a required test suite DLL
1766 * It also creates a CTestSuite object as a record
1767 * of the loaded DLL.
1769 * @param "const TDesC& aText"
1775 void CParseLine::LoadSuiteL(const TDesC& aText)
1777 // use Tlex to decode the cmd line
1780 // step over the keyword
1785 token.Set(lex.NextToken());
1787 // check not already loaded
1788 // by searching the list of loaded test suite DLLs for the required one
1789 // start with the number of suites loaded
1790 TInt noOfDlls = iArrayLoadedSuiteDll->Count();
1791 for (TInt i = 0; i < noOfDlls; i++)
1793 CSuiteDll* ptrSuite = iArrayLoadedSuiteDll->At(i);
1794 TPtrC name = ptrSuite->Name();
1797 if (name.FindF(token) != KErrNotFound)
1799 // this suite DLL is already loaded
1800 WARN_PRINTF2(_L("Warning: Test suite %S already loaded - not re-loaded"), &token);
1806 // create a new CSuiteDll object to store info on loaded DLL
1807 CSuiteDll* newRef = NULL;
1809 newRef = CSuiteDll::NewL(token, iLog);
1811 CTestSuite* testSuite = newRef->Suite();
1813 // set default severity and logging system
1814 testSuite->SetSeverity(iSeverity);
1815 testSuite->SetLogSystem(iLog);
1818 iArrayLoadedSuiteDll->AppendL(newRef);
1824 * Unload all the loaded DLLs
1829 void CParseLine::Unload()
1831 if (iArrayLoadedSuiteDll)
1833 // unload all the loaded DLLS and their records
1834 iArrayLoadedSuiteDll->ResetAndDestroy();
1845 void CParseLine::HeapMark()
1847 ERR_PRINTF1(_L("Warning: Command HEAP_MARK no longer supported. Heap marking/checking should be done within test code"));
1860 void CParseLine::HeapCheck()
1862 ERR_PRINTF1(_L("Warning: Command HEAP_CHECK no longer supported. Heap marking/checking should be done within test code"));
1874 void CParseLine::RequestMark()
1876 // get number of outstanding requetsts on thread before we run the test
1877 iReqsAtStart = RThread().RequestCount();
1878 INFO_PRINTF2(_L("Requests at the start %d "),iReqsAtStart);
1889 void CParseLine::RequestCheck()
1891 // check the number of outstanding requests against recorded value
1892 INFO_PRINTF3(_L("Requests at the start %d now %d"),
1893 iReqsAtStart, RThread().RequestCount());
1895 if (iReqsAtStart != RThread().RequestCount())
1897 ERR_PRINTF1(_L("Test failed on requests count"));
1899 // this result is only significant if every thing else has passed
1900 if (iTestVerdict == EPass)
1901 iTestVerdict = EFail;
1909 * Mark number of handles
1914 void CParseLine::HandlesMark()
1916 // get number of Handles *before* we start the program
1917 RThread().HandleCount(iProcessHandleCountBefore, iThreadHandleCountBefore);
1919 INFO_PRINTF3(_L("HandlesMark : process handle count %d thread handle count %d"),
1920 iProcessHandleCountBefore,
1921 iThreadHandleCountBefore);
1926 * Check number of handles
1931 void CParseLine::HandlesCheck()
1933 TInt processHandleCountAfter;
1934 TInt threadHandleCountAfter;
1935 RThread().HandleCount(processHandleCountAfter, threadHandleCountAfter);
1937 INFO_PRINTF3(_L("HandlesCheck : process handle count %d thread handle count %d"),
1938 processHandleCountAfter,
1939 threadHandleCountAfter);
1941 // check that we are closing all the threads
1942 if(iThreadHandleCountBefore != threadHandleCountAfter)
1944 ERR_PRINTF1(_L("Test failed on thread handle count"));
1946 // this result is only significant if everything else has passed
1947 if (iTestVerdict == EPass)
1948 iTestVerdict = EFail;
1951 // check that we are closing all the handles
1952 if(iProcessHandleCountBefore != processHandleCountAfter)
1954 ERR_PRINTF1(_L("Test failed on process handle count"));
1956 // this result is only significant if everything else has passed
1957 if (iTestVerdict == EPass)
1958 iTestVerdict = EFail;
1964 * Traceable logging function for parseline.
1965 * To be called only with macros
1967 * @param "const TText8* aFile"
1968 * Source code file name
1970 * @param "TInt aLine"
1973 * @param "TInt aSeverity"
1974 * Severity level required to log
1976 * @param "TRefByValue<const TDesC16> aFmt"
1977 * Printf-style format.
1980 * Variable print parameters
1985 void CParseLine::LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
1986 TRefByValue<const TDesC16> aFmt,...)
1989 VA_START(aList, aFmt);
1991 if(LogSeverity::IsActive(aSeverity, iSeverity))
1995 iLog->LogExtra(aFile, aLine, aSeverity, aFmt, aList);
2004 * Get current suite name.
2012 TPtrC CParseLine::CurrentSuiteName() const
2014 return iCurrentSuiteName;
2019 * Get current step name.
2027 TPtrC CParseLine::CurrentStepName() const
2029 return iCurrentStepName;
2034 * Create a thread with a unique name from a base thread name
2035 * e.g. "TestThread" may become "TestThread00000002"
2036 * This test will leave instantly if an error other than
2037 * KErrAlreadyExists occurs.
2040 * @param "TDesC& aBaseName"
2041 * The base name to use. This will be modified to contain
2042 * the new unique thread name if creation is successful.
2044 * @param "TDes& aThreadName"
2045 * The thread name to use. This will be modified to contain
2046 * the new unique thread name if creation is successful. This must
2050 * An RThread which will be created. This must not be a valid handle.
2052 * @param "TThreadFunction aFunction"
2053 * Thread function to use in RThread.
2055 * @param "TInt aStackSize"
2056 * The size of the new thread's stack.
2058 * @param "TInt aHeapMinSize"
2059 * The minimum size for the new thread's heap.
2061 * @param "TInt aHeapMaxSize"
2062 * The maximum size for the new thread's heap.
2064 * @param "TAny *aPtr"
2065 * Data to pass to the new thread.
2067 * @leave "function will leave with an error code if a thread cannot
2068 * be created after KMaxThreadAttempts tries."
2073 void CParseLine::CreateUniqueTestThreadL(const TDesC& aBaseName, TDes& aThreadName, RThread& aTestThread, TThreadFunction aFunction, TInt aStackSize, TInt aHeapMinSize, TInt aHeapMaxSize, TAny *aPtr)
2075 TInt res = KErrAlreadyExists;
2077 // attempt to create a thread with the name aBaseName + counter.
2078 for (TUint i = 0; i < KMaxThreadAttempts; i++)
2080 // copy the base thread name
2081 aThreadName.Copy(aBaseName);
2083 // append the current counter to the threadname
2084 aThreadName.AppendNumFixedWidth(i, EDecimal, 8);
2086 // run in a new thread, with a new heap
2087 res = aTestThread.Create(aThreadName,
2094 // if thread created successfully then we have
2095 // a unique threadname else if an error code other
2096 // than KErrAlreadyExists occurs then exit immediately.
2097 if ((res == KErrNone) || (res != KErrAlreadyExists))
2101 User::LeaveIfError(res);
2106 * Static constructor for CSuiteDll.
2109 * @return "CSuiteDll*"
2110 * The constructed CSuiteDll
2115 CSuiteDll* CSuiteDll::NewL(const TDesC& aName, CLog* aLog)
2117 CSuiteDll* self = new(ELeave) CSuiteDll;
2118 CleanupStack::PushL(self);
2119 self->ConstructL(aName, aLog);
2120 CleanupStack::Pop();
2126 * CSuiteDLL second-phase constructor
2127 * Loads a test suite dll and saves the name and test
2130 * @param "TDesC& aName"
2131 * The test suite name
2133 * @param "CLog* aLog"
2139 void CSuiteDll::ConstructL(const TDesC& aName, CLog* aLog)
2145 TInt ret = iLibrary.Load(aName, KTxtDLLpath);
2149 if (ret == KErrNotFound)
2151 iLog->LogExtra(__FILE8__, __LINE__, ESevrErr, _L("Test suite %S was not found. Check any other DLLs required by %S"), &aName, &aName);
2154 else if (ret != KErrNone)
2156 iLog->LogExtra(__FILE8__, __LINE__, ESevrErr, _L("Test suite %S found but would not load. Check any other DLLs required by %S"), &aName, &aName);
2163 // get the interface pointer at ordinal 1
2164 const TInt KLibraryOrdinal = 1;
2165 TLibraryFunction entryL = iLibrary.Lookup(KLibraryOrdinal);
2167 // Call this interface pointer to create new CTestSuite
2168 // If this call goes to the wrong function then the test
2169 // suite does not have the correct function at ordinal 1.
2170 // This is usually caused by an error in the def file.
2171 iTestSuite = REINTERPRET_CAST(CTestSuite*, entryL());
2173 // NB :- Second-phase constructor for CTestSuite has already been called in entryL() above.
2174 // There is no need to call it again!
2176 // set suite severity level
2177 iTestSuite->SetSeverity(iLog->Severity());
2179 // get the version information
2180 TPtrC versiontxt = iTestSuite->GetVersion();
2183 iLog->LogExtra(__FILE8__, __LINE__, ESevrInfo, _L("LOAD_SUITE %S version %S loaded ok"),&aName, &versiontxt );
2188 * CSuiteDLL destructor
2193 CSuiteDll::~CSuiteDll()
2195 // delete the TestSuiteObject in the loaded DLL
2198 // close and unload the library
2204 * CSuiteDLL accessor : suite
2206 * @return "CTestSuite*"
2212 CTestSuite* CSuiteDll::Suite() const
2219 * CSuiteDLL accessor : suite name
2227 TPtrC CSuiteDll::Name() const
2239 CStepData* CStepData::NewL(const TDesC& aStep, const TDesC& aConfig, CSuiteDll* aSuite)
2241 return NewL(aStep, aConfig, KNullDesC, aSuite);
2244 CStepData* CStepData::NewL(const TDesC& aStep, const TDesC& aConfig, const TDesC& aParamSet, CSuiteDll* aSuite)
2246 CStepData* self = new(ELeave) CStepData;
2247 CleanupStack::PushL(self);
2248 self->ConstructL(aStep, aConfig, aParamSet, aSuite);
2249 CleanupStack::Pop();
2253 CStepData::CStepData()
2257 CStepData::~CStepData()
2261 void CStepData::ConstructL(const TDesC& aStep, const TDesC& aConfig, const TDesC& aParamSet, CSuiteDll* aSuite)
2265 iParamSet = aParamSet;
2269 const TDesC& CStepData::ParamSet() const