os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/t_sleep.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_sleep.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,124 @@
     1.4 +/*
     1.5 +* Copyright (c) 2003-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 +#include "t_sleep.h"
    1.23 +#include "t_input.h"
    1.24 +#include "t_output.h"
    1.25 +#include <e32base.h>
    1.26 +
    1.27 +/////////////////////////////////////////////////////////////////////////////////
    1.28 +// CSleep
    1.29 +/////////////////////////////////////////////////////////////////////////////////
    1.30 +
    1.31 +_LIT8(KSecondsStart, "<seconds>");
    1.32 +
    1.33 +CTestAction* CSleep::NewL(CConsoleBase& aConsole, 
    1.34 +						  Output& aOut,
    1.35 +						  const TTestActionSpec& aTestActionSpec)
    1.36 +	{
    1.37 +	CTestAction* self = CSleep::NewLC(aConsole, aOut, aTestActionSpec);
    1.38 +	CleanupStack::Pop(self);
    1.39 +	return self;
    1.40 +	}
    1.41 +
    1.42 +CTestAction* CSleep::NewLC(CConsoleBase& aConsole, 
    1.43 +						   Output& aOut,
    1.44 +						   const TTestActionSpec& aTestActionSpec)
    1.45 +	{
    1.46 +	CSleep* self = new (ELeave) CSleep(aConsole, aOut);
    1.47 +	CleanupStack::PushL(self);
    1.48 +	self->ConstructL(aTestActionSpec);
    1.49 +	return self;
    1.50 +	}
    1.51 +
    1.52 +CSleep::~CSleep()
    1.53 +	{
    1.54 +	iTimer.Close();
    1.55 +	}
    1.56 +	
    1.57 +CSleep::CSleep(CConsoleBase& aConsole, Output& aOut) :
    1.58 +	CTestAction(aConsole, aOut)
    1.59 +	{
    1.60 + 	iState = ESleeping;
    1.61 +	}
    1.62 +
    1.63 +void CSleep::ConstructL(const TTestActionSpec& aTestActionSpec)
    1.64 +	{
    1.65 +	CTestAction::ConstructL(aTestActionSpec);
    1.66 +
    1.67 +	iExpectedResult = KErrNone;
    1.68 +	TLex8 lex(Input::ParseElement(aTestActionSpec.iActionBody, KSecondsStart));
    1.69 +	lex.Val(iSeconds);
    1.70 +	User::LeaveIfError(iTimer.CreateLocal());	
    1.71 +	}
    1.72 +	
    1.73 +void CSleep::PerformAction(TRequestStatus& aStatus)
    1.74 +	{
    1.75 +	switch (iState)
    1.76 +		{
    1.77 +		case ESleeping:
    1.78 +			{
    1.79 +			iState = EFinished;
    1.80 +			iTimer.After(aStatus, iSeconds*1000*1000);
    1.81 +			}
    1.82 +			break;
    1.83 +		case EFinished:
    1.84 +			{
    1.85 +			TRequestStatus* status = &aStatus;
    1.86 +			User::RequestComplete(status, aStatus.Int());
    1.87 +			if (aStatus == iExpectedResult)
    1.88 +				{
    1.89 +				iResult = ETrue;
    1.90 +				}
    1.91 +			else
    1.92 +				{
    1.93 +				iResult = EFalse;
    1.94 +				}
    1.95 +			iFinished = ETrue;			
    1.96 +			}
    1.97 +		}
    1.98 +
    1.99 +	}
   1.100 +
   1.101 +void CSleep::PerformCancel()
   1.102 +	{
   1.103 +    if (iState == ESleeping)
   1.104 +        {
   1.105 +        iTimer.Cancel();
   1.106 +        }
   1.107 +	}
   1.108 +
   1.109 +void CSleep::DoCheckResult(TInt aError)
   1.110 +	{
   1.111 +	if (iFinished)
   1.112 +		{
   1.113 +		if (aError == KErrNone)
   1.114 +			{
   1.115 +			iOut.write(_L("Slept well \n\n"));
   1.116 +			}
   1.117 +		else
   1.118 +			{
   1.119 +			iOut.write(_L("Troubled sleep... : %d\n\n"), aError);
   1.120 +			}			
   1.121 +		}
   1.122 +	}
   1.123 +
   1.124 +void CSleep::DoReportAction()
   1.125 +	{
   1.126 +	iOut.write(_L("Sleeping for %d seconds...\n"), iSeconds);
   1.127 +	}