os/mm/mmtestenv/mmtestfw/Source/TestFrameworkClient/TestUtils.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
// This contains file utilities which can be called from Test Framework scripts
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
// EPOC includes
sl@0
    19
#include <e32base.h>
sl@0
    20
#include <f32file.h> 
sl@0
    21
sl@0
    22
// Test system includes
sl@0
    23
#include <testframework.h>
sl@0
    24
sl@0
    25
// do not export if Unit Testing
sl@0
    26
#if defined (__TSU_TESTFRAMEWORK__)
sl@0
    27
#undef EXPORT_C
sl@0
    28
#define EXPORT_C
sl@0
    29
#endif
sl@0
    30
sl@0
    31
sl@0
    32
/**
sl@0
    33
 *
sl@0
    34
 * Initialise the test utilities.
sl@0
    35
 *
sl@0
    36
 * @param	"CLog* aLogSystem"
sl@0
    37
 *			The logger the test utilities are to use.
sl@0
    38
 *
sl@0
    39
 * @xxxx 
sl@0
    40
 *
sl@0
    41
 */
sl@0
    42
EXPORT_C CTestUtils* CTestUtils::NewL(CLog* aLogSystem)
sl@0
    43
	{
sl@0
    44
	CTestUtils* self = new(ELeave) CTestUtils;
sl@0
    45
	self->Construct(aLogSystem);
sl@0
    46
	return self;
sl@0
    47
	}
sl@0
    48
sl@0
    49
/**
sl@0
    50
 *
sl@0
    51
 * Initialise the test utilities (second phase).
sl@0
    52
 *
sl@0
    53
 * @param	"CLog* aLogSystem"
sl@0
    54
 *			The logger the test utilities are to use.
sl@0
    55
 *
sl@0
    56
 * @xxxx
sl@0
    57
 *
sl@0
    58
 */
sl@0
    59
void CTestUtils::Construct(CLog* aLogSystem)
sl@0
    60
	{
sl@0
    61
	iLogSystem = aLogSystem;
sl@0
    62
	}
sl@0
    63
sl@0
    64
/**
sl@0
    65
 *
sl@0
    66
 * Run the test utilities inside a trap harness.
sl@0
    67
 *
sl@0
    68
 * @param	"const TDesC& aText"
sl@0
    69
 *			Test string giving the utility to run.
sl@0
    70
 *
sl@0
    71
 * @xxxx 
sl@0
    72
 *
sl@0
    73
 */
sl@0
    74
EXPORT_C void CTestUtils::RunUtils(const TDesC& aText)
sl@0
    75
	{
sl@0
    76
	TRAPD(r, RunUtilsL(aText));
sl@0
    77
sl@0
    78
	if (r != KErrNone)
sl@0
    79
		{
sl@0
    80
		WARN_PRINTF3(_L("Warning: Test Utils : %S left, error %d"), &aText, r);
sl@0
    81
		}
sl@0
    82
	}
sl@0
    83
sl@0
    84
/**
sl@0
    85
 *
sl@0
    86
 * Run the test utilities inside a trap harness.
sl@0
    87
 *
sl@0
    88
 * @param	"const TDesC& aText"
sl@0
    89
 *			Test string giving the utility to run.
sl@0
    90
 *
sl@0
    91
 * @xxxx
sl@0
    92
 *
sl@0
    93
 */
sl@0
    94
