os/security/cryptomgmtlibs/securitytestfw/test/captestframework/captestframeworkstep.h
Update contrib.
2 * Copyright (c) 2002-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.
24 #ifndef __CAPTESTFRAMEWORK_STEP_H__
25 #define __CAPTESTFRAMEWORK_STEP_H__
27 #include <test/testexecutestepbase.h>
28 #include "captestframeworkserver.h"
30 #include "captestframework.h"
33 struct TTestEnvironment
35 TTestEnvironment(const TCapabilitySet& aCaps, TUid aSid, TUid aVid, TBool aExpectPass);
44 class CCapTestFrameworkStep : public CTestStep
49 EBasicChecks, // Just test using no capabilities, and capabilities required
50 EThoroughChecks, // Test every subset required
54 CCapTestFrameworkStep(TThoroughness aThoroughness = EBasicChecks);
55 ~CCapTestFrameworkStep();
57 TVerdict doTestStepPreambleL();
58 TVerdict doTestStepPostambleL();
59 TVerdict doTestStepL();
62 void RunTestDllL(const TDesC& aDllName);
63 MCapabilityTestFactory* SetupFactoryL();
65 void PrintCapabilitySet(const TCapabilitySet& aCapSet, const TDesC& aExtra=KNullDesC);
67 void RunTestStepL(MCapabilityTest* aTest);
69 void GenerateEnvironmentsL(const TCapabilitySet& aCapsNeeded, const TUid& aSidNeeded, const TUid& aVidNeeded, RArray<TTestEnvironment>& aEnvironments);
71 TCapabilitySet InvertCapSet(const TCapabilitySet& aCapSet);
74 // Sets the helper up with capabilities
75 void SetupHelperL(const TTestEnvironment& aEnvironment);
78 void RunHelperL(TInt aTestNumber, TBool aShouldPass);
82 TThoroughness iThoroughness;
84 MCapabilityTestFactory* iFactory;
87 TBool iOmitTCBCapInComplementSet; // This functionality is needed for testing components that don't have the TCB capability, for example the SIF API.
90 _LIT(KRunBasicCapabilityChecks,"RunBasicCapabilityChecks");
91 _LIT(KRunThoroughCapabilityChecks,"RunThoroughCapabilityChecks");
93 #endif /* #ifndef __CAPTESTFRAMEWORK_STEP_H__ */