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 - cleanup operations sl@0: // Please, ensure that t_postdbsc test is executed after t_dbsc tests! sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: sl@0: static RTest TheTest(_L("t_dbenvdestroy: DBMS platform security tetsing - cleanup")); sl@0: static RDbs TheDbs; sl@0: const TUid KSecureDbUid = {0x11335578}; sl@0: const TUid KSecureDbUid2 = {0x11335579}; sl@0: const TUid KSecureDbUid3 = {0x1133557A}; sl@0: _LIT(KProtDb1CName, "c:A.DB"); sl@0: _LIT(KProtDb2CName, "c:b.DB"); sl@0: _LIT(KProtDb3CName, "c:C.DB"); sl@0: _LIT(KProtDb4CName, "c:z.DB"); sl@0: _LIT(KProtDb5CName, "C:TEstdB.dB"); sl@0: _LIT(KProtDb6CName, "C:AbcD.db"); sl@0: _LIT(KProtDb7CName, "c:A0123456789B0123456789C0123456789D0123456789E0123456789F0123.Db"); sl@0: _LIT(KProtDb8CName, "c:ZADFS.Db"); sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: //Test macros and functions sl@0: static void Check(TInt aValue, TInt aExpected, TInt aLine) sl@0: { sl@0: if(aValue != aExpected) sl@0: { sl@0: RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue); sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__) sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: static void DeleteTestDatabase(TUid aUid, const TDesC& aDbName) sl@0: { sl@0: RDebug::Print(_L("Deleting %X \"%S\" database.\n"), aUid, &aDbName); sl@0: TInt err = TheDbs.DeleteDatabase(aDbName, aUid); sl@0: if(err != KErrNone && err != KErrNotFound) sl@0: { sl@0: RDebug::Print(_L("Error %d deleting \"%S\" database.\n"), err, &aDbName); sl@0: } sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-DBMS-CT-0024 sl@0: @SYMTestCaseDesc This test app must be executed after all t_dbsc tests. sl@0: It ensures that the test data removd from drive C:. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Remove used test databases from drive C:. sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMREQ REQ2429 sl@0: DBMS shall provide an API to apply security policies to database tables. sl@0: */ sl@0: static void DoRun() sl@0: { sl@0: TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0024 Delete protected databases from C: ")); sl@0: ::DeleteTestDatabase(KSecureDbUid2, KProtDb5CName); sl@0: ::DeleteTestDatabase(KSecureDbUid, KProtDb4CName); sl@0: ::DeleteTestDatabase(KSecureDbUid, KProtDb3CName); sl@0: ::DeleteTestDatabase(KSecureDbUid, KProtDb2CName); sl@0: ::DeleteTestDatabase(KSecureDbUid, KProtDb1CName); sl@0: ::DeleteTestDatabase(KSecureDbUid3, KProtDb6CName); sl@0: ::DeleteTestDatabase(KSecureDbUid3, KProtDb7CName); sl@0: ::DeleteTestDatabase(KSecureDbUid3, KProtDb8CName); sl@0: } sl@0: sl@0: TInt E32Main() sl@0: { sl@0: TInt err = TheDbs.Connect(); sl@0: TEST2(err, KErrNone); sl@0: sl@0: ::DoRun(); sl@0: sl@0: TheDbs.Close(); sl@0: sl@0: TheTest.End(); sl@0: TheTest.Close(); sl@0: sl@0: return KErrNone; sl@0: }