void CTestUtils::RunUtilsL(const TDesC& aText)
sl@0
    95
	{
sl@0
    96
	// use Tlex to decode the cmd line
sl@0
    97
	TLex lex(aText);
sl@0
    98
sl@0
    99
	// step over the keyword
sl@0
   100
	lex.NextToken();
sl@0
   101
sl@0
   102
	// get util required
sl@0
   103
	TPtrC token;
sl@0
   104
	token.Set(lex.NextToken());
sl@0
   105
sl@0
   106
	if (token.FindF( _L("ChangeDir")) == 0)
sl@0
   107
		{
sl@0
   108
		User::Panic(_L("ChangeDir is not supported on EKA2"), KErrNotSupported);
sl@0
   109
		}
sl@0
   110
	else if (token.FindF( _L("CopyFile")) == 0)
sl@0
   111
		{
sl@0
   112
		// get the parameter
sl@0
   113
		TPtrC file1 = lex.NextToken();
sl@0
   114
		TPtrC file2 = lex.NextToken();
sl@0
   115
sl@0
   116
		CopyFileL(file1, file2);
sl@0
   117
		}
sl@0
   118
	else if (token.FindF( _L("CopyAndInvertFile")) == 0)
sl@0
   119
		{
sl@0
   120
		// get the parameter
sl@0
   121
		TPtrC file1 = lex.NextToken();
sl@0
   122
		TPtrC file2 = lex.NextToken();
sl@0
   123
sl@0
   124
		CopyAndInvertFileL(file1, file2);
sl@0
   125
		}	
sl@0
   126
	else if (token.FindF( _L("MkDir")) == 0)
sl@0
   127
		{
sl@0
   128
		// get the parameter
sl@0
   129
		token.Set(lex.NextToken());
sl@0
   130
sl@0
   131
		MakeDirL(token);
sl@0
   132
		}
sl@0
   133
	else if (token.FindF( _L("Delete")) == 0)
sl@0
   134
		{
sl@0
   135
		// get the parameter
sl@0
   136
		token.Set(lex.NextToken());
sl@0
   137
sl@0
   138
		DeleteFileL(token);
sl@0
   139
		}
sl@0
   140
	else if (token.FindF( _L("MakeReadWrite")) == 0)
sl@0
   141
		{
sl@0
   142
		// get the parameter
sl@0
   143
		token.Set(lex.NextToken());
sl@0
   144
sl@0
   145
		MakeReadWriteL(token);
sl@0
   146
		}
sl@0
   147
	else
sl@0
   148
		{
sl@0
   149
		ERR_PRINTF2(_L("Failed to decode RUN_UTILS command : %S"), &aText);
sl@0
   150
		User::Leave(KErrNotFound);
sl@0
   151
		}
sl@0
   152
	}
sl@0
   153
sl@0
   154
sl@0
   155
/**
sl@0
   156
 *
sl@0
   157
 * Test utility : make new directory
sl@0
   158
 *
sl@0
   159
 * @param	"const TDesC& aDirname"
sl@0
   160
 *			New directory path.
sl@0
   161
 *
sl@0
   162
 * @xxxx
sl@0
   163
 *
sl@0
   164
 */
sl@0
   165
void CTestUtils::MakeDirL(const TDesC& aDirname) 
sl@0
   166
	{
sl@0
   167
	// parse the filenames
sl@0
   168
	_LIT(KDefault,"C:\\"); 
sl@0
   169
	TParse fullFileName;
sl@0
   170
	TInt returnCode = fullFileName.Set(aDirname, &KDefault, NULL);
sl@0
   171
	if (returnCode != KErrNone)
sl@0
   172
		{
sl@0
   173
		TPtrC errortxt = CLog::EpocErrorToText(returnCode);
sl@0
   174
		ERR_PRINTF3(_L("Failed to decode full path name %S - %S"), 
sl@0
   175
			&fullFileName.FullName(), 
sl@0
   176
			&errortxt);
sl@0
   177
		User::Leave(returnCode);
sl@0
   178
		}
sl@0
   179
sl@0
   180
	// connect to file server
sl@0
   181
	returnCode = iFs.Connect();
sl@0
   182
	if (returnCode != KErrNone)
sl@0
   183
		{
sl@0
   184
		ERR_PRINTF1(_L("Error connecting to file server"));	
sl@0
   185
		User::Leave(returnCode);
sl@0
   186
		}
sl@0
   187
sl@0
   188
	// now create the new directory
sl@0
   189
	returnCode = iFs.MkDirAll(fullFileName.DriveAndPath()); 
sl@0
   190
	if ((returnCode != KErrNone) && (returnCode != KErrAlreadyExists))
sl@0
   191
		{		
sl@0
   192
		TPtrC errortxt = CLog::EpocErrorToText(returnCode);
sl@0
   193
sl@0
   194
		ERR_PRINTF3(_L("Error %S making directory %S"), 
sl@0
   195
			&errortxt, 
sl@0
   196
			&fullFileName.FullName());
sl@0
   197
		iFs.Close();
sl@0
   198
		User::Leave(returnCode);
sl@0
   199
		}
sl@0
   200
	if(returnCode == KErrNone)
sl@0
   201
		{
sl@0
   202
		// display full (including path) file name
sl@0
   203
		INFO_PRINTF2( _L("Made directory %S"), &fullFileName.FullName());	
sl@0
   204
		}
sl@0
   205
	else
sl@0
   206
		{
sl@0
   207
		INFO_PRINTF2( _L("directory already exists %S"), &fullFileName.FullName());		
sl@0
   208
		}
sl@0
   209
	iFs.Close();
sl@0
   210
	}
