os/mm/mmtestenv/mmtestfw/Source/TestFramework/TestFrameworkMain.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include "TestFrameworkMain.h"
sl@0
    17
#include "../../recog/TestFrameworkRecog.h"
sl@0
    18
#include "script.h"
sl@0
    19
#include "parseline.h"
sl@0
    20
#include "Filename.h"
sl@0
    21
#include "config.h"
sl@0
    22
sl@0
    23
// Hurricane emulator only - start all services which we require to run tests.
sl@0
    24
// Future enhancement :- add these startups to TestUtils
sl@0
    25
#if defined(__WINS__)
sl@0
    26
IMPORT_C TInt FbsStartup();
sl@0
    27
#endif
sl@0
    28
sl@0
    29
/**
sl@0
    30
 *
sl@0
    31
 * Literals : program information and usage
sl@0
    32
 *
sl@0
    33
 * @xxxx
sl@0
    34
 *
sl@0
    35
 */
sl@0
    36
_LIT(KTxtFrameworkStarting, "%S %S %S starting....");
sl@0
    37
//_LIT(KTxtUseExample,"Usage:\nTESTFRAMEWORK [-C] [-F] <file.script> [file.ini]"); // EABI warning removal
sl@0
    38
sl@0
    39
/**
sl@0
    40
 *
sl@0
    41
 * Compiler switches
sl@0
    42
 *
sl@0
    43
 * @xxxx
sl@0
    44
 *
sl@0
    45
 */
sl@0
    46
#ifdef _WIN32
sl@0
    47
_LIT(KTxtTarget,"WINS");
sl@0
    48
#else 
sl@0
    49
#ifdef __MARM_THUMB__ 
sl@0
    50
_LIT(KTxtTarget,"THUMB");
sl@0
    51
#else
sl@0
    52
_LIT(KTxtTarget,"ARM4");
sl@0
    53
#endif
sl@0
    54
#endif
sl@0
    55
sl@0
    56
#ifdef _DEBUG
sl@0
    57
_LIT(KTxtBuild,"udeb");
sl@0
    58
#else
sl@0
    59
_LIT(KTxtBuild,"urel");
sl@0
    60
#endif
sl@0
    61
sl@0
    62
sl@0
    63
/**
sl@0
    64
 *
sl@0
    65
 * max length of command line
sl@0
    66
 *
sl@0
    67
 * @xxxx
sl@0
    68
 *
sl@0
    69
 */
sl@0
    70
const TInt KMaxLenCmdLine = 256;
sl@0
    71
sl@0
    72
/**
sl@0
    73
 *
sl@0
    74
 * Test Framework startup function.
sl@0
    75
 * Creates an active scheduler for input if required, reads
sl@0
    76
 * the command line, starts the main test loop.
sl@0
    77
 *
sl@0
    78
 * @xxxx
sl@0
    79
 *
sl@0
    80
 */
sl@0
    81
void StartupL()
sl@0
    82
	{
sl@0
    83
	CActiveScheduler* pA=new(ELeave) CActiveScheduler;
sl@0
    84
	CleanupStack::PushL(pA);
sl@0
    85
	CActiveScheduler::Install(pA);
sl@0
    86
sl@0
    87
// Hurricane emulator only - start all services which we require to run tests.
sl@0
    88
// Future enhancement :- add these startups to TestUtils
sl@0
    89
#if defined(__WINS__)
sl@0
    90
	#ifndef EXCLUDE_FOR_UNITTEST
sl@0
    91
	FbsStartup();
sl@0
    92
	#endif // EXCLUDE_FOR_UNITTEST
sl@0
    93
#endif
sl@0
    94
sl@0
    95
	// read the command line into cmd
sl@0
    96
	TPtr16 cmd(REINTERPRET_CAST(TUint16*,User::AllocLC(KMaxLenCmdLine*2)), 0, KMaxLenCmdLine);
sl@0
    97
	cmd.Fill('\0', KMaxLenCmdLine);
sl@0
    98
sl@0
    99
	User::CommandLine(cmd);
sl@0
   100
	cmd.UpperCase();
sl@0
   101
sl@0
   102
	CTestFrameworkMain* tester = CTestFrameworkMain::NewLC();
sl@0
   103
	tester->StartTestingL(cmd);
sl@0
   104
sl@0
   105
	// NOTE. Currently there is no need to start the active scheduler, as the input console is
sl@0
   106
	// now at the server. This will however change when AOs are implemented to replace
sl@0
   107
	// the main client loop.
sl@0
   108
sl@0
   109
	// CActiveScheduler::Start();
sl@0
   110
sl@0
   111
	CleanupStack::PopAndDestroy(3);	//tester, pA, cmd
sl@0
   112
	}
