os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/t_certstoreactionmemfail.cpp
Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
23 #include "t_certstoreactionmemfail.h"
25 #include "t_testhandler.h"
26 #include "t_testrunner.h"
28 CMemFailStart* CMemFailStart::NewL(CConsoleBase& aConsole,
30 const TTestActionSpec& aTestActionSpec)
32 CMemFailStart* self = CMemFailStart::NewLC(aConsole, aOut, aTestActionSpec);
33 CleanupStack::Pop(self);
37 CMemFailStart* CMemFailStart::NewLC(CConsoleBase& aConsole,
39 const TTestActionSpec& aTestActionSpec)
41 CMemFailStart* self = new(ELeave) CMemFailStart(aConsole, aOut);
42 CleanupStack::PushL(self);
43 self->ConstructL(aTestActionSpec);
47 CMemFailStart::~CMemFailStart()
51 void CMemFailStart::PerformAction(TRequestStatus& aStatus)
53 iTestHandler->SetTestRunnerL(new (ELeave) COOMTestRunner(iOut));
55 TRequestStatus* status = &aStatus;
56 User::RequestComplete(status, KErrNone);
59 iActionState = EPostrequisite;
62 void CMemFailStart::PerformCancel()
66 void CMemFailStart::Reset()
68 __ASSERT_DEBUG(EFalse, User::Panic(_L("CMemFailStart::Reset()"), 1));
71 CMemFailStart::CMemFailStart(CConsoleBase& aConsole,
73 : CTestAction(aConsole, aOut)
77 void CMemFailStart::ConstructL(const TTestActionSpec& aTestActionSpec)
79 CTestAction::ConstructL(aTestActionSpec);
82 void CMemFailStart::DoReportAction()
84 iOut.writeString(_L("Starting memory failure sequence..."));
89 void CMemFailStart::DoCheckResult(TInt /*aError*/)
93 CMemFailStop* CMemFailStop::NewL(CConsoleBase& aConsole,
95 const TTestActionSpec& aTestActionSpec)
97 CMemFailStop* self = CMemFailStop::NewLC(aConsole, aOut, aTestActionSpec);
98 CleanupStack::Pop(self);
102 CMemFailStop* CMemFailStop::NewLC(CConsoleBase& aConsole,
104 const TTestActionSpec& aTestActionSpec)
106 CMemFailStop* self = new(ELeave) CMemFailStop(aConsole, aOut);
107 CleanupStack::PushL(self);
108 self->ConstructL(aTestActionSpec);
112 CMemFailStop::~CMemFailStop()
117 void CMemFailStop::PerformAction(TRequestStatus& aStatus)
119 iTestHandler->SetTestRunnerL(NULL);
121 TRequestStatus* status = &aStatus;
122 User::RequestComplete(status, KErrNone);
125 iActionState = EPostrequisite;
128 void CMemFailStop::PerformCancel()
132 void CMemFailStop::Reset()
134 // __ASSERT_DEBUG(EFalse, User::Panic(_L("CMemFailStop::Reset()"), 1));
137 CMemFailStop::CMemFailStop(CConsoleBase& aConsole,
139 : CTestAction(aConsole, aOut)
143 void CMemFailStop::ConstructL(const TTestActionSpec& aTestActionSpec)
145 CTestAction::ConstructL(aTestActionSpec);
148 void CMemFailStop::DoReportAction()
150 iOut.writeString(_L("Stoping memory failure sequence..."));
155 void CMemFailStop::DoCheckResult(TInt /*aError*/)