sl@0
   211
sl@0
   212
sl@0
   213
/**
sl@0
   214
 *
sl@0
   215
 * Test utility : copy a file
sl@0
   216
 *
sl@0
   217
 * @param	"const TDesC& aOld"
sl@0
   218
 *			Source file.
sl@0
   219
 *
sl@0
   220
 * @param	"const TDesC& aNew"
sl@0
   221
 *			Destination file.
sl@0
   222
 *
sl@0
   223
 * @xxxx
sl@0
   224
 *
sl@0
   225
 */
sl@0
   226
void CTestUtils::CopyFileL (const TDesC& aOld,const TDesC& aNew) 
sl@0
   227
	{
sl@0
   228
	// connect to file server
sl@0
   229
	TInt returnCode = iFs.Connect();
sl@0
   230
	if (returnCode != KErrNone)
sl@0
   231
		{
sl@0
   232
		ERR_PRINTF1(_L("Error connecting to file server"));	
sl@0
   233
		User::Leave(returnCode);
sl@0
   234
		}
sl@0
   235
sl@0
   236
	// create a file manager
sl@0
   237
	CFileMan* fileMan = CFileMan::NewL(iFs);
sl@0
   238
	CleanupStack::PushL(fileMan);
sl@0
   239
sl@0
   240
	// parse the filenames
sl@0
   241
	TParse parseSource;
sl@0
   242
	returnCode = parseSource.Set(aOld, NULL, NULL);
sl@0
   243
	if (returnCode != KErrNone)
sl@0
   244
		{
sl@0
   245
		TPtrC errortxt = CLog::EpocErrorToText(returnCode);
sl@0
   246
		ERR_PRINTF3( _L("Failed to parse %S - %S"), 
sl@0
   247
			&aOld, 
sl@0
   248
			&errortxt);
sl@0
   249
		iFs.Close();
sl@0
   250
		User::Leave(returnCode);
sl@0
   251
		}
sl@0
   252
 
sl@0
   253
	// parse the filenames
sl@0
   254
	TParse parseTarget;
sl@0
   255
	returnCode = parseTarget.Set(aNew, NULL, NULL);
sl@0
   256
	if (returnCode != KErrNone)
sl@0
   257
		{
sl@0
   258
		TPtrC errortxt = CLog::EpocErrorToText(returnCode);
sl@0
   259
		ERR_PRINTF3(_L("Failed to parse %S - %S"), 
sl@0
   260
			&aNew, 
sl@0
   261
			&errortxt);
sl@0
   262
		iFs.Close();
sl@0
   263
		User::Leave(returnCode);
sl@0
   264
		}
sl@0
   265
sl@0
   266
	// do the copy
sl@0
   267
	returnCode = fileMan->Copy(parseSource.FullName(), 
sl@0
   268
		parseTarget.FullName(), 
sl@0
   269
		CFileMan::EOverWrite | CFileMan::ERecurse);
sl@0
   270
sl@0
   271
	if (returnCode != KErrNone)
sl@0
   272
		{
sl@0
   273
		TPtrC errortxt = CLog::EpocErrorToText(returnCode);
sl@0
   274
sl@0
   275
		ERR_PRINTF4(_L("Failed to copy %S to %S - %S"), 
sl@0
   276
			&parseSource.FullName(), 
sl@0
   277
			&parseTarget.FullName(),
sl@0
   278
			&errortxt);
sl@0
   279
		iFs.Close();
sl@0
   280
		User::Leave(returnCode);
sl@0
   281
		}
sl@0
   282
sl@0
   283
	INFO_PRINTF3(_L("Copied file from %S to %S"), 
sl@0
   284
					&parseSource.FullName(), 
sl@0
   285
					&parseTarget.FullName());
sl@0
   286
sl@0
   287
	iFs.Close();
sl@0
   288
	CleanupStack::PopAndDestroy(fileMan);
sl@0
   289
	}