sl@0
   113
sl@0
   114
sl@0
   115
GLDEF_C TInt E32Main()
sl@0
   116
	{
sl@0
   117
sl@0
   118
	__UHEAP_MARK;
sl@0
   119
	CTrapCleanup* cleanup = CTrapCleanup::New(); // get clean-up stack
sl@0
   120
	
sl@0
   121
	// start scheduler 
sl@0
   122
	TRAPD(error, StartupL());
sl@0
   123
	__ASSERT_ALWAYS(!error, User::Panic(_L("TestFramework"), error));
sl@0
   124
sl@0
   125
	delete cleanup; // destroy clean-up stack
sl@0
   126
	__UHEAP_MARKEND;
sl@0
   127
	return KErrNone;
sl@0
   128
	}
sl@0
   129
sl@0
   130
// Instructions for Console Display
sl@0
   131
// Please add new entries to the right hand column, 
sl@0
   132
// Precede number and text with "\t "
sl@0
   133
// Leave \n\ at end of each line except the last line
sl@0
   134
//_LIT(KTxtMainInstructions, "Welcome to TestFramework. Press Q to quit ");	// EABI warning removal
sl@0
   135
sl@0
   136
sl@0
   137
/**
sl@0
   138
 *
sl@0
   139
 * CTestFrameworkMain static constructor.
sl@0
   140
 *
sl@0
   141
 * @xxxx
sl@0
   142
 *
sl@0
   143
 */
sl@0
   144
CTestFrameworkMain* CTestFrameworkMain::NewLC()
sl@0
   145
	{
sl@0
   146
	CTestFrameworkMain* s = new(ELeave) CTestFrameworkMain;
sl@0
   147
	CleanupStack::PushL(s);
sl@0
   148
	s->ConstructL();
sl@0
   149
	return s;
sl@0
   150
	}
sl@0
   151
sl@0
   152
/**
sl@0
   153
 *
sl@0
   154
 * CTestFrameworkMain first-phase constructor.
sl@0
   155
 *
sl@0
   156
 * @xxxx
sl@0
   157
 *
sl@0
   158
 */
sl@0
   159
CTestFrameworkMain::CTestFrameworkMain()
sl@0
   160
	{
sl@0
   161
	}
sl@0
   162
sl@0
   163
/**
sl@0
   164
 *
sl@0
   165
 * CTestFrameworkMain second-phase constructor.
sl@0
   166
 * Loads log client and test utils.
sl@0
   167
 *
sl@0
   168
 * @xxxx
sl@0
   169
 *
sl@0
   170
 */
sl@0
   171
void CTestFrameworkMain::ConstructL()
sl@0
   172
	{
sl@0
   173
	iLogClient	  = CLog::NewL();
sl@0
   174
	iLogMode	  = ELogToConsole | ELogToFile;
sl@0
   175
	iTestUtils	  = CTestUtils::NewL(iLogClient);
sl@0
   176
	iGuardTimer   = KNoGuardTimer;	// default value
sl@0
   177
	}
sl@0
   178
sl@0
   179
/**
sl@0
   180
 *
sl@0
   181
 * CTestFrameworkMain destructor.
sl@0
   182
 *
sl@0
   183
 * @xxxx
sl@0
   184
 *
sl@0
   185
 */
sl@0
   186
CTestFrameworkMain::~CTestFrameworkMain()
sl@0
   187
	{
sl@0
   188
	delete iTestUtils;
sl@0
   189
	delete iLogClient;
sl@0
   190
	}
sl@0
   191
sl@0
   192
/**
sl@0
   193
 *
sl@0
   194
 * CTestFrameworkMain - start testing.
sl@0
   195
 * Calls main test loop.
sl@0
   196
 *
sl@0
   197
 * @param "const TDesC& aCmdLine"
sl@0
   198
 *			The command line
sl@0
   199
 * 
sl@0
   200
 * @xxxx
sl@0
   201
 *
sl@0
   202
 */
sl@0
   203
