1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/dbms/tdbms/t_dbenvdestroy.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,97 @@
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 - cleanup operations
1.18 +// Please, ensure that t_postdbsc test is executed after t_dbsc<N> tests!
1.19 +//
1.20 +//
1.21 +
1.22 +#include <d32dbms.h>
1.23 +#include <e32test.h>
1.24 +
1.25 +static RTest TheTest(_L("t_dbenvdestroy: DBMS platform security tetsing - cleanup"));
1.26 +static RDbs TheDbs;
1.27 +const TUid KSecureDbUid = {0x11335578};
1.28 +const TUid KSecureDbUid2 = {0x11335579};
1.29 +const TUid KSecureDbUid3 = {0x1133557A};
1.30 +_LIT(KProtDb1CName, "c:A.DB");
1.31 +_LIT(KProtDb2CName, "c:b.DB");
1.32 +_LIT(KProtDb3CName, "c:C.DB");
1.33 +_LIT(KProtDb4CName, "c:z.DB");
1.34 +_LIT(KProtDb5CName, "C:TEstdB.dB");
1.35 +_LIT(KProtDb6CName, "C:AbcD.db");
1.36 +_LIT(KProtDb7CName, "c:A0123456789B0123456789C0123456789D0123456789E0123456789F0123.Db");
1.37 +_LIT(KProtDb8CName, "c:ZADFS.Db");
1.38 +
1.39 +///////////////////////////////////////////////////////////////////////////////////////
1.40 +///////////////////////////////////////////////////////////////////////////////////////
1.41 +//Test macros and functions
1.42 +static void Check(TInt aValue, TInt aExpected, TInt aLine)
1.43 + {
1.44 + if(aValue != aExpected)
1.45 + {
1.46 + RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
1.47 + TheTest(EFalse, aLine);
1.48 + }
1.49 + }
1.50 +#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
1.51 +
1.52 +///////////////////////////////////////////////////////////////////////////////////////
1.53 +
1.54 +static void DeleteTestDatabase(TUid aUid, const TDesC& aDbName)
1.55 + {
1.56 + RDebug::Print(_L("Deleting %X \"%S\" database.\n"), aUid, &aDbName);
1.57 + TInt err = TheDbs.DeleteDatabase(aDbName, aUid);
1.58 + if(err != KErrNone && err != KErrNotFound)
1.59 + {
1.60 + RDebug::Print(_L("Error %d deleting \"%S\" database.\n"), err, &aDbName);
1.61 + }
1.62 + }
1.63 +
1.64 +/**
1.65 +@SYMTestCaseID SYSLIB-DBMS-CT-0024
1.66 +@SYMTestCaseDesc This test app must be executed after all t_dbsc<N> tests.
1.67 + It ensures that the test data removd from drive C:.
1.68 +@SYMTestPriority High
1.69 +@SYMTestActions Remove used test databases from drive C:.
1.70 +@SYMTestExpectedResults The test must not fail.
1.71 +@SYMREQ REQ2429
1.72 + DBMS shall provide an API to apply security policies to database tables.
1.73 +*/
1.74 +static void DoRun()
1.75 + {
1.76 + TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0024 Delete protected databases from C: "));
1.77 + ::DeleteTestDatabase(KSecureDbUid2, KProtDb5CName);
1.78 + ::DeleteTestDatabase(KSecureDbUid, KProtDb4CName);
1.79 + ::DeleteTestDatabase(KSecureDbUid, KProtDb3CName);
1.80 + ::DeleteTestDatabase(KSecureDbUid, KProtDb2CName);
1.81 + ::DeleteTestDatabase(KSecureDbUid, KProtDb1CName);
1.82 + ::DeleteTestDatabase(KSecureDbUid3, KProtDb6CName);
1.83 + ::DeleteTestDatabase(KSecureDbUid3, KProtDb7CName);
1.84 + ::DeleteTestDatabase(KSecureDbUid3, KProtDb8CName);
1.85 + }
1.86 +
1.87 +TInt E32Main()
1.88 + {
1.89 + TInt err = TheDbs.Connect();
1.90 + TEST2(err, KErrNone);
1.91 +
1.92 + ::DoRun();
1.93 +
1.94 + TheDbs.Close();
1.95 +
1.96 + TheTest.End();
1.97 + TheTest.Close();
1.98 +
1.99 + return KErrNone;
1.100 + }