sl@0
   290
sl@0
   291
sl@0
   292
/**
sl@0
   293
 *
sl@0
   294
 * Test utility : invert a file and copy it to a tartget file
sl@0
   295
 *
sl@0
   296
 * @param	"const TDesC& aOld"
sl@0
   297
 *			Source file.
sl@0
   298
 *
sl@0
   299
 * @param	"const TDesC& aNew"
sl@0
   300
 *			Destination file.
sl@0
   301
 *          Will contain the inverted file
sl@0
   302
 *          
sl@0
   303
 *
sl@0
   304
 * @xxxx
sl@0
   305
 *
sl@0
   306
 */
sl@0
   307
void CTestUtils::CopyAndInvertFileL (const TDesC& aOld,const TDesC& aNew) 
sl@0
   308
	{
sl@0
   309
    
sl@0
   310
    TRAPD(error, DoCopyAndInvertL(aOld, aNew));  
sl@0
   311
sl@0
   312
    if (error != KErrNone)
sl@0
   313
		{
sl@0
   314
   		TPtrC errortxt = CLog::EpocErrorToText(error);
sl@0
   315
		ERR_PRINTF2(_L("Failed to copy Files - %S"), &errortxt);
sl@0
   316
		User::Leave(error);
sl@0
   317
		}	
sl@0
   318
    	
sl@0
   319
	}
sl@0
   320
	
sl@0
   321
sl@0
   322
	
sl@0
   323
	
sl@0
   324
/**
sl@0
   325
 *
sl@0
   326
 * Test utility : Do the invert and copy of a source file
sl@0
   327
 *				  into a target file. 
sl@0
   328
 *
sl@0
   329
 * @param	"const TDesC& aOld"
sl@0
   330
 *			Source file.
sl@0
   331
 *
sl@0
   332
 * @param	"const TDesC& aNew"
sl@0
   333
 *			Destination file.
sl@0
   334
 *          Will contain the inverted file
sl@0
   335
 *          
sl@0
   336
 *
sl@0
   337
 * @xxxx
sl@0
   338
 *
sl@0
   339
 */
sl@0
   340
