os/persistentdata/persistentstorage/dbms/tdbms/t_dbplatsecutl.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/dbms/tdbms/t_dbplatsecutl.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,66 @@
     1.4 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// DBMS security policy - testing new APIs - utility functions
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#ifndef T_DBPLATSECUTL_H
    1.22 +#define T_DBPLATSECUTL_H
    1.23 +
    1.24 +#include <d32dbms.h>
    1.25 +#include "t_dbsecuritypolicy.h"
    1.26 +
    1.27 +//Forward declarations
    1.28 +class RTest;
    1.29 +
    1.30 +//Table column definition structure. 
    1.31 +struct TColDef
    1.32 +	{
    1.33 +	const TText*	iName;
    1.34 +	TDbColType		iType;
    1.35 +	TInt			iAttributes;
    1.36 +	};
    1.37 +
    1.38 +typedef void (*TCleanupFunc)();
    1.39 +
    1.40 +//Test utility class. Define TheDbscUtils instance somewhere in your test code.
    1.41 +class TDBSCUtils
    1.42 +	{
    1.43 +public:
    1.44 +	TDBSCUtils(RTest& aTest, TCleanupFunc aFunc);
    1.45 +	
    1.46 +	static CDbColSet* CreateColSetLC(const TColDef* aColDef);
    1.47 +	static CDbKey* CreateKeyLC(const TDesC& aColName);
    1.48 +	static void CreateTableL(RDbNamedDatabase& aDb, const TDesC& aTblName, const TColDef* aColDef);
    1.49 +
    1.50 +	static RDbNamedDatabase CreateDatabase(RDbs& aDbs, TUid aPolicyUid, const TDesC& aDbName);
    1.51 +	static TInt DeleteDatabase(RDbs& aDbs, TUid aPolicyUid, const TDesC& aDbName);
    1.52 +
    1.53 +	static TBool IsDatabaseThereL(RDbs& aDbs, TUid aPolicyUid, TDriveNumber aDriveNumber, const TDesC& aDatabaseName);
    1.54 +	static TBool HasCapability(const TCompiledSecurityPolicy& aPolicy, TCapability aCapability);
    1.55 +
    1.56 +	static void Check(TInt aValue, TInt aLine);
    1.57 +	static void Check(TInt aValue, TInt aExpected, TInt aLine);
    1.58 +
    1.59 +private:
    1.60 +	RTest&			iTest;
    1.61 +	TCleanupFunc	iFunc;	
    1.62 +	};
    1.63 +
    1.64 +#define TEST(arg) TDBSCUtils::Check((arg), __LINE__)
    1.65 +#define TEST2(aValue, aExpected) TDBSCUtils::Check(aValue, aExpected, __LINE__)
    1.66 +
    1.67 +extern TDBSCUtils TheDbscUtils;
    1.68 +
    1.69 +#endif//T_DBPLATSECUTL_H