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 "None" capabilities,
16 // The UID policy file is 11335579.spd.
17 // The test uses C:TESTDB.DB secure shared database, which has tables A, B and C, each of them
18 // with at least one record.
19 // Please, ensure that t_dbenvcreate test is executed before t_dbplatsec<N>/t_dbplatsecperf tests!
20 // Please, ensure that t_dbenvdestroy test is executed after t_dbplatsec<N>/t_dbplatsecperf tests!
26 #include "t_dbplatsecutl.h"
28 const TUid KSecureDbUid = {0x11335579};
29 _LIT(KSecure, "SECURE");
30 _LIT(KDbName, "C:TestDB.DB");
35 static RTest TheTest(_L("t_dbplatsec5: DBMS platform security testing - 5"));
37 static RDbNamedDatabase TheDb;
38 static RDbTable TheTbl;
39 static RDbView TheView;
41 TDBSCUtils TheDbscUtils(TheTest, NULL);
44 @SYMTestCaseID SYSLIB-DBMS-CT-0018
45 @SYMTestCaseDesc Open table test.
46 This test app has no capabilities and it is restricted to be able to
47 open tables B and C in read-only mode.
49 @SYMTestActions Open table test.
50 @SYMTestExpectedResults The test must not fail.
52 DBMS shall provide an API to apply security policies to database tables.
56 TheTest.Printf(_L("An attempt to open tables in update/insert mode\n"));
57 //The test must fail, because the test app cannot satisfy table A, B, C, policy W.
58 TInt err = TheTbl.Open(TheDb, KTblNameA);
59 TEST2(err, KErrPermissionDenied);
60 err = TheTbl.Open(TheDb, KTblNameB);
61 TEST2(err, KErrPermissionDenied);
62 err = TheTbl.Open(TheDb, KTblNameC);
63 TEST2(err, KErrPermissionDenied);
65 TheTest.Printf(_L("An attempt to open tables in read-only mode\n"));
66 //The test must pass for table B & C, but the test app cannot satisfy table A, policy R.
67 err = TheTbl.Open(TheDb, KTblNameA, RDbRowSet::EReadOnly);
68 TEST2(err, KErrPermissionDenied);
69 err = TheTbl.Open(TheDb, KTblNameB, RDbRowSet::EReadOnly);
72 err = TheTbl.Open(TheDb, KTblNameC, RDbRowSet::EReadOnly);
76 TheTest.Printf(_L("An attempt to read tables\n"));
77 //The test must pass for table B & C, but the test app cannot satisfy table A, policy R.
78 err = TheView.Prepare(TheDb, TDbQuery(_L("SELECT * FROM A")));
79 TEST2(err, KErrPermissionDenied);
80 err = TheView.Prepare(TheDb, TDbQuery(_L("SELECT * FROM B")));
82 TInt cnt = TheView.CountL();
85 err = TheView.Prepare(TheDb, TDbQuery(_L("SELECT * FROM C")));
87 cnt = TheView.CountL();
93 @SYMTestCaseID SYSLIB-DBMS-CT-3407
94 @SYMTestCaseDesc Test for defect DEF103023 - DBMS requires ReadDeviceData and WriteDeviceData capability to read from the db.
95 The current test application has no capabilities at all.
96 "C:TestDB.DB" database is a secure shared database with:
97 - no "READ" polycy (no restrictions apply to the database read operations);
98 - "WRITE" policy with "WriteUserData" capability defined;
99 - "SCHEMA" policy with "NetworkServices" capability defined;
100 - table C has no defined securoty policy, so the database security policy will be used;
101 The current test application should be able to:
102 - begin/commit/rollback a "read-only" transaction;
104 - begin a transaction and try to modify the database within the transaction;
105 This test function asserts the test cases described above.
106 @SYMTestPriority High
107 @SYMTestActions Test for defect DEF103023 - DBMS requires ReadDeviceData and WriteDeviceData capability to read from the db.
108 @SYMTestExpectedResults Test must not fail
113 TheTest.Printf(_L("Begin a transaction. Read-only operations tested\n"));
114 TInt err = TheDb.Begin();
115 TEST2(err, KErrNone);
116 TheTest.Printf(_L("Perform some read-only operations inside the transaction\n"));
117 err = TheView.Prepare(TheDb, _L("SELECT * FROM C"));
118 TEST2(err, KErrNone);
119 err = TheView.EvaluateAll();
120 TEST2(err, KErrNone);
121 TInt cnt = TheView.CountL();
123 TBool rc = TheView.FirstL();
126 TInt val = TheView.ColInt32(1);
127 rc = TheView.LastL();
129 rc = TheView.NextL();
131 rc = TheView.PreviousL();
133 TheView.BeginningL();
136 TheTest.Printf(_L("Commit a transaction\n"));
137 err = TheDb.Commit();
138 TEST2(err, KErrNone);
140 TheTest.Printf(_L("Begin a transaction. Read-only operations tested\n"));
142 TEST2(err, KErrNone);
143 err = TheView.Prepare(TheDb, _L("SELECT * FROM C"));
144 TEST2(err, KErrNone);
145 err = TheView.EvaluateAll();
146 TEST2(err, KErrNone);
147 cnt = TheView.CountL();
150 TheTest.Printf(_L("Rollback a transaction\n"));
153 TheTest.Printf(_L("Begin a transaction. Tested operations violate the database security\n"));
155 TEST2(err, KErrNone);
156 err = TheView.Prepare(TheDb, _L("SELECT * FROM C"));
157 TEST2(err, KErrNone);
158 err = TheView.EvaluateAll();
159 TEST2(err, KErrNone);
160 rc = TheView.FirstL();
163 TheTest.Printf(_L("An attempt to update a record within the transaction\n"));
164 TRAP(err, TheView.UpdateL());
165 TEST2(err, KErrPermissionDenied);
166 TheTest.Printf(_L("An attempt to delete a record within the transaction\n"));
167 TRAP(err, TheView.DeleteL());
168 TEST2(err, KErrPermissionDenied);
169 TheTest.Printf(_L("An attempt to insert a record within the transaction\n"));
170 TRAP(err, TheView.InsertL());
171 TEST2(err, KErrPermissionDenied);
173 TheTest.Printf(_L("An attempt to modify the database schema within the transaction\n"));
174 err = TheDb.Execute(_L("CREATE TABLE C2(Id INTEGER, Z INTEGER)"));
175 TEST2(err, KErrPermissionDenied);
176 TheTest.Printf(_L("An attempt to execute an INSERT statement within the transaction\n"));
177 err = TheDb.Execute(_L("INSERT INTO C VALUES(100)"));
178 TEST2(err, KErrPermissionDenied);
179 TheTest.Printf(_L("An attempt to modify the database within the transaction using RDbUpdate\n"));
181 err = update.Execute(TheDb, _L("INSERT INTO C VALUES(200)"));
182 TEST2(err, KErrPermissionDenied);
184 TheTest.Printf(_L("Rollback a transaction\n"));
190 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0018 An app with \"None\" capabilities set "));
193 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-3407 DEF103023-DBMS requires ReadDeviceData and WriteDeviceData capability to read from the db "));
200 CTrapCleanup* tc = CTrapCleanup::New();
203 TInt err = TheDbs.Connect();
204 TEST2(err, KErrNone);
207 TheTest.Printf(_L("Open database\n"));
208 format.Copy(KSecure);
209 format.Append(KSecureDbUid.Name());
210 err = TheDb.Open(TheDbs, KDbName, format);
211 TEST2(err, KErrNone);
213 TRAP(err, DoTestL());
214 TEST2(err, KErrNone);
227 User::Heap().Check();