void CTestUtils::DoCopyAndInvertL (const TDesC& aOld,const TDesC& aNew)
sl@0
   341
	{
sl@0
   342
	// connect to file server
sl@0
   343
	TInt returnCode = iFs.Connect();
sl@0
   344
	if (returnCode != KErrNone)
sl@0
   345
		{
sl@0
   346
		ERR_PRINTF1(_L("Error connecting to file server"));	
sl@0
   347
		User::Leave(returnCode);
sl@0
   348
		}
sl@0
   349
    CleanupClosePushL(iFs);	
sl@0
   350
		
sl@0
   351
	// parse the filenames
sl@0
   352
	TParse parseSource;
sl@0
   353
	User::LeaveIfError(parseSource.Set(aOld, NULL, NULL));
sl@0
   354
sl@0
   355
	// parse the filenames
sl@0
   356
	TParse parseTarget;
sl@0
   357
	User::LeaveIfError(parseTarget.Set(aNew, NULL, NULL));
sl@0
   358
	
sl@0
   359
	RFile sourceFile;
sl@0
   360
	
sl@0
   361
	// open the source file for reading
sl@0
   362
	User::LeaveIfError(sourceFile.Open(iFs, parseSource.FullName(), EFileRead));
sl@0
   363
	CleanupClosePushL(sourceFile);
sl@0
   364
	
sl@0
   365
	RFile targetFile;
sl@0
   366
	
sl@0
   367
	// open the target file for writing
sl@0
   368
	User::LeaveIfError(targetFile.Replace(iFs, parseTarget.FullName(), EFileWrite));
sl@0
   369
	CleanupClosePushL(targetFile);
sl@0
   370
	
sl@0
   371
	const TInt KSizeOfInvertBuf = 256;
sl@0
   372
	
sl@0
   373
	// Buffers used for read,invert and write to the target file
sl@0
   374
	TBuf8<KSizeOfInvertBuf> invertBuffer;
sl@0
   375
	TInt8 byteBuf;//A temp byte size buffer
sl@0
   376
	
sl@0
   377
	//Invert the source file and copy it into the target file 
sl@0
   378
	do 
sl@0
   379
		{
sl@0
   380
		User::LeaveIfError(sourceFile.Read(invertBuffer));
sl@0
   381
		
sl@0
   382
		for (TInt index=0; index<invertBuffer.Length(); index++)
sl@0
   383
			 {
sl@0
   384
			 byteBuf = invertBuffer[index];
sl@0
   385
			 byteBuf ^= 0xFF; //inverting the buf bits
sl@0
   386
			 invertBuffer[index] = byteBuf;
sl@0
   387
			 }
sl@0
   388
		User::LeaveIfError(targetFile.Write(invertBuffer));
sl@0
   389
	 	}
sl@0
   390
   while (invertBuffer.Length() != 0);
sl@0
   391
   
sl@0
   392
sl@0
   393
    // Flush the data to the target file
sl@0
   394
	User::LeaveIfError(targetFile.Flush());
sl@0
   395
	
sl@0
   396
    // display full (including path) file name
sl@0
   397
	INFO_PRINTF3(_L("Copied and Inverted successfully file %S to file %S"), 
sl@0
   398
		&parseSource.FullName(),
sl@0
   399
		&parseTarget.FullName());
sl@0
   400
	
sl@0
   401
	//closing the files
sl@0
   402
	CleanupStack::PopAndDestroy(3, &iFs);
sl@0
   403
	
sl@0
   404
	}	
sl@0
   405
sl@0
   406
sl@0
   407
sl@0
   408
sl@0
   409
sl@0
   410
/**
sl@0
   411
 *
sl@0
   412
 * Test utility : delete a file
sl@0
   413
 *
sl@0
   414
 * @param	"const TDesC& aFile"
sl@0
   415
 *			File to be deleted.
sl@0
   416
 *
sl@0
   417
 * @xxxx
sl@0
   418
 *
sl@0
   419
 */
sl@0
   420
