Update contrib.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // DBMS security policy - testing new APIs.
15 // This test app has "WriteDeviceData" (TABLE B: WRITE) capability, although it does not allows
16 // writing data to table B, because (UID: WRITE) policy is not satisfied.
17 // The UID policy file is 11335579.spd.
18 // The test uses C:TESTDB.DB secure shared database, which has tables A, B and C, each of them
19 // with at least one record.
20 // Please, ensure that t_dbenvcreate test is executed before t_dbplatsec<N>/t_dbplatsecperf tests!
21 // Please, ensure that t_dbenvdestroy test is executed after t_dbplatsec<N>/t_dbplatsecperf tests!
27 #include "t_dbplatsecutl.h"
29 const TUid KSecureDbUid = {0x11335579};
30 _LIT(KSecure, "SECURE");
31 _LIT(KDbName, "C:TestDB.DB");
36 static RTest TheTest(_L("t_dbplatsec4: DBMS platform security testing - 4"));
38 static RDbNamedDatabase TheDb;
39 static RDbTable TheTbl;
40 static RDbView TheView;
42 TDBSCUtils TheDbscUtils(TheTest, NULL);
45 @SYMTestCaseID SYSLIB-DBMS-CT-0017
46 @SYMTestCaseDesc Open table test.
47 This test app has "WriteDeviceData" (TABLE B: WRITE) capability,
48 although it does not allows writing data to table B, because
49 (UID: WRITE) policy is not satisfied. The attempts to open database
50 tables in insert/update mode must fail.
52 @SYMTestActions Open table test.
53 @SYMTestExpectedResults The test must not fail.
55 DBMS shall provide an API to apply security policies to database tables.
57 static void TblTestL()
59 TheTest.Printf(_L("An attempt to open table A\n"));
60 //The test must fail, because the test app cannot satisfy table A, policy W.
61 TInt err = TheTbl.Open(TheDb, KTblNameA);
62 TEST2(err, KErrPermissionDenied);
63 //The test must fail, because the test app cannot satisfy table A, policy R.
64 err = TheTbl.Open(TheDb, KTblNameA, RDbRowSet::EReadOnly);
65 TEST2(err, KErrPermissionDenied);
67 TheTest.Printf(_L("An attempt to open table B\n"));
68 //The test must fail, because the test app cannot satisfy table B, policy W.
69 err = TheTbl.Open(TheDb, KTblNameB);
70 TEST2(err, KErrPermissionDenied);
71 //The test must pass, because table B has no R policy.
72 err = TheTbl.Open(TheDb, KTblNameB, RDbRowSet::EReadOnly);
76 TheTest.Printf(_L("An attempt to write to table B\n"));
77 //The test must fail, because the test app cannot satisfy table B, policy W.
78 err = TheDb.Execute(_L("UPDATE B SET DATA1 = 400 WHERE ID < 10"));
79 TEST2(err, KErrPermissionDenied);
81 TheTest.Printf(_L("An attempt to open table C\n"));
82 //The test must fail, because the test app cannot satisfy table C, policy W.
83 err = TheTbl.Open(TheDb, KTblNameC);
84 TEST2(err, KErrPermissionDenied);
85 //The test must pass, because table C has no R policy.
86 err = TheTbl.Open(TheDb, KTblNameC, RDbRowSet::EReadOnly);
93 TheTest.Start(_L("An app with \"TABLE B:WRITE\" capabilities set"));
95 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0017 Tble tests "));
102 CTrapCleanup* tc = CTrapCleanup::New();
105 TInt err = TheDbs.Connect();
106 TEST2(err, KErrNone);
109 TheTest.Printf(_L("Open database\n"));
110 format.Copy(KSecure);
111 format.Append(KSecureDbUid.Name());
112 err = TheDb.Open(TheDbs, KDbName, format);
113 TEST2(err, KErrNone);
115 TRAP(err, ::DoRunL());
116 TEST2(err, KErrNone);
129 User::Heap().Check();