sl@0: // Copyright (c) 2004-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 "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: // DBMS security policy - testing new APIs - utility functions sl@0: // sl@0: // sl@0: sl@0: #ifndef T_DBPLATSECUTL_H sl@0: #define T_DBPLATSECUTL_H sl@0: sl@0: #include sl@0: #include "t_dbsecuritypolicy.h" sl@0: sl@0: //Forward declarations sl@0: class RTest; sl@0: sl@0: //Table column definition structure. sl@0: struct TColDef sl@0: { sl@0: const TText* iName; sl@0: TDbColType iType; sl@0: TInt iAttributes; sl@0: }; sl@0: sl@0: typedef void (*TCleanupFunc)(); sl@0: sl@0: //Test utility class. Define TheDbscUtils instance somewhere in your test code. sl@0: class TDBSCUtils sl@0: { sl@0: public: sl@0: TDBSCUtils(RTest& aTest, TCleanupFunc aFunc); sl@0: sl@0: static CDbColSet* CreateColSetLC(const TColDef* aColDef); sl@0: static CDbKey* CreateKeyLC(const TDesC& aColName); sl@0: static void CreateTableL(RDbNamedDatabase& aDb, const TDesC& aTblName, const TColDef* aColDef); sl@0: sl@0: static RDbNamedDatabase CreateDatabase(RDbs& aDbs, TUid aPolicyUid, const TDesC& aDbName); sl@0: static TInt DeleteDatabase(RDbs& aDbs, TUid aPolicyUid, const TDesC& aDbName); sl@0: sl@0: static TBool IsDatabaseThereL(RDbs& aDbs, TUid aPolicyUid, TDriveNumber aDriveNumber, const TDesC& aDatabaseName); sl@0: static TBool HasCapability(const TCompiledSecurityPolicy& aPolicy, TCapability aCapability); sl@0: sl@0: static void Check(TInt aValue, TInt aLine); sl@0: static void Check(TInt aValue, TInt aExpected, TInt aLine); sl@0: sl@0: private: sl@0: RTest& iTest; sl@0: TCleanupFunc iFunc; sl@0: }; sl@0: sl@0: #define TEST(arg) TDBSCUtils::Check((arg), __LINE__) sl@0: #define TEST2(aValue, aExpected) TDBSCUtils::Check(aValue, aExpected, __LINE__) sl@0: sl@0: extern TDBSCUtils TheDbscUtils; sl@0: sl@0: #endif//T_DBPLATSECUTL_H