os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/t_certstoreactionmemfail.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/t_certstoreactionmemfail.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,157 @@
     1.4 +/*
     1.5 +* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of the License "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +/**
    1.23 + @file
    1.24 +*/
    1.25 +
    1.26 +#include "t_certstoreactionmemfail.h"
    1.27 +#include "t_output.h"
    1.28 +#include "t_testhandler.h"
    1.29 +#include "t_testrunner.h"
    1.30 +
    1.31 +CMemFailStart* CMemFailStart::NewL(CConsoleBase& aConsole, 
    1.32 +								   Output& aOut,
    1.33 +								   const TTestActionSpec& aTestActionSpec)
    1.34 +	{
    1.35 +	CMemFailStart* self = CMemFailStart::NewLC(aConsole, aOut, aTestActionSpec);
    1.36 +	CleanupStack::Pop(self);
    1.37 +	return self;
    1.38 +	}
    1.39 +
    1.40 +CMemFailStart* CMemFailStart::NewLC(CConsoleBase& aConsole, 
    1.41 +									Output& aOut,
    1.42 +									const TTestActionSpec& aTestActionSpec)
    1.43 +	{
    1.44 +	CMemFailStart* self = new(ELeave) CMemFailStart(aConsole, aOut);
    1.45 +	CleanupStack::PushL(self);
    1.46 +	self->ConstructL(aTestActionSpec);
    1.47 +	return self;
    1.48 +	}
    1.49 +
    1.50 +CMemFailStart::~CMemFailStart()
    1.51 +	{
    1.52 +	}
    1.53 +
    1.54 +void CMemFailStart::PerformAction(TRequestStatus& aStatus)
    1.55 +	{
    1.56 +    iTestHandler->SetTestRunnerL(new (ELeave) COOMTestRunner(iOut));
    1.57 +    
    1.58 +	TRequestStatus* status = &aStatus;
    1.59 +	User::RequestComplete(status, KErrNone);
    1.60 +	iResult = ETrue;
    1.61 +	iFinished = ETrue;
    1.62 +	iActionState = EPostrequisite;
    1.63 +	}
    1.64 +
    1.65 +void CMemFailStart::PerformCancel()
    1.66 +	{
    1.67 +	}
    1.68 +
    1.69 +void CMemFailStart::Reset()
    1.70 +	{
    1.71 +	__ASSERT_DEBUG(EFalse, User::Panic(_L("CMemFailStart::Reset()"), 1));
    1.72 +	}
    1.73 +
    1.74 +CMemFailStart::CMemFailStart(CConsoleBase& aConsole, 
    1.75 +							 Output& aOut)
    1.76 +    : CTestAction(aConsole, aOut)
    1.77 +	{
    1.78 +	}
    1.79 +
    1.80 +void CMemFailStart::ConstructL(const TTestActionSpec& aTestActionSpec)
    1.81 +	{
    1.82 +	CTestAction::ConstructL(aTestActionSpec);
    1.83 +	}
    1.84 +
    1.85 +void CMemFailStart::DoReportAction()
    1.86 +	{
    1.87 +	iOut.writeString(_L("Starting memory failure sequence..."));
    1.88 +	iOut.writeNewLine();
    1.89 +	iOut.writeNewLine();
    1.90 +	}
    1.91 +
    1.92 +void CMemFailStart::DoCheckResult(TInt /*aError*/)
    1.93 +	{
    1.94 +	}
    1.95 +
    1.96 +CMemFailStop* CMemFailStop::NewL(CConsoleBase& aConsole, 
    1.97 +								 Output& aOut,
    1.98 +								 const TTestActionSpec& aTestActionSpec)
    1.99 +	{
   1.100 +	CMemFailStop* self = CMemFailStop::NewLC(aConsole, aOut, aTestActionSpec);
   1.101 +	CleanupStack::Pop(self);
   1.102 +	return self;
   1.103 +	}
   1.104 +
   1.105 +CMemFailStop* CMemFailStop::NewLC(CConsoleBase& aConsole, 
   1.106 +								  Output& aOut,
   1.107 +								  const TTestActionSpec& aTestActionSpec)
   1.108 +	{
   1.109 +	CMemFailStop* self = new(ELeave) CMemFailStop(aConsole, aOut);
   1.110 +	CleanupStack::PushL(self);
   1.111 +	self->ConstructL(aTestActionSpec);
   1.112 +	return self;
   1.113 +	}
   1.114 +
   1.115 +CMemFailStop::~CMemFailStop()
   1.116 +	{
   1.117 +
   1.118 +	}
   1.119 +
   1.120 +void CMemFailStop::PerformAction(TRequestStatus& aStatus)
   1.121 +	{
   1.122 +    iTestHandler->SetTestRunnerL(NULL);
   1.123 +    
   1.124 +	TRequestStatus* status = &aStatus;
   1.125 +	User::RequestComplete(status, KErrNone);
   1.126 +	iResult = ETrue;
   1.127 +	iFinished = ETrue;
   1.128 +	iActionState = EPostrequisite;
   1.129 +	}
   1.130 +
   1.131 +void CMemFailStop::PerformCancel()
   1.132 +	{
   1.133 +	}
   1.134 +
   1.135 +void CMemFailStop::Reset()
   1.136 +	{
   1.137 +//	__ASSERT_DEBUG(EFalse, User::Panic(_L("CMemFailStop::Reset()"), 1));
   1.138 +	}
   1.139 +
   1.140 +CMemFailStop::CMemFailStop(CConsoleBase& aConsole, 
   1.141 +						   Output& aOut)
   1.142 +    : CTestAction(aConsole, aOut)
   1.143 +	{
   1.144 +	}
   1.145 +
   1.146 +void CMemFailStop::ConstructL(const TTestActionSpec& aTestActionSpec)
   1.147 +	{
   1.148 +	CTestAction::ConstructL(aTestActionSpec);
   1.149 +	}
   1.150 +
   1.151 +void CMemFailStop::DoReportAction()
   1.152 +	{
   1.153 +	iOut.writeString(_L("Stoping memory failure sequence..."));
   1.154 +	iOut.writeNewLine();
   1.155 +	iOut.writeNewLine();
   1.156 +	}
   1.157 +
   1.158 +void CMemFailStop::DoCheckResult(TInt /*aError*/)
   1.159 +	{
   1.160 +	}