sl@0: /* sl@0: * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of the License "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: /** sl@0: @file sl@0: */ sl@0: sl@0: #include "t_certstoreactionmemfail.h" sl@0: #include "t_output.h" sl@0: #include "t_testhandler.h" sl@0: #include "t_testrunner.h" sl@0: sl@0: CMemFailStart* CMemFailStart::NewL(CConsoleBase& aConsole, sl@0: Output& aOut, sl@0: const TTestActionSpec& aTestActionSpec) sl@0: { sl@0: CMemFailStart* self = CMemFailStart::NewLC(aConsole, aOut, aTestActionSpec); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: CMemFailStart* CMemFailStart::NewLC(CConsoleBase& aConsole, sl@0: Output& aOut, sl@0: const TTestActionSpec& aTestActionSpec) sl@0: { sl@0: CMemFailStart* self = new(ELeave) CMemFailStart(aConsole, aOut); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(aTestActionSpec); sl@0: return self; sl@0: } sl@0: sl@0: CMemFailStart::~CMemFailStart() sl@0: { sl@0: } sl@0: sl@0: void CMemFailStart::PerformAction(TRequestStatus& aStatus) sl@0: { sl@0: iTestHandler->SetTestRunnerL(new (ELeave) COOMTestRunner(iOut)); sl@0: sl@0: TRequestStatus* status = &aStatus; sl@0: User::RequestComplete(status, KErrNone); sl@0: iResult = ETrue; sl@0: iFinished = ETrue; sl@0: iActionState = EPostrequisite; sl@0: } sl@0: sl@0: void CMemFailStart::PerformCancel() sl@0: { sl@0: } sl@0: sl@0: void CMemFailStart::Reset() sl@0: { sl@0: __ASSERT_DEBUG(EFalse, User::Panic(_L("CMemFailStart::Reset()"), 1)); sl@0: } sl@0: sl@0: CMemFailStart::CMemFailStart(CConsoleBase& aConsole, sl@0: Output& aOut) sl@0: : CTestAction(aConsole, aOut) sl@0: { sl@0: } sl@0: sl@0: void CMemFailStart::ConstructL(const TTestActionSpec& aTestActionSpec) sl@0: { sl@0: CTestAction::ConstructL(aTestActionSpec); sl@0: } sl@0: sl@0: void CMemFailStart::DoReportAction() sl@0: { sl@0: iOut.writeString(_L("Starting memory failure sequence...")); sl@0: iOut.writeNewLine(); sl@0: iOut.writeNewLine(); sl@0: } sl@0: sl@0: void CMemFailStart::DoCheckResult(TInt /*aError*/) sl@0: { sl@0: } sl@0: sl@0: CMemFailStop* CMemFailStop::NewL(CConsoleBase& aConsole, sl@0: Output& aOut, sl@0: const TTestActionSpec& aTestActionSpec) sl@0: { sl@0: CMemFailStop* self = CMemFailStop::NewLC(aConsole, aOut, aTestActionSpec); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: CMemFailStop* CMemFailStop::NewLC(CConsoleBase& aConsole, sl@0: Output& aOut, sl@0: const TTestActionSpec& aTestActionSpec) sl@0: { sl@0: CMemFailStop* self = new(ELeave) CMemFailStop(aConsole, aOut); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(aTestActionSpec); sl@0: return self; sl@0: } sl@0: sl@0: CMemFailStop::~CMemFailStop() sl@0: { sl@0: sl@0: } sl@0: sl@0: void CMemFailStop::PerformAction(TRequestStatus& aStatus) sl@0: { sl@0: iTestHandler->SetTestRunnerL(NULL); sl@0: sl@0: TRequestStatus* status = &aStatus; sl@0: User::RequestComplete(status, KErrNone); sl@0: iResult = ETrue; sl@0: iFinished = ETrue; sl@0: iActionState = EPostrequisite; sl@0: } sl@0: sl@0: void CMemFailStop::PerformCancel() sl@0: { sl@0: } sl@0: sl@0: void CMemFailStop::Reset() sl@0: { sl@0: // __ASSERT_DEBUG(EFalse, User::Panic(_L("CMemFailStop::Reset()"), 1)); sl@0: } sl@0: sl@0: CMemFailStop::CMemFailStop(CConsoleBase& aConsole, sl@0: Output& aOut) sl@0: : CTestAction(aConsole, aOut) sl@0: { sl@0: } sl@0: sl@0: void CMemFailStop::ConstructL(const TTestActionSpec& aTestActionSpec) sl@0: { sl@0: CTestAction::ConstructL(aTestActionSpec); sl@0: } sl@0: sl@0: void CMemFailStop::DoReportAction() sl@0: { sl@0: iOut.writeString(_L("Stoping memory failure sequence...")); sl@0: iOut.writeNewLine(); sl@0: iOut.writeNewLine(); sl@0: } sl@0: sl@0: void CMemFailStop::DoCheckResult(TInt /*aError*/) sl@0: { sl@0: }