os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/t_testhandler.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of the License "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 #include "t_testhandler.h"
    20 #include "ttesthandlersettings.h"
    21 #include "t_output.h"
    22 #include "t_testaction.h"
    23 #include "t_testsetup.h"
    24 #include "tTestSpec.h"
    25 #include "t_testrunner.h"
    26 
    27 
    28 TTestSummary::TTestSummary() :
    29 	iTestsRun(0), iTestsFailed(0)
    30 	{
    31 	}
    32 
    33 void TTestSummary::PrintL(Output& aOut)
    34 	{
    35 	aOut.write(_L("%d tests failed out of %d\n"), iTestsFailed, iTestsRun);
    36 	aOut.write(_L("\r\n</pre></body></html>\r\n"));
    37 	}
    38 
    39 TBool TTestSummary::AllTestsPassed()
    40 	{
    41 	return iTestsRun > 0 && iTestsFailed == 0;
    42 	}
    43 
    44 EXPORT_C CTestHandler* CTestHandler::NewLC(RFs& aFs,
    45 										   MTestSpec& aTestSpec,
    46 										   CTestHandlerSettings& aSettings,
    47 										   CConsoleBase* aConsole,
    48 										   Output* aOut)
    49 	{
    50 	CTestHandler* self = new(ELeave) CTestHandler(aFs, aTestSpec, aConsole, aOut);
    51 	CleanupStack::PushL(self);
    52 	self->ConstructL(aSettings);
    53 	return self;
    54 	}
    55 
    56 CTestHandler::~CTestHandler()
    57 	{
    58 	delete iSettings;
    59 	delete iScheduler;
    60 	delete iSharedData;
    61     delete iTestRunner;
    62     delete iNextTestRunner;
    63 
    64 	iFailedTests.Reset();
    65 	iFailedTestNames.ResetAndDestroy();
    66 	iKnownDefects.ResetAndDestroy();
    67 	}
    68 
    69 CTestHandler::CTestHandler(RFs& aFs,
    70 						   MTestSpec& aTestSpec,
    71 						   CConsoleBase* aConsole,
    72 						   Output* aOut) :
    73 	iFs(aFs), iConsole(aConsole), iOut(aOut), iTestSpec(aTestSpec)
    74 	{
    75 	}
    76 
    77 void CTestHandler::ConstructL(CTestHandlerSettings& aSettings) 
    78 	{
    79 	iSettings = CTestHandlerSettings::NewL(aSettings);
    80 	iScheduler = new(ELeave) CActiveScheduler;
    81 	CActiveScheduler::Install(iScheduler);
    82 
    83 	// Set up test handler based on command line argument
    84 	if (aSettings.iOOM)
    85 		{
    86 		SetTestRunnerL(new (ELeave) COOMTestRunner(*iOut));
    87 		}
    88 	else if (aSettings.iCancel)
    89 		{
    90 		SetTestRunnerL(new (ELeave) CCancelTestRunner(*iOut));
    91 		}
    92 	else
    93 		{		
    94 		SetTestRunnerL(NULL);
    95 		}
    96 	}
    97 
    98 TTestSummary CTestHandler::Summary()
    99 	{
   100 	TTestSummary result;
   101 	result.iTestsRun = iActionCount;
   102 	result.iTestsFailed = iFailedTests.Count();
   103 	return result;
   104 	}
   105 
   106 EXPORT_C void CTestHandler::RunTestsL()
   107  {
   108 	
   109 	TBuf8<32>timeBuf;
   110 	TTime time;
   111 	time.UniversalTime();
   112 	TDateTime dateTime = time.DateTime();
   113 	_LIT8(KDateFormat,"%02d:%02d:%02d:%03d "); 
   114 	timeBuf.AppendFormat(KDateFormat,dateTime.Hour(),dateTime.Minute(),dateTime.Second(),(dateTime.MicroSecond()/1000));
   115 
   116 	iActionNumber = 0;
   117     CTestAction* action;
   118     HBufC8* currentID=NULL;
   119     HBufC8* previousID=NULL;
   120     TBool testCaseResult=ETrue;
   121     TBool isTefScript = EFalse;
   122     while(iTestSpec.GetNextTest(action))
   123         {
   124         iActionCount++;
   125         iActionNumber++;
   126         isTefScript = action->iTefScript;
   127 //        action->iTefScript = EFalse;
   128         delete previousID;
   129         previousID = currentID;
   130         currentID = action->iNameInfo->AllocLC();
   131         
   132         if ( (previousID == NULL) || (*currentID != *previousID) )
   133         	{
   134         	if (previousID != NULL)
   135         		{  
   136         				
   137         		
   138         		if(action->iTefScript)
   139         			{
   140         			iOut->writeString(timeBuf);
   141         			iOut->writeString(_L("Command = END_TESTCASE "));
   142         			}
   143 	    		iOut->writeString(*previousID);
   144 	    		if(action->iTefScript)
   145 	    			{
   146 	    			iOut->writeString(_L(" ***TestCaseResult = "));
   147 	    			}
   148 
   149 	    		if (testCaseResult)
   150 	    			{
   151 	    			iOut->writeString(_L("PASS"));
   152 	    			}
   153 	    		else
   154 	    			{
   155 	    			iOut->writeString(_L("FAIL"));
   156 	    			}
   157 		    	iOut->writeString(_L("\r\n"));
   158 		    	iOut->writeString(_L("\r\n"));
   159         		}
   160         	
   161         	
   162         	if(action->iTefScript)
   163         		{
   164         		iOut->writeString(timeBuf);
   165     	        iOut->writeString(_L("Command = START_TESTCASE  "));
   166         		}
   167 	    	iOut->writeString(*(currentID));
   168 	    	iOut->writeString(_L("\r\n"));
   169 	    	testCaseResult = ETrue;
   170         	}
   171        
   172         TRAPD(err, RunTestL(action));
   173         if (!action->iResult)
   174         	{
   175         	testCaseResult = EFalse;
   176         	}
   177         if (err != KErrNone)
   178             {
   179             FailTestL(action, EFailInTestHandler, err);
   180             }
   181         CleanupStack::Pop(currentID);
   182 	    }
   183    
   184     if (currentID != NULL)
   185     	{    	
   186     	    	
   187 		
   188 		if(isTefScript)
   189 			{
   190 			iOut->writeString(timeBuf);
   191 			iOut->writeString(_L("Command = END_TESTCASE "));
   192 			}
   193 		iOut->writeString(*currentID);
   194 		if(isTefScript)
   195 			{
   196 			iOut->writeString(_L(" ***TestCaseResult = "));
   197 			}
   198 		
   199 		if (testCaseResult)
   200 			{
   201 			iOut->writeString(_L("PASS"));
   202 			}
   203 		else
   204 			{
   205 			iOut->writeString(_L("FAIL"));
   206 			}
   207 		iOut->writeString(_L("\r\n"));
   208 		iOut->writeString(_L("\r\n"));
   209 		}	
   210 	delete previousID;
   211 	delete currentID;
   212     
   213     DisplaySummary();
   214  }
   215 
   216 
   217 
   218 void CTestHandler::RunTestL(CTestAction* aAction)
   219     {
   220     // If the last test set a new test runner, install it here
   221     if (iNextTestRunner)
   222         {
   223         delete iTestRunner;
   224         iTestRunner = iNextTestRunner;
   225 		iNextTestRunner = NULL;
   226         }
   227 
   228     iOut->writeString(_L("Test "));
   229     iOut->writeNum(iActionNumber);
   230     iOut->writeNewLine();
   231     
   232     if (iActionNumber > 1)
   233 		{
   234 		iConsole->Printf(_L(", "));
   235 		}
   236 	iConsole->Printf(_L("%d: "), iActionNumber);
   237 
   238     aAction->ReportAction();
   239     aAction->SetTestHandler(*this); 
   240 
   241     TInt preErr = iTestRunner->PerformPrerequisiteL(aAction);
   242     if ((preErr != KErrNone) && !aAction->iResult)
   243         {
   244         FailTestL(aAction, EFailInPrerequisite, preErr);
   245         return;
   246         }
   247 	TInt actionErr = 0;
   248 	if (preErr == KErrNone)
   249 		{
   250 		actionErr = iTestRunner->PerformActionL(aAction);
   251 		}
   252     TInt postErr = iTestRunner->PerformPostrequisiteL(aAction, actionErr);
   253 	// investiage if passing actionErr would make more sense here
   254     aAction->CheckResult(postErr);    
   255     if (!aAction->iResult)
   256         {
   257         FailTestL(aAction, EFailInAction, actionErr);
   258         return;
   259         }
   260 
   261 	iConsole->Printf(_L("passed"));
   262     }
   263 
   264 const TDesC& CTestHandler::GetFailLocationName(TTestFailLocation aLoc)
   265     {
   266     _LIT(KTestHandler, "test handler");
   267     _LIT(KPrerequisite, "prerequisite");
   268     _LIT(KTestAction, "test action");
   269 
   270     const TDesC* result = NULL;
   271 
   272     switch (aLoc)
   273         {
   274         case EFailInTestHandler:
   275             result = &KTestHandler;
   276             break;
   277         case EFailInPrerequisite:
   278             result = &KPrerequisite;
   279             break;
   280         case EFailInAction:
   281             result = &KTestAction;
   282             break;
   283         }
   284     
   285     ASSERT(result);
   286     return *result;
   287     }
   288 
   289 void CTestHandler::FailTestL(CTestAction* aAction, TTestFailLocation aLoc, TInt aErr)
   290     {
   291     iOut->writeString(_L("Test failed in "));
   292     iOut->writeString(GetFailLocationName(aLoc));
   293     iOut->writeString(_L(": "));
   294     iOut->writeNum(aErr);
   295     iOut->writeNewLine();
   296     
   297 	iConsole->Printf(_L("failed"));
   298 
   299 	AppendFailedTestL(iActionNumber, *aAction->iNameInfo);
   300     if(aAction->ScriptError() == CTestAction::EFileNotFound)
   301         {
   302         TBuf<KMaxErrorSize> scriptError;
   303         aAction->ScriptError(scriptError);
   304         iOut->writeString(_L("File Not Found \""));
   305         iOut->writeString(scriptError);
   306         iOut->writeString(_L("\" in test "));
   307         iOut->writeNum(iActionNumber);
   308         iOut->writeNewLine();
   309         }
   310 
   311     if (aAction->iKnownFailure)
   312         {//	Expecting a failure because of known defect - record details
   313         HBufC* name=HBufC::NewLC(aAction->iNameInfo->Length());
   314         name->Des().Copy(*(aAction->iNameInfo));
   315         User::LeaveIfError(iKnownDefects.Append(name));
   316         CleanupStack::Pop(name);
   317         }
   318     }
   319 
   320 void CTestHandler::AppendFailedTestL(TInt aIndex, const TDesC8& aName)
   321 	{
   322 	iFailedTests.Append(aIndex);
   323     HBufC* name=HBufC::NewLC(aName.Length());
   324     name->Des().Copy(aName);
   325 	User::LeaveIfError(iFailedTestNames.Append(name));
   326     CleanupStack::Pop(name);
   327 	}
   328 	
   329 void CTestHandler::DisplaySummary()
   330 	{
   331 	//Display the RTest information
   332 	iConsole->Printf(_L("\n"));
   333 
   334 //	Log the details of tests that failed because of known (deferred) defects
   335 	TInt theFailCount = iKnownDefects.Count();
   336 	if (theFailCount > 0)
   337 	{
   338 		iOut->writeNewLine();
   339 		iOut->writeString(_L("----------------------------------------------------------------------------------"));
   340 		iOut->writeNewLine();
   341 		iOut->writeString(_L("These tests may not pass because of known defects details of which are given below:"));
   342 		iOut->writeNewLine();
   343 		iOut->writeNewLine();
   344 		
   345 		TInt index = 0;
   346 		for (; index<theFailCount; index++)
   347 		{
   348 			iOut->writeString(*iKnownDefects[index]);
   349 			iOut->writeNewLine();
   350 		}
   351 		iOut->writeString(_L("----------------------------------------------------------------------------------"));
   352 		iOut->writeNewLine();
   353 		iOut->writeNewLine();
   354 	}
   355 
   356 	// Display the failed tests
   357 	TInt iEnd = iFailedTests.Count();
   358 	if (iEnd!=0)
   359 		{
   360 		iOut->writeString(_L(" Failed tests:-"));
   361 		iOut->writeNewLine();
   362 		for (TInt i = 0; i < iEnd; i++)
   363 			{
   364 			iOut->writeNum(iFailedTests[i]);
   365 			iOut->writeSpaces(2);
   366 			iOut->writeString(*iFailedTestNames[i]);
   367 			iOut->writeNewLine();
   368 			}
   369 		iOut->writeNewLine();
   370 		}
   371 	 
   372 	// Summary line is now printed in CTestSetup
   373 	}
   374 
   375 CBase* CTestHandler::SharedData() const
   376 	{
   377 	return iSharedData;
   378 	}
   379 
   380 void CTestHandler::SetSharedData(CBase* aData)
   381 	{
   382 	iSharedData = aData;
   383 	}
   384 
   385 EXPORT_C void CTestHandler::SetTestRunnerL(CTestRunner *aTestRunner)
   386     {
   387     /* We can't set iTestRunner directly, as we may be called while we're inside
   388      * one of its methods. */
   389 
   390 	// This method can be called twice in a row, eg if the -o option is used
   391 	if (iNextTestRunner)
   392 		{
   393 		delete iNextTestRunner;
   394 		iNextTestRunner = NULL;
   395 		}
   396 	
   397     iNextTestRunner = aTestRunner ? aTestRunner : new (ELeave) CTestRunner(*iOut);
   398     }
   399 
   400 void CTestHandler::SetHeapMark(TInt aAllocCount)
   401     {
   402     iHeapMark = aAllocCount;
   403     }
   404 
   405 TInt CTestHandler::HeapMark()
   406     {
   407     return iHeapMark;
   408     }