sl@0: /* sl@0: * Copyright (c) 2002-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: sl@0: /** sl@0: @file sl@0: */ sl@0: #ifndef __CAPTESTFRAMEWORK_STEP_H__ sl@0: #define __CAPTESTFRAMEWORK_STEP_H__ sl@0: sl@0: #include sl@0: #include "captestframeworkserver.h" sl@0: sl@0: #include "captestframework.h" sl@0: sl@0: sl@0: struct TTestEnvironment sl@0: { sl@0: TTestEnvironment(const TCapabilitySet& aCaps, TUid aSid, TUid aVid, TBool aExpectPass); sl@0: sl@0: TCapabilitySet iCaps; sl@0: TUid iSid; sl@0: TUid iVid; sl@0: TBool iExpectPass; sl@0: }; sl@0: sl@0: sl@0: class CCapTestFrameworkStep : public CTestStep sl@0: { sl@0: public: sl@0: enum TThoroughness sl@0: { sl@0: EBasicChecks, // Just test using no capabilities, and capabilities required sl@0: EThoroughChecks, // Test every subset required sl@0: }; sl@0: sl@0: public: sl@0: CCapTestFrameworkStep(TThoroughness aThoroughness = EBasicChecks); sl@0: ~CCapTestFrameworkStep(); sl@0: sl@0: TVerdict doTestStepPreambleL(); sl@0: TVerdict doTestStepPostambleL(); sl@0: TVerdict doTestStepL(); sl@0: sl@0: private: sl@0: void RunTestDllL(const TDesC& aDllName); sl@0: MCapabilityTestFactory* SetupFactoryL(); sl@0: sl@0: void PrintCapabilitySet(const TCapabilitySet& aCapSet, const TDesC& aExtra=KNullDesC); sl@0: sl@0: void RunTestStepL(MCapabilityTest* aTest); sl@0: sl@0: void GenerateEnvironmentsL(const TCapabilitySet& aCapsNeeded, const TUid& aSidNeeded, const TUid& aVidNeeded, RArray& aEnvironments); sl@0: sl@0: TCapabilitySet InvertCapSet(const TCapabilitySet& aCapSet); sl@0: sl@0: sl@0: // Sets the helper up with capabilities sl@0: void SetupHelperL(const TTestEnvironment& aEnvironment); sl@0: sl@0: // Runs helper sl@0: void RunHelperL(TInt aTestNumber, TBool aShouldPass); sl@0: sl@0: private: sl@0: RFs iFs; sl@0: TThoroughness iThoroughness; sl@0: TInt iCurrentTest; sl@0: MCapabilityTestFactory* iFactory; sl@0: RLibrary iLibrary; sl@0: TPtrC iDllName; sl@0: TBool iOmitTCBCapInComplementSet; // This functionality is needed for testing components that don't have the TCB capability, for example the SIF API. sl@0: }; sl@0: sl@0: _LIT(KRunBasicCapabilityChecks,"RunBasicCapabilityChecks"); sl@0: _LIT(KRunThoroughCapabilityChecks,"RunThoroughCapabilityChecks"); sl@0: sl@0: #endif /* #ifndef __CAPTESTFRAMEWORK_STEP_H__ */