os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/t_certstoreactionmemfail.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2005-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 /**
    20  @file
    21 */
    22 
    23 #include "t_certstoreactionmemfail.h"
    24 #include "t_output.h"
    25 #include "t_testhandler.h"
    26 #include "t_testrunner.h"
    27 
    28 CMemFailStart* CMemFailStart::NewL(CConsoleBase& aConsole, 
    29 								   Output& aOut,
    30 								   const TTestActionSpec& aTestActionSpec)
    31 	{
    32 	CMemFailStart* self = CMemFailStart::NewLC(aConsole, aOut, aTestActionSpec);
    33 	CleanupStack::Pop(self);
    34 	return self;
    35 	}
    36 
    37 CMemFailStart* CMemFailStart::NewLC(CConsoleBase& aConsole, 
    38 									Output& aOut,
    39 									const TTestActionSpec& aTestActionSpec)
    40 	{
    41 	CMemFailStart* self = new(ELeave) CMemFailStart(aConsole, aOut);
    42 	CleanupStack::PushL(self);
    43 	self->ConstructL(aTestActionSpec);
    44 	return self;
    45 	}
    46 
    47 CMemFailStart::~CMemFailStart()
    48 	{
    49 	}
    50 
    51 void CMemFailStart::PerformAction(TRequestStatus& aStatus)
    52 	{
    53     iTestHandler->SetTestRunnerL(new (ELeave) COOMTestRunner(iOut));
    54     
    55 	TRequestStatus* status = &aStatus;
    56 	User::RequestComplete(status, KErrNone);
    57 	iResult = ETrue;
    58 	iFinished = ETrue;
    59 	iActionState = EPostrequisite;
    60 	}
    61 
    62 void CMemFailStart::PerformCancel()
    63 	{
    64 	}
    65 
    66 void CMemFailStart::Reset()
    67 	{
    68 	__ASSERT_DEBUG(EFalse, User::Panic(_L("CMemFailStart::Reset()"), 1));
    69 	}
    70 
    71 CMemFailStart::CMemFailStart(CConsoleBase& aConsole, 
    72 							 Output& aOut)
    73     : CTestAction(aConsole, aOut)
    74 	{
    75 	}
    76 
    77 void CMemFailStart::ConstructL(const TTestActionSpec& aTestActionSpec)
    78 	{
    79 	CTestAction::ConstructL(aTestActionSpec);
    80 	}
    81 
    82 void CMemFailStart::DoReportAction()
    83 	{
    84 	iOut.writeString(_L("Starting memory failure sequence..."));
    85 	iOut.writeNewLine();
    86 	iOut.writeNewLine();
    87 	}
    88 
    89 void CMemFailStart::DoCheckResult(TInt /*aError*/)
    90 	{
    91 	}
    92 
    93 CMemFailStop* CMemFailStop::NewL(CConsoleBase& aConsole, 
    94 								 Output& aOut,
    95 								 const TTestActionSpec& aTestActionSpec)
    96 	{
    97 	CMemFailStop* self = CMemFailStop::NewLC(aConsole, aOut, aTestActionSpec);
    98 	CleanupStack::Pop(self);
    99 	return self;
   100 	}
   101 
   102 CMemFailStop* CMemFailStop::NewLC(CConsoleBase& aConsole, 
   103 								  Output& aOut,
   104 								  const TTestActionSpec& aTestActionSpec)
   105 	{
   106 	CMemFailStop* self = new(ELeave) CMemFailStop(aConsole, aOut);
   107 	CleanupStack::PushL(self);
   108 	self->ConstructL(aTestActionSpec);
   109 	return self;
   110 	}
   111 
   112 CMemFailStop::~CMemFailStop()
   113 	{
   114 
   115 	}
   116 
   117 void CMemFailStop::PerformAction(TRequestStatus& aStatus)
   118 	{
   119     iTestHandler->SetTestRunnerL(NULL);
   120     
   121 	TRequestStatus* status = &aStatus;
   122 	User::RequestComplete(status, KErrNone);
   123 	iResult = ETrue;
   124 	iFinished = ETrue;
   125 	iActionState = EPostrequisite;
   126 	}
   127 
   128 void CMemFailStop::PerformCancel()
   129 	{
   130 	}
   131 
   132 void CMemFailStop::Reset()
   133 	{
   134 //	__ASSERT_DEBUG(EFalse, User::Panic(_L("CMemFailStop::Reset()"), 1));
   135 	}
   136 
   137 CMemFailStop::CMemFailStop(CConsoleBase& aConsole, 
   138 						   Output& aOut)
   139     : CTestAction(aConsole, aOut)
   140 	{
   141 	}
   142 
   143 void CMemFailStop::ConstructL(const TTestActionSpec& aTestActionSpec)
   144 	{
   145 	CTestAction::ConstructL(aTestActionSpec);
   146 	}
   147 
   148 void CMemFailStop::DoReportAction()
   149 	{
   150 	iOut.writeString(_L("Stoping memory failure sequence..."));
   151 	iOut.writeNewLine();
   152 	iOut.writeNewLine();
   153 	}
   154 
   155 void CMemFailStop::DoCheckResult(TInt /*aError*/)
   156 	{
   157 	}