First public contribution.
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.
16 #include "TestFrameworkMain.h"
17 #include "../../recog/TestFrameworkRecog.h"
19 #include "parseline.h"
23 // Hurricane emulator only - start all services which we require to run tests.
24 // Future enhancement :- add these startups to TestUtils
26 IMPORT_C TInt FbsStartup();
31 * Literals : program information and usage
36 _LIT(KTxtFrameworkStarting, "%S %S %S starting....");
37 //_LIT(KTxtUseExample,"Usage:\nTESTFRAMEWORK [-C] [-F] <file.script> [file.ini]"); // EABI warning removal
47 _LIT(KTxtTarget,"WINS");
50 _LIT(KTxtTarget,"THUMB");
52 _LIT(KTxtTarget,"ARM4");
57 _LIT(KTxtBuild,"udeb");
59 _LIT(KTxtBuild,"urel");
65 * max length of command line
70 const TInt KMaxLenCmdLine = 256;
74 * Test Framework startup function.
75 * Creates an active scheduler for input if required, reads
76 * the command line, starts the main test loop.
83 CActiveScheduler* pA=new(ELeave) CActiveScheduler;
84 CleanupStack::PushL(pA);
85 CActiveScheduler::Install(pA);
87 // Hurricane emulator only - start all services which we require to run tests.
88 // Future enhancement :- add these startups to TestUtils
90 #ifndef EXCLUDE_FOR_UNITTEST
92 #endif // EXCLUDE_FOR_UNITTEST
95 // read the command line into cmd
96 TPtr16 cmd(REINTERPRET_CAST(TUint16*,User::AllocLC(KMaxLenCmdLine*2)), 0, KMaxLenCmdLine);
97 cmd.Fill('\0', KMaxLenCmdLine);
99 User::CommandLine(cmd);
102 CTestFrameworkMain* tester = CTestFrameworkMain::NewLC();
103 tester->StartTestingL(cmd);
105 // NOTE. Currently there is no need to start the active scheduler, as the input console is
106 // now at the server. This will however change when AOs are implemented to replace
107 // the main client loop.
109 // CActiveScheduler::Start();
111 CleanupStack::PopAndDestroy(3); //tester, pA, cmd
115 GLDEF_C TInt E32Main()
119 CTrapCleanup* cleanup = CTrapCleanup::New(); // get clean-up stack
122 TRAPD(error, StartupL());
123 __ASSERT_ALWAYS(!error, User::Panic(_L("TestFramework"), error));
125 delete cleanup; // destroy clean-up stack
130 // Instructions for Console Display
131 // Please add new entries to the right hand column,
132 // Precede number and text with "\t "
133 // Leave \n\ at end of each line except the last line
134 //_LIT(KTxtMainInstructions, "Welcome to TestFramework. Press Q to quit "); // EABI warning removal
139 * CTestFrameworkMain static constructor.
144 CTestFrameworkMain* CTestFrameworkMain::NewLC()
146 CTestFrameworkMain* s = new(ELeave) CTestFrameworkMain;
147 CleanupStack::PushL(s);
154 * CTestFrameworkMain first-phase constructor.
159 CTestFrameworkMain::CTestFrameworkMain()
165 * CTestFrameworkMain second-phase constructor.
166 * Loads log client and test utils.
171 void CTestFrameworkMain::ConstructL()
173 iLogClient = CLog::NewL();
174 iLogMode = ELogToConsole | ELogToFile;
175 iTestUtils = CTestUtils::NewL(iLogClient);
176 iGuardTimer = KNoGuardTimer; // default value
181 * CTestFrameworkMain destructor.
186 CTestFrameworkMain::~CTestFrameworkMain()
194 * CTestFrameworkMain - start testing.
195 * Calls main test loop.
197 * @param "const TDesC& aCmdLine"
203 void CTestFrameworkMain::StartTestingL(const TDesC& aCmdLine)
205 RunTestScriptL(aCmdLine);
208 TInt err = sem.OpenGlobal(KRecogSemaphoreName);
211 // Tell the recognizer thread that we're finished
219 * Accessor : log client
227 CLog* CTestFrameworkMain::LogClient() const
235 * Read a script file, parse it and execute each test step in turn.
237 * @param "const TDesC& aCmdLine"
243 void CTestFrameworkMain::RunTestScriptL(const TDesC& aCmdLine)
245 // use TLex to decode the cmd line
247 TPtrC token=lex.NextToken();
249 // if there is no input filename on the cmd line, panic
250 if (token.Length() == 0)
254 // Process any options
255 while(token.Length() > 1 && token[0] == '-')
261 // log to console ONLY
262 iLogMode = ELogToConsole;
266 iLogMode |= ELogConsoleFull;
271 iLogMode = ELogToFile;
275 // log to port AS WELL AS to console / file
276 iLogMode |= ELogToPort;
278 //This stops the emulator from thowing int 3 if a panic occurs in debug builds
281 User::SetJustInTime(EFalse);
282 // -S flag removed - was for old Unit Test mode only
283 // -A 'automated mode' removed - it's always automated
288 // ** guard timer override - get numeric value that follows
289 TPtrC val = &token[2];
290 TLex lexTimeOut(val);
291 if (lexTimeOut.Val(iGuardTimer) != KErrNone)
298 if (token.Length()<=2)
300 // only -m found. must be -m<arg> with no space
303 TPtrC restOfLine = &token[2]; // this will be rest of command line
304 TLex argument(restOfLine);
305 TPtrC matchString = argument.NextToken(); // will be the argument itself
306 ASSERT(matchString.Length()>1);
307 iTestMatchString = matchString;
313 // This flag has been removed. This block is just to ensure that if used it wont panic
322 token.Set(lex.NextToken());
325 // save the input filename
326 CFileName* scriptFileName = CFileName::NewLC();
327 *scriptFileName = token;
329 // make the log file name from the script file name
330 CFileName* logFileName = CFileName::NewLC();
331 *logFileName = token;
332 RDebug::Print(_L("TestFrameWorkMain.cpp: RunTestScriptL 1"));
334 iLogClient->OpenLogFileL(logFileName->FileName(), iLogMode);
335 RDebug::Print(_L("TestFrameWorkMain.cpp: RunTestScriptL 2"));
336 iLogClient->LogExtra(__FILE8__, __LINE__, ESevrInfo,
337 KTxtFrameworkStarting, &KTxtVersion(), &KTxtTarget(), &KTxtBuild());
338 RDebug::Print(_L("TestFrameWorkMain.cpp: RunTestScriptL 3"));
339 // create a ParseScript object
340 CScript* parseScript = CScript::NewLC(iTestUtils,
344 RDebug::Print(_L("TestFrameWorkMain.cpp: RunTestScriptL 4"));
349 *scriptFileName = token;
351 // read in the script file
352 if ( parseScript->OpenScriptFile(scriptFileName))
355 parseScript->ExecuteScriptL();
356 // display results summary
357 parseScript->DisplayResults();
360 token.Set(lex.NextToken());
361 } while ( token.Length()!=0 );
362 RDebug::Print(_L("TestFrameWorkMain.cpp: RunTestScriptL 5"));
363 CleanupStack::PopAndDestroy(parseScript);
365 // close the logging system
366 iLogClient->CloseLogFile();
368 CleanupStack::PopAndDestroy(logFileName);
369 CleanupStack::PopAndDestroy(scriptFileName);
375 * Display command line format.
380 void CTestFrameworkMain::UsageL()
382 // If command line is erroneous, raise a panic.
383 // At this point, there may be no log outputs at all.
384 User::Panic(_L("TestFramework"), 2);