os/persistentdata/persistentstorage/dbms/tdbms/t_dbenvdestroy.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// DBMS security policy - testing new APIs - cleanup operations
sl@0
    15
// Please, ensure that t_postdbsc test is executed after t_dbsc<N> tests!
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#include <d32dbms.h>
sl@0
    20
#include <e32test.h>
sl@0
    21
sl@0
    22
static RTest TheTest(_L("t_dbenvdestroy: DBMS platform security tetsing - cleanup"));
sl@0
    23
static RDbs TheDbs;
sl@0
    24
const TUid KSecureDbUid = {0x11335578};
sl@0
    25
const TUid KSecureDbUid2 = {0x11335579};
sl@0
    26
const TUid KSecureDbUid3 = {0x1133557A};
sl@0
    27
_LIT(KProtDb1CName, "c:A.DB");
sl@0
    28
_LIT(KProtDb2CName, "c:b.DB");
sl@0
    29
_LIT(KProtDb3CName, "c:C.DB");
sl@0
    30
_LIT(KProtDb4CName, "c:z.DB");
sl@0
    31
_LIT(KProtDb5CName, "C:TEstdB.dB");
sl@0
    32
_LIT(KProtDb6CName, "C:AbcD.db");
sl@0
    33
_LIT(KProtDb7CName, "c:A0123456789B0123456789C0123456789D0123456789E0123456789F0123.Db");
sl@0
    34
_LIT(KProtDb8CName, "c:ZADFS.Db");
sl@0
    35
sl@0
    36
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    37
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    38
//Test macros and functions
sl@0
    39
static void Check(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    40
	{
sl@0
    41
	if(aValue != aExpected)
sl@0
    42
		{
sl@0
    43
		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
sl@0
    44
		TheTest(EFalse, aLine);
sl@0
    45
		}
sl@0
    46
	}
sl@0
    47
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
sl@0
    48
sl@0
    49
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    50
sl@0
    51
static void DeleteTestDatabase(TUid aUid, const TDesC& aDbName)
sl@0
    52
	{
sl@0
    53
	RDebug::Print(_L("Deleting %X \"%S\" database.\n"), aUid, &aDbName);
sl@0
    54
	TInt err = TheDbs.DeleteDatabase(aDbName, aUid);
sl@0
    55
	if(err != KErrNone && err != KErrNotFound)
sl@0
    56
		{
sl@0
    57
		RDebug::Print(_L("Error %d deleting \"%S\" database.\n"), err, &aDbName);
sl@0
    58
		}
sl@0
    59
	}
sl@0
    60
sl@0
    61
/**
sl@0
    62
@SYMTestCaseID SYSLIB-DBMS-CT-0024
sl@0
    63
@SYMTestCaseDesc This test app must be executed after all t_dbsc<N> tests.
sl@0
    64
                 It ensures that the test data removd from drive C:.
sl@0
    65
@SYMTestPriority High
sl@0
    66
@SYMTestActions  Remove used test databases from drive C:.
sl@0
    67
@SYMTestExpectedResults The test must not fail.
sl@0
    68
@SYMREQ REQ2429
sl@0
    69
                 DBMS shall provide an API to apply security policies to database tables.
sl@0
    70
*/
sl@0
    71
static void DoRun()
sl@0
    72
	{
sl@0
    73
	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0024 Delete protected databases from C: "));
sl@0
    74
	::DeleteTestDatabase(KSecureDbUid2, KProtDb5CName);
sl@0
    75
	::DeleteTestDatabase(KSecureDbUid, KProtDb4CName);
sl@0
    76
	::DeleteTestDatabase(KSecureDbUid, KProtDb3CName);
sl@0
    77
	::DeleteTestDatabase(KSecureDbUid, KProtDb2CName);
sl@0
    78
	::DeleteTestDatabase(KSecureDbUid, KProtDb1CName);
sl@0
    79
	::DeleteTestDatabase(KSecureDbUid3, KProtDb6CName);
sl@0
    80
	::DeleteTestDatabase(KSecureDbUid3, KProtDb7CName);
sl@0
    81
	::DeleteTestDatabase(KSecureDbUid3, KProtDb8CName);
sl@0
    82
	}
sl@0
    83
sl@0
    84
TInt E32Main()
sl@0
    85
    {
sl@0
    86
	TInt err = TheDbs.Connect();
sl@0
    87
	TEST2(err, KErrNone);
sl@0
    88
sl@0
    89
	::DoRun();
sl@0
    90
sl@0
    91
	TheDbs.Close();
sl@0
    92
sl@0
    93
	TheTest.End();
sl@0
    94
	TheTest.Close();
sl@0
    95
sl@0
    96
	return KErrNone;
sl@0
    97
    }