void CTestUtils::DeleteFileL (const TDesC& aFile) 
sl@0
   421
	{
sl@0
   422
	// parse the filenames
sl@0
   423
	_LIT(KDefault,"C:\\xxxxx.xxx"); 
sl@0
   424
	TParse fullFileName;
sl@0
   425
	TInt returnCode = fullFileName.Set(aFile, &KDefault, NULL);
sl@0
   426
	if (returnCode != KErrNone)
sl@0
   427
		{
sl@0
   428
		TPtrC errortxt = CLog::EpocErrorToText(returnCode);
sl@0
   429
		ERR_PRINTF3(_L("Failed to decode full path name %S - %S"), 
sl@0
   430
			&fullFileName.FullName(), 
sl@0
   431
			&errortxt);
sl@0
   432
		User::Leave(returnCode);
sl@0
   433
		}
sl@0
   434
sl@0
   435
	// connect to file server
sl@0
   436
	returnCode = iFs.Connect();
sl@0
   437
	if (returnCode != KErrNone)
sl@0
   438
		{
sl@0
   439
		ERR_PRINTF1(_L("Error connecting to file server"));	
sl@0
   440
		User::Leave(returnCode);
sl@0
   441
		}
sl@0
   442
sl@0
   443
	// now do the delete
sl@0
   444
	returnCode = iFs.Delete(fullFileName.FullName()); 
sl@0
   445
	if (returnCode != KErrNone)
sl@0
   446
		{		
sl@0
   447
		TPtrC errortxt = CLog::EpocErrorToText(returnCode);
sl@0
   448
		ERR_PRINTF3(_L("Error %S deleting %S"), 
sl@0
   449
			&errortxt, 
sl@0
   450
			&fullFileName.FullName());
sl@0
   451
		iFs.Close();
sl@0
   452
		User::Leave(returnCode);
sl@0
   453
		}
sl@0
   454
sl@0
   455
	// display full (including path) file name
sl@0
   456
	INFO_PRINTF2(_L("Deleted %S"), &fullFileName.FullName());	
sl@0
   457
	iFs.Close();
sl@0
   458
	}
sl@0
   459
sl@0
   460
sl@0
   461
/**
sl@0
   462
 *
sl@0
   463
 * Test utility : make a file read-write (clear the read-only attribute)
sl@0
   464
 *
sl@0
   465
 * @param	"const TDesC& aFile"
sl@0
   466
 *			File to be made read-write.
sl@0
   467
 *
sl@0
   468
 * @xxxx
sl@0
   469
 *
sl@0
   470
 */
sl@0
   471
void CTestUtils::MakeReadWriteL (const TDesC& aFile) 
sl@0
   472
	{
sl@0
   473
	// parse the filenames
sl@0
   474
	_LIT(KDefault,"C:\\xxxxx.xxx"); 
sl@0
   475
	TParse fullFileName;
sl@0
   476
	TInt returnCode = fullFileName.Set(aFile, &KDefault, NULL);
sl@0
   477
	if (returnCode != KErrNone)
sl@0
   478
		{
sl@0
   479
		TPtrC errortxt = CLog::EpocErrorToText(returnCode);
sl@0
   480
		ERR_PRINTF3(_L("Failed to decode full path name %S - %S"), 
sl@0
   481
			&fullFileName.FullName(), 
sl@0
   482
			&errortxt);
sl@0
   483
		User::Leave(returnCode);
sl@0
   484
		}
sl@0
   485
sl@0
   486
	// connect to file server
sl@0
   487
	returnCode = iFs.Connect();
sl@0
   488
	if (returnCode != KErrNone)
sl@0
   489
		{
sl@0
   490
		ERR_PRINTF1(_L("Error connecting to file server"));	
sl@0
   491
		User::Leave(returnCode);
sl@0
   492
		}
sl@0
   493
sl@0
   494
	// now do the delete
sl@0
   495
	returnCode = iFs.SetAtt(fullFileName.FullName(), 0, KEntryAttReadOnly); 
sl@0
   496
sl@0
   497
	// check for errors
sl@0
   498
	if (returnCode != KErrNone )
sl@0
   499
		{		
sl@0
   500
		TPtrC errortxt = CLog::EpocErrorToText(returnCode);
sl@0
   501
sl@0
   502
		ERR_PRINTF3(_L("Error %S making %S read-write"), 
sl@0
   503
			&errortxt, 
sl@0
   504
			&fullFileName.FullName());
sl@0
   505
		iFs.Close();
sl@0
   506
		User::Leave(returnCode);
sl@0
   507
		}
sl@0
   508
sl@0
   509
	// display full (including path) file name
sl@0
   510
	INFO_PRINTF2(_L("Made %S read-write"), &fullFileName.FullName());	
sl@0
   511
	iFs.Close();
sl@0
   512
	}
