os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/Tcancel.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 "tcancel.h"
    24 #include "t_output.h"
    25 #include "t_testhandler.h"
    26 #include "t_testrunner.h"
    27 
    28 CCancelStart* CCancelStart::NewL(CConsoleBase& aConsole, 
    29 								 Output& aOut,
    30 								 const TTestActionSpec& aTestActionSpec)
    31 	{
    32 	CCancelStart* self = CCancelStart::NewLC(aConsole, aOut, aTestActionSpec);
    33 	CleanupStack::Pop(self);
    34 	return self;
    35 	}
    36 
    37 CCancelStart* CCancelStart::NewLC(CConsoleBase& aConsole, 
    38 								  Output& aOut,
    39 								  const TTestActionSpec& aTestActionSpec)
    40 	{
    41 	CCancelStart* self = new(ELeave) CCancelStart(aConsole, aOut);
    42 	CleanupStack::PushL(self);
    43 	self->ConstructL(aTestActionSpec);
    44 	return self;
    45 	}
    46 
    47 CCancelStart::~CCancelStart()
    48 	{
    49 	}
    50 
    51 void CCancelStart::PerformAction(TRequestStatus& aStatus)
    52 	{
    53     iTestHandler->SetTestRunnerL(new (ELeave) CCancelTestRunner(iOut));
    54     
    55 	TRequestStatus* status = &aStatus;
    56 	User::RequestComplete(status, KErrNone);
    57 	iResult = ETrue;
    58 	iFinished = ETrue;
    59 	iActionState = EPostrequisite;
    60 	}
    61 
    62 CCancelStart::CCancelStart(CConsoleBase& aConsole, 
    63 						   Output& aOut)
    64     : CTestAction(aConsole, aOut)
    65 	{
    66 	}
    67 
    68 void CCancelStart::ConstructL(const TTestActionSpec& aTestActionSpec)
    69 	{
    70 	CTestAction::ConstructL(aTestActionSpec);
    71 	}
    72 
    73 void CCancelStart::DoReportAction()
    74 	{
    75 	iOut.writeString(_L("Starting cancellation test sequence..."));
    76 	iOut.writeNewLine();
    77 	iOut.writeNewLine();
    78 	}
    79 
    80 void CCancelStart::DoCheckResult(TInt /*aError*/)
    81 	{
    82 	}
    83 
    84 CCancelStop* CCancelStop::NewL(CConsoleBase& aConsole, 
    85 							   Output& aOut,
    86 							   const TTestActionSpec& aTestActionSpec)
    87 	{
    88 	CCancelStop* self = CCancelStop::NewLC(aConsole, aOut, aTestActionSpec);
    89 	CleanupStack::Pop(self);
    90 	return self;
    91 	}
    92 
    93 CCancelStop* CCancelStop::NewLC(CConsoleBase& aConsole, 
    94 								Output& aOut,
    95 								const TTestActionSpec& aTestActionSpec)
    96 	{
    97 	CCancelStop* self = new(ELeave) CCancelStop(aConsole, aOut);
    98 	CleanupStack::PushL(self);
    99 	self->ConstructL(aTestActionSpec);
   100 	return self;
   101 	}
   102 
   103 CCancelStop::~CCancelStop()
   104 	{
   105 	}
   106 
   107 void CCancelStop::PerformAction(TRequestStatus& aStatus)
   108 	{
   109     iTestHandler->SetTestRunnerL(NULL);
   110     
   111 	TRequestStatus* status = &aStatus;
   112 	User::RequestComplete(status, KErrNone);
   113 	iResult = ETrue;
   114 	iFinished = ETrue;
   115 	iActionState = EPostrequisite;
   116 	}
   117 
   118 CCancelStop::CCancelStop(CConsoleBase& aConsole,
   119 						 Output& aOut)
   120 
   121     : CTestAction(aConsole, aOut)
   122 	{
   123 	}
   124 
   125 void CCancelStop::ConstructL(const TTestActionSpec& aTestActionSpec)
   126 	{
   127 	CTestAction::ConstructL(aTestActionSpec);
   128 	}
   129 
   130 void CCancelStop::DoReportAction()
   131 	{
   132 	iOut.writeString(_L("Stopping cancel sequence..."));
   133 	iOut.writeNewLine();
   134 	iOut.writeNewLine();
   135 	}
   136 
   137 void CCancelStop::DoCheckResult(TInt /*aError*/)
   138 	{
   139 	}