void CTestFrameworkMain::StartTestingL(const TDesC& aCmdLine)
sl@0
   204
	{
sl@0
   205
	RunTestScriptL(aCmdLine);
sl@0
   206
sl@0
   207
	RSemaphore sem;
sl@0
   208
	TInt err = sem.OpenGlobal(KRecogSemaphoreName);
sl@0
   209
	if (err==KErrNone)
sl@0
   210
		{
sl@0
   211
		// Tell the recognizer thread that we're finished
sl@0
   212
		sem.Signal();
sl@0
   213
		sem.Close();
sl@0
   214
		}
sl@0
   215
	}
sl@0
   216
sl@0
   217
/**
sl@0
   218
 *
sl@0
   219
 * Accessor : log client
sl@0
   220
 *
sl@0
   221
 * @return	"CLog*"
sl@0
   222
 *			The log client
sl@0
   223
 * 
sl@0
   224
 * @xxxx
sl@0
   225
 *
sl@0
   226
 */
sl@0
   227
CLog* CTestFrameworkMain::LogClient() const
sl@0
   228
	{
sl@0
   229
	return iLogClient;
sl@0
   230
	}
sl@0
   231
sl@0
   232
/**
sl@0
   233
 *
sl@0
   234
 * Main testing loop.
sl@0
   235
 * Read a script file, parse it and execute each test step in turn.
sl@0
   236
 *
sl@0
   237
 * @param "const TDesC& aCmdLine"
sl@0
   238
 *			The command line
sl@0
   239
 * 
sl@0
   240
 * @xxxx
sl@0
   241
 *
sl@0
   242
 */
sl@0
   243