sl@0
   513
sl@0
   514
/**
sl@0
   515
 *
sl@0
   516
 * General logging function for test utils.
sl@0
   517
 *
sl@0
   518
 * @param	"TRefByValue<const TDesC16> aFmt"
sl@0
   519
 *			Printf-style format.
sl@0
   520
 *
sl@0
   521
 * @param	"..."
sl@0
   522
 *			Variable print parameters
sl@0
   523
 *
sl@0
   524
 * @xxxx 
sl@0
   525
 *
sl@0
   526
 */
sl@0
   527
void CTestUtils::Log(TRefByValue<const TDesC16> aFmt, ...)
sl@0
   528
	{
sl@0
   529
sl@0
   530
	VA_LIST aList;
sl@0
   531
	VA_START(aList, aFmt);
sl@0
   532
sl@0
   533
	if(iLogSystem) 
sl@0
   534
		iLogSystem->Log(aFmt, aList);
sl@0
   535
sl@0
   536
	VA_END(aList);
sl@0
   537
	}
sl@0
   538
sl@0
   539
/**
sl@0
   540
 *
sl@0
   541
 * General logging function for test utils, with severity.
sl@0
   542
 *
sl@0
   543
 * @param	"TInt aSeverity"
sl@0
   544
 *			Severity level required to log
sl@0
   545
 *
sl@0
   546
 * @param	"TRefByValue<const TDesC16> aFmt"
sl@0
   547
 *			Printf-style format.
sl@0
   548
 *
sl@0
   549
 * @param	"..."
sl@0
   550
 *			Variable print parameters
sl@0
   551
 *
sl@0
   552
 * @xxxx 
sl@0
   553
 *
sl@0
   554
 */
sl@0
   555
void CTestUtils::Log(TInt /* aSeverity */, TRefByValue<const TDesC16> aFmt, ...)
sl@0
   556
	{
sl@0
   557
	VA_LIST aList;
sl@0
   558
	VA_START(aList, aFmt);
sl@0
   559
sl@0
   560
	// NB : Test Utils log regardless of severity (as they are tied to no suite)
sl@0
   561
	if(iLogSystem) 
sl@0
   562
		iLogSystem->Log(aFmt, aList);
sl@0
   563
sl@0
   564
	VA_END(aList);
sl@0
   565
	}
sl@0
   566
sl@0
   567
/**
sl@0
   568
 *
sl@0
   569
 * Traceable logging function for test utils.
sl@0
   570
 *
sl@0
   571
 * @param	"const TText8* aFile"
sl@0
   572
 *			Source code file name
sl@0
   573
 *
sl@0
   574
 * @param	"TInt aLine"
sl@0
   575
 *			Source code line
sl@0
   576
 *
sl@0
   577
 * @param	"TInt aSeverity"
sl@0
   578
 *			Severity level required to log
sl@0
   579
 *
sl@0
   580
 * @param	"TRefByValue<const TDesC16> aFmt"
sl@0
   581
 *			Printf-style format.
sl@0
   582
 *
sl@0
   583
 * @param	"..."
sl@0
   584
 *			Variable print parameters
sl@0
   585
 *
sl@0
   586
 * @xxxx 
sl@0
   587
 *
sl@0
   588
 */
sl@0
   589
void CTestUtils::LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
sl@0
   590
		TRefByValue<const TDesC16> aFmt,...)
sl@0
   591
	{
sl@0
   592
	VA_LIST aList;
sl@0
   593
	VA_START(aList, aFmt);
sl@0
   594
sl@0
   595
	// NB : Test Utils log regardless of severity (as they are tied to no suite)
sl@0
   596
	if(iLogSystem)
sl@0
   597
		iLogSystem->LogExtra(aFile, aLine, aSeverity, aFmt, aList);
sl@0
   598
sl@0
   599
	VA_END(aList);
sl@0
   600
	}
sl@0
   601
sl@0
   602