1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/t_testaction.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,127 @@
1.4 +/*
1.5 +* Copyright (c) 1998-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 +#ifndef __T_TESTACTION_H__
1.23 +#define __T_TESTACTION_H__
1.24 +
1.25 +#include <e32base.h>
1.26 +#include <f32file.h>
1.27 +#include "t_testactionspec.h"
1.28 +
1.29 +class CConsoleBase;
1.30 +class CConsoleBase;
1.31 +class Output;
1.32 +class CTestHandler;
1.33 +
1.34 +const TInt KMaxErrorSize = 100;
1.35 +
1.36 +class CTestAction : public CBase
1.37 + {
1.38 +public:
1.39 + IMPORT_C virtual ~CTestAction();
1.40 +
1.41 +public:
1.42 + enum TScriptError
1.43 + {
1.44 + ENone,
1.45 + ESyntax,
1.46 + EFileNotFound
1.47 + };
1.48 + IMPORT_C virtual void PerformPrerequisite(TRequestStatus& aStatus);
1.49 + virtual void PerformAction(TRequestStatus& aStatus) = 0;
1.50 + IMPORT_C virtual void PerformPostrequisite(TRequestStatus& aStatus);
1.51 + TBool Finished();
1.52 + IMPORT_C virtual void ReportAction();
1.53 + IMPORT_C virtual void CheckResult(TInt aError);
1.54 + IMPORT_C void virtual FailTestNow(TRequestStatus& aStatus);
1.55 + IMPORT_C virtual TScriptError ScriptError(void);
1.56 + IMPORT_C virtual void ScriptError(TDes& aError);
1.57 + IMPORT_C virtual void SetScriptError(const TScriptError &iScriptError, const TDesC& aError);
1.58 +
1.59 + // Specific functions for testing cancellation
1.60 +public:
1.61 + IMPORT_C virtual void PerformCancel();
1.62 +
1.63 + // Specific functions for testing OOM
1.64 +public:
1.65 + IMPORT_C virtual void Reset();
1.66 + IMPORT_C virtual void AfterOOMFailure();
1.67 + IMPORT_C virtual void ResetState();
1.68 +
1.69 + // Functions for accessing data shared between all test actions in a test run
1.70 +public:
1.71 + void SetTestHandler(CTestHandler& aTestHandler);
1.72 +protected:
1.73 + IMPORT_C CBase* SharedData() const;
1.74 + IMPORT_C void SetSharedData(CBase* aData);
1.75 +
1.76 +protected:
1.77 + IMPORT_C CTestAction(CConsoleBase& aConsole, Output& aOut);
1.78 + IMPORT_C void ConstructL(const TTestActionSpec& aTestActionSpec);
1.79 +
1.80 +private:
1.81 + IMPORT_C virtual void DoPerformPrerequisite(TRequestStatus& aStatus);
1.82 + IMPORT_C virtual void DoPerformPostrequisite(TRequestStatus& aStatus);
1.83 + virtual void DoReportAction() = 0;
1.84 + virtual void DoCheckResult(TInt aError) = 0;
1.85 +public:
1.86 + enum TActionState
1.87 + {
1.88 + EPrerequisite,
1.89 + EAction,
1.90 + EPostrequisite
1.91 + };
1.92 +
1.93 +protected:
1.94 + TBool iFinished;
1.95 + TInt iExpectedResult;
1.96 +
1.97 +public:
1.98 + /**
1.99 + * After the test, this will be ETrue if the test succeeded or EFalse otherwise.
1.100 + */
1.101 + TBool iResult;
1.102 +
1.103 +
1.104 + /**
1.105 + * Inidicates if it s .script file
1.106 + */
1.107 + TBool iTefScript;
1.108 +
1.109 + /**
1.110 + * Denote a failure of any RUNTESTSTEP within a single TESTCASE
1.111 + * */
1.112 + TBool iRunningResult;
1.113 +
1.114 +
1.115 + /**
1.116 + * Indicates whether the test will fail because of known deferred defects etc
1.117 + */
1.118 + TBool iKnownFailure;
1.119 + TActionState iActionState;
1.120 + HBufC8* iNameInfo;
1.121 +
1.122 +protected:
1.123 + CConsoleBase& iConsole;
1.124 + Output& iOut;
1.125 + TBuf<KMaxErrorSize> aScriptErrorDescription;
1.126 + TScriptError iScriptError;
1.127 + CTestHandler* iTestHandler;
1.128 + };
1.129 +
1.130 +#endif