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 contains file utilities which can be called from Test Framework scripts
22 // Test system includes
23 #include <testframework.h>
25 // do not export if Unit Testing
26 #if defined (__TSU_TESTFRAMEWORK__)
34 * Initialise the test utilities.
36 * @param "CLog* aLogSystem"
37 * The logger the test utilities are to use.
42 EXPORT_C CTestUtils* CTestUtils::NewL(CLog* aLogSystem)
44 CTestUtils* self = new(ELeave) CTestUtils;
45 self->Construct(aLogSystem);
51 * Initialise the test utilities (second phase).
53 * @param "CLog* aLogSystem"
54 * The logger the test utilities are to use.
59 void CTestUtils::Construct(CLog* aLogSystem)
61 iLogSystem = aLogSystem;
66 * Run the test utilities inside a trap harness.
68 * @param "const TDesC& aText"
69 * Test string giving the utility to run.
74 EXPORT_C void CTestUtils::RunUtils(const TDesC& aText)
76 TRAPD(r, RunUtilsL(aText));
80 WARN_PRINTF3(_L("Warning: Test Utils : %S left, error %d"), &aText, r);
86 * Run the test utilities inside a trap harness.
88 * @param "const TDesC& aText"
89 * Test string giving the utility to run.
94 void CTestUtils::RunUtilsL(const TDesC& aText)
96 // use Tlex to decode the cmd line
99 // step over the keyword
104 token.Set(lex.NextToken());
106 if (token.FindF( _L("ChangeDir")) == 0)
108 User::Panic(_L("ChangeDir is not supported on EKA2"), KErrNotSupported);
110 else if (token.FindF( _L("CopyFile")) == 0)
113 TPtrC file1 = lex.NextToken();
114 TPtrC file2 = lex.NextToken();
116 CopyFileL(file1, file2);
118 else if (token.FindF( _L("CopyAndInvertFile")) == 0)
121 TPtrC file1 = lex.NextToken();
122 TPtrC file2 = lex.NextToken();
124 CopyAndInvertFileL(file1, file2);
126 else if (token.FindF( _L("MkDir")) == 0)
129 token.Set(lex.NextToken());
133 else if (token.FindF( _L("Delete")) == 0)
136 token.Set(lex.NextToken());
140 else if (token.FindF( _L("MakeReadWrite")) == 0)
143 token.Set(lex.NextToken());
145 MakeReadWriteL(token);
149 ERR_PRINTF2(_L("Failed to decode RUN_UTILS command : %S"), &aText);
150 User::Leave(KErrNotFound);
157 * Test utility : make new directory
159 * @param "const TDesC& aDirname"
160 * New directory path.
165 void CTestUtils::MakeDirL(const TDesC& aDirname)
167 // parse the filenames
168 _LIT(KDefault,"C:\\");
170 TInt returnCode = fullFileName.Set(aDirname, &KDefault, NULL);
171 if (returnCode != KErrNone)
173 TPtrC errortxt = CLog::EpocErrorToText(returnCode);
174 ERR_PRINTF3(_L("Failed to decode full path name %S - %S"),
175 &fullFileName.FullName(),
177 User::Leave(returnCode);
180 // connect to file server
181 returnCode = iFs.Connect();
182 if (returnCode != KErrNone)
184 ERR_PRINTF1(_L("Error connecting to file server"));
185 User::Leave(returnCode);
188 // now create the new directory
189 returnCode = iFs.MkDirAll(fullFileName.DriveAndPath());
190 if ((returnCode != KErrNone) && (returnCode != KErrAlreadyExists))
192 TPtrC errortxt = CLog::EpocErrorToText(returnCode);
194 ERR_PRINTF3(_L("Error %S making directory %S"),
196 &fullFileName.FullName());
198 User::Leave(returnCode);
200 if(returnCode == KErrNone)
202 // display full (including path) file name
203 INFO_PRINTF2( _L("Made directory %S"), &fullFileName.FullName());
207 INFO_PRINTF2( _L("directory already exists %S"), &fullFileName.FullName());
215 * Test utility : copy a file
217 * @param "const TDesC& aOld"
220 * @param "const TDesC& aNew"
226 void CTestUtils::CopyFileL (const TDesC& aOld,const TDesC& aNew)
228 // connect to file server
229 TInt returnCode = iFs.Connect();
230 if (returnCode != KErrNone)
232 ERR_PRINTF1(_L("Error connecting to file server"));
233 User::Leave(returnCode);
236 // create a file manager
237 CFileMan* fileMan = CFileMan::NewL(iFs);
238 CleanupStack::PushL(fileMan);
240 // parse the filenames
242 returnCode = parseSource.Set(aOld, NULL, NULL);
243 if (returnCode != KErrNone)
245 TPtrC errortxt = CLog::EpocErrorToText(returnCode);
246 ERR_PRINTF3( _L("Failed to parse %S - %S"),
250 User::Leave(returnCode);
253 // parse the filenames
255 returnCode = parseTarget.Set(aNew, NULL, NULL);
256 if (returnCode != KErrNone)
258 TPtrC errortxt = CLog::EpocErrorToText(returnCode);
259 ERR_PRINTF3(_L("Failed to parse %S - %S"),
263 User::Leave(returnCode);
267 returnCode = fileMan->Copy(parseSource.FullName(),
268 parseTarget.FullName(),
269 CFileMan::EOverWrite | CFileMan::ERecurse);
271 if (returnCode != KErrNone)
273 TPtrC errortxt = CLog::EpocErrorToText(returnCode);
275 ERR_PRINTF4(_L("Failed to copy %S to %S - %S"),
276 &parseSource.FullName(),
277 &parseTarget.FullName(),
280 User::Leave(returnCode);
283 INFO_PRINTF3(_L("Copied file from %S to %S"),
284 &parseSource.FullName(),
285 &parseTarget.FullName());
288 CleanupStack::PopAndDestroy(fileMan);
294 * Test utility : invert a file and copy it to a tartget file
296 * @param "const TDesC& aOld"
299 * @param "const TDesC& aNew"
301 * Will contain the inverted file
307 void CTestUtils::CopyAndInvertFileL (const TDesC& aOld,const TDesC& aNew)
310 TRAPD(error, DoCopyAndInvertL(aOld, aNew));
312 if (error != KErrNone)
314 TPtrC errortxt = CLog::EpocErrorToText(error);
315 ERR_PRINTF2(_L("Failed to copy Files - %S"), &errortxt);
326 * Test utility : Do the invert and copy of a source file
327 * into a target file.
329 * @param "const TDesC& aOld"
332 * @param "const TDesC& aNew"
334 * Will contain the inverted file
340 void CTestUtils::DoCopyAndInvertL (const TDesC& aOld,const TDesC& aNew)
342 // connect to file server
343 TInt returnCode = iFs.Connect();
344 if (returnCode != KErrNone)
346 ERR_PRINTF1(_L("Error connecting to file server"));
347 User::Leave(returnCode);
349 CleanupClosePushL(iFs);
351 // parse the filenames
353 User::LeaveIfError(parseSource.Set(aOld, NULL, NULL));
355 // parse the filenames
357 User::LeaveIfError(parseTarget.Set(aNew, NULL, NULL));
361 // open the source file for reading
362 User::LeaveIfError(sourceFile.Open(iFs, parseSource.FullName(), EFileRead));
363 CleanupClosePushL(sourceFile);
367 // open the target file for writing
368 User::LeaveIfError(targetFile.Replace(iFs, parseTarget.FullName(), EFileWrite));
369 CleanupClosePushL(targetFile);
371 const TInt KSizeOfInvertBuf = 256;
373 // Buffers used for read,invert and write to the target file
374 TBuf8<KSizeOfInvertBuf> invertBuffer;
375 TInt8 byteBuf;//A temp byte size buffer
377 //Invert the source file and copy it into the target file
380 User::LeaveIfError(sourceFile.Read(invertBuffer));
382 for (TInt index=0; index<invertBuffer.Length(); index++)
384 byteBuf = invertBuffer[index];
385 byteBuf ^= 0xFF; //inverting the buf bits
386 invertBuffer[index] = byteBuf;
388 User::LeaveIfError(targetFile.Write(invertBuffer));
390 while (invertBuffer.Length() != 0);
393 // Flush the data to the target file
394 User::LeaveIfError(targetFile.Flush());
396 // display full (including path) file name
397 INFO_PRINTF3(_L("Copied and Inverted successfully file %S to file %S"),
398 &parseSource.FullName(),
399 &parseTarget.FullName());
402 CleanupStack::PopAndDestroy(3, &iFs);
412 * Test utility : delete a file
414 * @param "const TDesC& aFile"
415 * File to be deleted.
420 void CTestUtils::DeleteFileL (const TDesC& aFile)
422 // parse the filenames
423 _LIT(KDefault,"C:\\xxxxx.xxx");
425 TInt returnCode = fullFileName.Set(aFile, &KDefault, NULL);
426 if (returnCode != KErrNone)
428 TPtrC errortxt = CLog::EpocErrorToText(returnCode);
429 ERR_PRINTF3(_L("Failed to decode full path name %S - %S"),
430 &fullFileName.FullName(),
432 User::Leave(returnCode);
435 // connect to file server
436 returnCode = iFs.Connect();
437 if (returnCode != KErrNone)
439 ERR_PRINTF1(_L("Error connecting to file server"));
440 User::Leave(returnCode);
444 returnCode = iFs.Delete(fullFileName.FullName());
445 if (returnCode != KErrNone)
447 TPtrC errortxt = CLog::EpocErrorToText(returnCode);
448 ERR_PRINTF3(_L("Error %S deleting %S"),
450 &fullFileName.FullName());
452 User::Leave(returnCode);
455 // display full (including path) file name
456 INFO_PRINTF2(_L("Deleted %S"), &fullFileName.FullName());
463 * Test utility : make a file read-write (clear the read-only attribute)
465 * @param "const TDesC& aFile"
466 * File to be made read-write.
471 void CTestUtils::MakeReadWriteL (const TDesC& aFile)
473 // parse the filenames
474 _LIT(KDefault,"C:\\xxxxx.xxx");
476 TInt returnCode = fullFileName.Set(aFile, &KDefault, NULL);
477 if (returnCode != KErrNone)
479 TPtrC errortxt = CLog::EpocErrorToText(returnCode);
480 ERR_PRINTF3(_L("Failed to decode full path name %S - %S"),
481 &fullFileName.FullName(),
483 User::Leave(returnCode);
486 // connect to file server
487 returnCode = iFs.Connect();
488 if (returnCode != KErrNone)
490 ERR_PRINTF1(_L("Error connecting to file server"));
491 User::Leave(returnCode);
495 returnCode = iFs.SetAtt(fullFileName.FullName(), 0, KEntryAttReadOnly);
498 if (returnCode != KErrNone )
500 TPtrC errortxt = CLog::EpocErrorToText(returnCode);
502 ERR_PRINTF3(_L("Error %S making %S read-write"),
504 &fullFileName.FullName());
506 User::Leave(returnCode);
509 // display full (including path) file name
510 INFO_PRINTF2(_L("Made %S read-write"), &fullFileName.FullName());
516 * General logging function for test utils.
518 * @param "TRefByValue<const TDesC16> aFmt"
519 * Printf-style format.
522 * Variable print parameters
527 void CTestUtils::Log(TRefByValue<const TDesC16> aFmt, ...)
531 VA_START(aList, aFmt);
534 iLogSystem->Log(aFmt, aList);
541 * General logging function for test utils, with severity.
543 * @param "TInt aSeverity"
544 * Severity level required to log
546 * @param "TRefByValue<const TDesC16> aFmt"
547 * Printf-style format.
550 * Variable print parameters
555 void CTestUtils::Log(TInt /* aSeverity */, TRefByValue<const TDesC16> aFmt, ...)
558 VA_START(aList, aFmt);
560 // NB : Test Utils log regardless of severity (as they are tied to no suite)
562 iLogSystem->Log(aFmt, aList);
569 * Traceable logging function for test utils.
571 * @param "const TText8* aFile"
572 * Source code file name
574 * @param "TInt aLine"
577 * @param "TInt aSeverity"
578 * Severity level required to log
580 * @param "TRefByValue<const TDesC16> aFmt"
581 * Printf-style format.
584 * Variable print parameters
589 void CTestUtils::LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
590 TRefByValue<const TDesC16> aFmt,...)
593 VA_START(aList, aFmt);
595 // NB : Test Utils log regardless of severity (as they are tied to no suite)
597 iLogSystem->LogExtra(aFile, aLine, aSeverity, aFmt, aList);