os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/t_testaction.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_testaction.h"
    20 
    21 #include "t_output.h"
    22 #include "t_input.h"
    23 #include "t_testactionspec.h"
    24 #include "tScriptSetup.h"
    25 #include "t_testhandler.h"
    26 
    27 EXPORT_C CTestAction::~CTestAction()
    28 	{
    29 	delete iNameInfo;
    30 	}
    31 
    32 EXPORT_C void CTestAction::PerformPrerequisite(TRequestStatus& aStatus)
    33 	{
    34 	DoPerformPrerequisite(aStatus);
    35 	}
    36 
    37 EXPORT_C void CTestAction::PerformPostrequisite(TRequestStatus& aStatus)
    38 	{
    39 	DoPerformPostrequisite(aStatus);
    40 	}
    41 
    42 EXPORT_C void CTestAction::AfterOOMFailure()
    43 	{
    44 	}
    45 
    46 TBool CTestAction::Finished()
    47 	{
    48 	return iFinished;
    49 	}
    50 
    51 EXPORT_C void CTestAction::ReportAction()
    52 	{
    53 	iOut.writeString(*iNameInfo);
    54 	iOut.writeNewLine();
    55 	DoReportAction();
    56 	}
    57 
    58 EXPORT_C void CTestAction::CheckResult(TInt aError)
    59 {
    60 
    61 	// DoCheckResult must update iResult 
    62 	//iResult = (iResult && iExpectedResult) || (!iResult && !iExpectedResult);
    63 	DoCheckResult(aError);
    64 	
    65 	if (iKnownFailure)		//	Expecting an error because of known
    66 		iResult = ETrue;	//	defect current deferred etc
    67 	
    68 	iOut.writeString(_L("\tStatus : "));
    69 	iOut.writeError(aError);
    70 	iOut.writeString(_L(" ("));
    71 	iOut.writeNum(aError);
    72 	iOut.writeString(_L(")"));
    73 	iOut.writeNewLine();
    74 	iOut.writeString(_L("\tTest outcome : "));
    75 	if (iResult)
    76 		{
    77 		iOut.writeString(_L("PASSED"));
    78 		}
    79 	else
    80 		{
    81 		iOut.writeString(_L("FAILED"));
    82 		}
    83 	iOut.writeNewLine();
    84 	iOut.writeNewLine();
    85 	}
    86 
    87 EXPORT_C void CTestAction::PerformCancel()
    88 	{
    89 	}
    90 
    91 EXPORT_C void CTestAction::Reset()
    92 	{
    93 	}
    94 
    95 EXPORT_C CTestAction::CTestAction(CConsoleBase& aConsole,
    96 								  Output& aOut)
    97 : iFinished(EFalse), iKnownFailure(EFalse), iConsole(aConsole), iOut(aOut)
    98 	{
    99 	}
   100 
   101 EXPORT_C void CTestAction::ConstructL(const TTestActionSpec& aTestActionSpec)
   102 {
   103 	iNameInfo = aTestActionSpec.iActionName.AllocL();
   104 	
   105 	iTefScript = aTestActionSpec.iTefScript;
   106 	
   107 	TRAPD(err, iExpectedResult = Input::ParseElementBoolL(
   108 		aTestActionSpec.iActionResult, _L8("<result>")) );
   109 	if(err == KErrArgument)
   110 		{
   111 		//if there is no <result> field or it has invalid text then we assume
   112 		//it's a "normal" test.  ie it must be true to pass.
   113 		iExpectedResult = ETrue; 
   114 		}
   115 	else if(err != KErrNone)
   116 		{
   117 		User::Leave(err);
   118 		}
   119 	
   120 //	If there's a known defect because of deferred defects etc, the script
   121 //	will flag it.  We record as much here and, when result is returned, check
   122 //	against known failure and adjust result accordingly.  This should only be
   123 //	used for reported defects that have been deferred etc rather than as a 
   124 //	workaround for test failures.  The failure will be reported in a separate
   125 //	part of the log file so it's not overlooked entirely.
   126 	
   127 	_LIT8(KTrue, "ETrue");
   128 	// _LIT8(KFalse, "EFalse");
   129 
   130 	TInt pos = 0; 
   131 	err = KErrNone;
   132 	
   133 	TPtrC8 knownFailure = Input::ParseElement(aTestActionSpec.iActionBody, KKnownDefectStart, KKnownDefectEnd, pos, err);	
   134 	if (knownFailure.Compare(KTrue)==0)
   135 		iKnownFailure = ETrue;
   136 	else	//	Assume if it's not true it's false or not there which == false
   137 		iKnownFailure = EFalse;
   138 }
   139 
   140 
   141 EXPORT_C void CTestAction::DoPerformPrerequisite(TRequestStatus& aStatus)
   142 	{
   143 	iActionState = EAction;
   144 	TRequestStatus* status = &aStatus;
   145 	User::RequestComplete(status, KErrNone);
   146 	}
   147 
   148 EXPORT_C void CTestAction::DoPerformPostrequisite(TRequestStatus& aStatus)
   149 	{
   150 	TRequestStatus* status = &aStatus;
   151 	// pass on any error from peform action
   152 	User::RequestComplete(status, aStatus.Int()); 
   153 	iFinished = ETrue;
   154 	}
   155 
   156 EXPORT_C void CTestAction::FailTestNow(TRequestStatus& aStatus)
   157 	{
   158 	iActionState=EPostrequisite;
   159 	iResult=EFalse;
   160 	TRequestStatus* status = &aStatus;
   161 	User::RequestComplete(status, KErrNone);
   162 	}
   163 
   164 
   165 EXPORT_C CTestAction::TScriptError CTestAction::ScriptError(void)
   166 	{
   167 	return(iScriptError);
   168 	}
   169 
   170 EXPORT_C void CTestAction::SetScriptError(const TScriptError &aScriptError, const TDesC& aError)
   171 	{
   172 	iScriptError = aScriptError;
   173 	aScriptErrorDescription.Copy(aError); 
   174 	};
   175 
   176 EXPORT_C void CTestAction::ScriptError(TDes& aError)
   177 	{
   178 	aError.Copy(aScriptErrorDescription);
   179 	};
   180 
   181 void CTestAction::SetTestHandler(CTestHandler& aTestHandler)
   182 	{
   183 	iTestHandler = &aTestHandler;
   184 	}
   185 
   186 EXPORT_C CBase* CTestAction::SharedData() const
   187 	{
   188 	ASSERT(iTestHandler);
   189 	return iTestHandler->SharedData();
   190 	}
   191 
   192 EXPORT_C void CTestAction::SetSharedData(CBase* aData)
   193 	{
   194 	ASSERT(iTestHandler);
   195 	iTestHandler->SetSharedData(aData);
   196 	}
   197 
   198 EXPORT_C void CTestAction::ResetState()
   199 	{
   200 	}