void CTestFrameworkMain::RunTestScriptL(const TDesC& aCmdLine)
sl@0
   244
	{
sl@0
   245
	// use TLex to decode the cmd line
sl@0
   246
	TLex lex(aCmdLine);
sl@0
   247
	TPtrC token=lex.NextToken();
sl@0
   248
	
sl@0
   249
	// if there is no input filename on the cmd line, panic
sl@0
   250
	if (token.Length() == 0) 
sl@0
   251
		UsageL();
sl@0
   252
	else
sl@0
   253
		{
sl@0
   254
		// Process any options
sl@0
   255
		while(token.Length() > 1 && token[0] == '-')
sl@0
   256
			{
sl@0
   257
			switch(token[1])
sl@0
   258
				{
sl@0
   259
				case 'C':
sl@0
   260
				case 'c':
sl@0
   261
					// log to console ONLY
sl@0
   262
					iLogMode = ELogToConsole;
sl@0
   263
					break;
sl@0
   264
				case 'A':
sl@0
   265
				case 'a':
sl@0
   266
					iLogMode |= ELogConsoleFull;
sl@0
   267
					break;
sl@0
   268
				case 'F':
sl@0
   269
				case 'f':
sl@0
   270
					// log to file ONLY
sl@0
   271
					iLogMode = ELogToFile; 
sl@0
   272
					break;
sl@0
   273
				case 'P':
sl@0
   274
				case 'p':
sl@0
   275
					// log to port AS WELL AS to console / file
sl@0
   276
					iLogMode |= ELogToPort;
sl@0
   277
					break;
sl@0
   278
				//This stops the emulator from thowing int 3 if a panic occurs in debug builds
sl@0
   279
				case 'T':
sl@0
   280
				case 't':
sl@0
   281
					User::SetJustInTime(EFalse);
sl@0
   282
				// -S flag removed - was for old Unit Test mode only
sl@0
   283
				// -A 'automated mode' removed - it's always automated
sl@0
   284
					break;
sl@0
   285
				case 'G':
sl@0
   286
				case 'g':
sl@0
   287
					{
sl@0
   288
					// ** guard timer override - get numeric value that follows
sl@0
   289
					TPtrC val = &token[2];
sl@0
   290
					TLex lexTimeOut(val);
sl@0
   291
					if (lexTimeOut.Val(iGuardTimer) != KErrNone)
sl@0
   292
						UsageL();
sl@0
   293
					}
sl@0
   294
					break;
sl@0
   295
				case 'm':
sl@0
   296
				case 'M':
sl@0
   297
					{
sl@0
   298
					if (token.Length()<=2)
sl@0
   299
						{
sl@0
   300
						// only -m found. must be -m<arg> with no space
sl@0
   301
						UsageL();
sl@0
   302
						}
sl@0
   303
					TPtrC restOfLine = &token[2]; // this will be rest of command line
sl@0
   304
					TLex argument(restOfLine);
sl@0
   305
					TPtrC matchString = argument.NextToken(); // will be the argument itself
sl@0
   306
					ASSERT(matchString.Length()>1);
sl@0
   307
					iTestMatchString = matchString;
sl@0
   308
					}
sl@0
   309
					break;
sl@0
   310
				case 'Q':
sl@0
   311
				case 'q':
sl@0
   312
					{
sl@0
   313
					// This flag has been removed.  This block is just to ensure that if used it wont panic
sl@0
   314
					}
sl@0
   315
					break;
sl@0
   316
sl@0
   317
				default:
sl@0
   318
					UsageL();
sl@0
   319
					return;
sl@0
   320
				}
sl@0
   321
sl@0
   322
			token.Set(lex.NextToken());
sl@0
   323
			}
sl@0
   324
sl@0
   325
		// save the input filename
sl@0
   326
		CFileName* scriptFileName = CFileName::NewLC();
sl@0
   327
		*scriptFileName = token;
sl@0
   328
sl@0
   329
		// make the log file name from the script file name
sl@0
   330
		CFileName* logFileName = CFileName::NewLC();
sl@0
   331
		*logFileName = token;
sl@0
   332
		RDebug::Print(_L("TestFrameWorkMain.cpp: RunTestScriptL 1"));
sl@0
   333
		// open the log file
sl@0
   334
		iLogClient->OpenLogFileL(logFileName->FileName(), iLogMode);
sl@0
   335
		RDebug::Print(_L("TestFrameWorkMain.cpp: RunTestScriptL 2"));	
sl@0
   336
		iLogClient->LogExtra(__FILE8__, __LINE__, ESevrInfo,
sl@0
   337
				KTxtFrameworkStarting, &KTxtVersion(), &KTxtTarget(), &KTxtBuild());
sl@0
   338
		RDebug::Print(_L("TestFrameWorkMain.cpp: RunTestScriptL 3"));
sl@0
   339
		// create a ParseScript object
sl@0
   340
		CScript* parseScript = CScript::NewLC(iTestUtils, 
sl@0
   341
											  iLogClient, 
sl@0
   342
											  iGuardTimer,
sl@0
   343
											  iTestMatchString);
sl@0
   344
		RDebug::Print(_L("TestFrameWorkMain.cpp: RunTestScriptL 4"));
sl@0
   345
		// parse all scripts
sl@0
   346
		do
sl@0
   347
			{
sl@0
   348
			// get the next file
sl@0
   349
			*scriptFileName = token;
sl@0
   350
				
sl@0
   351
			// read in the script file
sl@0
   352
			if ( parseScript->OpenScriptFile(scriptFileName))
sl@0
   353
				{
sl@0
   354
				// process it
sl@0
   355
				parseScript->ExecuteScriptL();
sl@0
   356
				// display results summary
sl@0
   357
				parseScript->DisplayResults();
sl@0
   358
				}
sl@0
   359
			// get the next
sl@0
   360
			token.Set(lex.NextToken());
sl@0
   361
			} while ( token.Length()!=0 );
sl@0
   362
		RDebug::Print(_L("TestFrameWorkMain.cpp: RunTestScriptL 5"));
sl@0
   363
		CleanupStack::PopAndDestroy(parseScript);
sl@0
   364
sl@0
   365
		// close the logging system
sl@0
   366
		iLogClient->CloseLogFile();
sl@0
   367
sl@0
   368
		CleanupStack::PopAndDestroy(logFileName);
sl@0
   369
		CleanupStack::PopAndDestroy(scriptFileName);
sl@0
   370
		}
sl@0
   371
	}
sl@0
   372
sl@0
   373
/**
sl@0
   374
 *
sl@0
   375
 * Display command line format.
sl@0
   376
 * 
sl@0
   377
 * @xxxx
sl@0
   378
 *
sl@0
   379
 */
sl@0
   380
void CTestFrameworkMain::UsageL()
sl@0
   381
	{
sl@0
   382
	// If command line is erroneous, raise a panic. 
sl@0
   383
	// At this point, there may be no log outputs at all.
sl@0
   384
	User::Panic(_L("TestFramework"), 2);
sl@0
   385
	}