os/persistentdata/persistentstorage/dbms/tdbms/t_dbplatsec4.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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.
sl@0
    15
// This test app has "WriteDeviceData" (TABLE B: WRITE) capability, although it does not allows
sl@0
    16
// writing data to table B, because (UID: WRITE) policy is not satisfied.
sl@0
    17
// The UID policy file is 11335579.spd.
sl@0
    18
// The test uses C:TESTDB.DB secure shared database, which has tables A, B and C, each of them
sl@0
    19
// with at least one record.
sl@0
    20
// Please, ensure that t_dbenvcreate test is executed before t_dbplatsec<N>/t_dbplatsecperf tests!
sl@0
    21
// Please, ensure that t_dbenvdestroy test is executed after t_dbplatsec<N>/t_dbplatsecperf tests!
sl@0
    22
// 
sl@0
    23
//
sl@0
    24
sl@0
    25
#include <e32test.h>
sl@0
    26
#include <d32dbms.h>
sl@0
    27
#include "t_dbplatsecutl.h"
sl@0
    28
sl@0
    29
const TUid KSecureDbUid = {0x11335579};
sl@0
    30
_LIT(KSecure,	"SECURE");
sl@0
    31
_LIT(KDbName,	"C:TestDB.DB");
sl@0
    32
_LIT(KTblNameA,	"A");
sl@0
    33
_LIT(KTblNameB,	"B");
sl@0
    34
_LIT(KTblNameC,	"C");
sl@0
    35
sl@0
    36
static RTest 				TheTest(_L("t_dbplatsec4: DBMS platform security testing - 4"));
sl@0
    37
static RDbs 				TheDbs;
sl@0
    38
static RDbNamedDatabase 	TheDb;
sl@0
    39
static RDbTable 			TheTbl;
sl@0
    40
static RDbView 				TheView;
sl@0
    41
sl@0
    42
TDBSCUtils 	TheDbscUtils(TheTest, NULL);
sl@0
    43
sl@0
    44
/**
sl@0
    45
@SYMTestCaseID SYSLIB-DBMS-CT-0017
sl@0
    46
@SYMTestCaseDesc Open table test.
sl@0
    47
				 This test app has "WriteDeviceData" (TABLE B: WRITE) capability,
sl@0
    48
				 although it does not allows writing data to table B, because
sl@0
    49
				 (UID: WRITE) policy is not satisfied. The attempts to open database
sl@0
    50
				 tables in insert/update mode must fail.
sl@0
    51
@SYMTestPriority High
sl@0
    52
@SYMTestActions  Open table test.
sl@0
    53
@SYMTestExpectedResults The test must not fail.
sl@0
    54
@SYMREQ REQ2429
sl@0
    55
                 DBMS shall provide an API to apply security policies to database tables.
sl@0
    56
*/
sl@0
    57
static void TblTestL()
sl@0
    58
	{
sl@0
    59
	TheTest.Printf(_L("An attempt to open table A\n"));
sl@0
    60
	//The test must fail, because the test app cannot satisfy table A, policy W.
sl@0
    61
	TInt err = TheTbl.Open(TheDb, KTblNameA);
sl@0
    62
	TEST2(err, KErrPermissionDenied);
sl@0
    63
	//The test must fail, because the test app cannot satisfy table A, policy R.
sl@0
    64
	err = TheTbl.Open(TheDb, KTblNameA, RDbRowSet::EReadOnly);
sl@0
    65
	TEST2(err, KErrPermissionDenied);
sl@0
    66
sl@0
    67
	TheTest.Printf(_L("An attempt to open table B\n"));
sl@0
    68
	//The test must fail, because the test app cannot satisfy table B, policy W.
sl@0
    69
	err = TheTbl.Open(TheDb, KTblNameB);
sl@0
    70
	TEST2(err, KErrPermissionDenied);
sl@0
    71
	//The test must pass, because table B has no R policy.
sl@0
    72
	err = TheTbl.Open(TheDb, KTblNameB, RDbRowSet::EReadOnly);
sl@0
    73
	TEST2(err, KErrNone);
sl@0
    74
	TheTbl.Close();
sl@0
    75
sl@0
    76
	TheTest.Printf(_L("An attempt to write to table B\n"));
sl@0
    77
	//The test must fail, because the test app cannot satisfy table B, policy W.
sl@0
    78
	err = TheDb.Execute(_L("UPDATE B SET DATA1 = 400 WHERE ID < 10"));
sl@0
    79
	TEST2(err, KErrPermissionDenied);
sl@0
    80
sl@0
    81
	TheTest.Printf(_L("An attempt to open table C\n"));
sl@0
    82
	//The test must fail, because the test app cannot satisfy table C, policy W.
sl@0
    83
	err = TheTbl.Open(TheDb, KTblNameC);
sl@0
    84
	TEST2(err, KErrPermissionDenied);
sl@0
    85
	//The test must pass, because table C has no R policy.
sl@0
    86
	err = TheTbl.Open(TheDb, KTblNameC, RDbRowSet::EReadOnly);
sl@0
    87
	TEST2(err, KErrNone);
sl@0
    88
	TheTbl.Close();
sl@0
    89
	}
sl@0
    90
sl@0
    91
static void DoRunL()
sl@0
    92
	{
sl@0
    93
	TheTest.Start(_L("An app with \"TABLE B:WRITE\" capabilities set"));
sl@0
    94
sl@0
    95
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0017 Tble tests "));
sl@0
    96
	::TblTestL();
sl@0
    97
	}
sl@0
    98
sl@0
    99
TInt E32Main()
sl@0
   100
    {
sl@0
   101
	__UHEAP_MARK;
sl@0
   102
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   103
	TEST(tc != NULL);
sl@0
   104
sl@0
   105
	TInt err = TheDbs.Connect();
sl@0
   106
	TEST2(err, KErrNone);
sl@0
   107
sl@0
   108
	TBuf<32> format;
sl@0
   109
	TheTest.Printf(_L("Open database\n"));
sl@0
   110
	format.Copy(KSecure);
sl@0
   111
	format.Append(KSecureDbUid.Name());
sl@0
   112
	err = TheDb.Open(TheDbs, KDbName, format);
sl@0
   113
	TEST2(err, KErrNone);
sl@0
   114
sl@0
   115
	TRAP(err, ::DoRunL());
sl@0
   116
	TEST2(err, KErrNone);
sl@0
   117
sl@0
   118
	TheView.Close();
sl@0
   119
	TheTbl.Close();
sl@0
   120
	TheDb.Close();
sl@0
   121
	TheDbs.Close();
sl@0
   122
sl@0
   123
	TheTest.End();
sl@0
   124
	TheTest.Close();
sl@0
   125
sl@0
   126
	delete tc;
sl@0
   127
sl@0
   128
	__UHEAP_MARKEND;
sl@0
   129
	User::Heap().Check();
sl@0
   130
	return KErrNone;
sl@0
   131
    }