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 "WriteUserData" (UID: WRITE) capability, which allows it to
16 // write data in some of the tables.
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");
35 _LIT(KTblNameCC,"CC");
37 static RTest TheTest(_L("t_dbplatsec2: DBMS platform security testing - 2"));
39 static RDbNamedDatabase TheDb;
40 static RDbTable TheTbl;
41 static RDbView TheView;
43 TDBSCUtils TheDbscUtils(TheTest, NULL);
45 static TColDef const KColumns[]=
47 {_S("ID"), EDbColInt32, TDbCol::ENotNull | TDbCol::EAutoIncrement},
48 {_S("DATA1"), EDbColInt32, TDbCol::ENotNull},
49 {_S("DATA2"), EDbColInt32, TDbCol::ENotNull},
54 @SYMTestCaseID SYSLIB-DBMS-CT-0012
55 @SYMTestCaseDesc Database operations test.
56 This test app has "WriteUserData" (UID: WRITE) capability, which allows it to
57 write data in some of the tables. Almost all database calls must fail, the caller
58 cannot satisfy the database's schema security policy.
60 @SYMTestActions Database calls.
61 @SYMTestExpectedResults The test must not fail.
63 DBMS shall provide an API to apply security policies to database tables.
67 TheTest.Printf(_L("An attempt to delete the database\n"));
68 TInt err = TDBSCUtils::DeleteDatabase(TheDbs, KSecureDbUid, KDbName);
69 TEST2(err, KErrPermissionDenied);
73 TheTest.Printf(_L("An attempt to create the database\n"));
74 //The test must fail, because the test app cannot satisfy KSecureDbUid uid, policy S.
76 format.Append(KSecureDbUid.Name());
77 err = TheDb.Create(TheDbs, KDbName, format);
78 TEST2(err, KErrPermissionDenied);
80 TheTest.Printf(_L("Open database\n"));
82 format.Append(KSecureDbUid.Name());
83 err = TheDb.Open(TheDbs, KDbName, format);
86 TheTest.Printf(_L("An attempt to create a table\n"));
87 //The test must fail, because the test app cannot satisfy KSecureDbUid uid, policy S.
88 CDbColSet* colset = TDBSCUtils::CreateColSetLC(KColumns);
89 err = TheDb.CreateTable(KTblNameCC, *colset);
90 TEST2(err, KErrPermissionDenied);
92 CleanupStack::PopAndDestroy(colset);
94 TheTest.Printf(_L("An attempt to create a table using SQL\n"));
95 //The test must fail, because the test app cannot satisfy KSecureDbUid uid, policy S.
96 err = TheDb.Execute(_L("create table AAAA (id counter)"));
97 TEST2(err, KErrPermissionDenied);
99 TheTest.Printf(_L("An attempt to alter a table using SQL\n"));
100 //The test must fail, because the test app cannot satisfy KSecureDbUid uid, policy S.
101 err = TheDb.Execute(_L("alter table A add DATA11 CHAR(20)"));
102 TEST2(err, KErrPermissionDenied);
104 _LIT(KColName, "DATA2");
105 TheTest.Printf(_L("An attempt to create an index\n"));
106 //The test must fail, because the test app cannot satisfy KSecureDbUid uid, policy S.
107 CDbKey* key = TDBSCUtils::CreateKeyLC(KColName);
108 err = TheDb.CreateIndex(KColName, KTblNameA, *key);
109 TEST2(err, KErrPermissionDenied);
110 CleanupStack::PopAndDestroy(key);
112 TheTest.Printf(_L("An attempt to drop an index\n"));
113 //The test must fail, because the test app cannot satisfy KSecureDbUid uid, policy S.
114 err = TheDb.DropIndex(KColName, KTblNameA);
115 TEST2(err, KErrPermissionDenied);
119 @SYMTestCaseID SYSLIB-DBMS-CT-0013
120 @SYMTestCaseDesc Open table test.
121 This test app has "WriteUserData" (UID: WRITE) capability, which allows it to
122 write data in some of the tables. Some of the calls must fail because the caller has no
123 enough rights for the requested operation (for example - the attempts to open some
124 of the tables in ready-only mode)
125 @SYMTestPriority High
126 @SYMTestActions RDBTable::Open() called fon different tables from the test database.
127 @SYMTestExpectedResults The test must not fail.
129 DBMS shall provide an API to apply security policies to database tables.
131 static void TblOpenL()
133 TheTest.Printf(_L("An attempt to open table A\n"));
134 //The test must pass, because the test app can satisfy table A, policy W.
135 TInt err = TheTbl.Open(TheDb, KTblNameA, RDbRowSet::EUpdatable);
136 TEST2(err, KErrNone);
138 //The test must pass, because the test app can satisfy table A, policy W.
139 err = TheTbl.Open(TheDb, KTblNameA, RDbRowSet::EInsertOnly);
140 TEST2(err, KErrNone);
142 //The test must fail, because the test app cannot satisfy table A, policy R.
143 err = TheTbl.Open(TheDb, KTblNameA, RDbRowSet::EReadOnly);
144 TEST2(err, KErrPermissionDenied);
146 TheTest.Printf(_L("An attempt to open table B\n"));
147 if(PlatSec::ConfigSetting(PlatSec::EPlatSecEnforcement) &&
148 PlatSec::IsCapabilityEnforced(ECapabilityWriteDeviceData))
150 //The test must fail, because the test app cannot satisfy table B, policy W.
151 err = TheTbl.Open(TheDb, KTblNameB, RDbRowSet::EUpdatable);
152 TEST2(err, KErrPermissionDenied);
153 //The test must fail, because the test app cannot satisfy table B, policy W.
154 err = TheTbl.Open(TheDb, KTblNameB, RDbRowSet::EInsertOnly);
155 TEST2(err, KErrPermissionDenied);
157 //The test must pass, because the test app can satisfy table B, policy R.
158 err = TheTbl.Open(TheDb, KTblNameB, RDbRowSet::EReadOnly);
159 TEST2(err, KErrNone);
162 TheTest.Printf(_L("An attempt to open table C\n"));
163 //The test must pass, because the test app can satisfy table C, policy W.
164 err = TheTbl.Open(TheDb, KTblNameC, RDbRowSet::EUpdatable);
165 TEST2(err, KErrNone);
167 //The test must pass, because the test app can satisfy table C, policy W.
168 err = TheTbl.Open(TheDb, KTblNameC, RDbRowSet::EInsertOnly);
169 TEST2(err, KErrNone);
171 //The test must pass, because the test app can satisfy table C, policy R.
172 err = TheTbl.Open(TheDb, KTblNameC, RDbRowSet::EReadOnly);
173 TEST2(err, KErrNone);
178 @SYMTestCaseID SYSLIB-DBMS-CT-0014
179 @SYMTestCaseDesc R/W operations at a table level.
180 This test app has "WriteUserData" (UID: WRITE) capability, which allows it to
181 write data in some of the tables. Some of the calls must fail because the caller has no
182 enough rights for the requested operation.
183 @SYMTestPriority High
184 @SYMTestActions R/W operations at a table level.
185 @SYMTestExpectedResults The test must not fail.
187 DBMS shall provide an API to apply security policies to database tables.
191 TheTest.Printf(_L("Table A - Write\n"));
192 TInt err = TheTbl.Open(TheDb, KTblNameA);
193 TEST2(err, KErrNone);
194 //The test must pass, because the test app can satisfy table A, policy W.
195 TRAP(err, TheTbl.InsertL());
196 TEST2(err, KErrNone);
197 TheTbl.SetColL(2, 100);
198 TheTbl.SetColL(3, 200);
199 TRAP(err, TheTbl.PutL());
200 TEST2(err, KErrNone);
201 TInt cnt = TheDb.Execute(_L("UPDATE A SET DATA1 = 400 WHERE ID < 10"));
204 TheTest.Printf(_L("Table A - Read\n"));
205 //The test must fail, because the test app cannot satisfy table A, policy R.
207 TRAP(err, res = TheTbl.FirstL());
208 TEST2(err, KErrPermissionDenied);
209 err = TheView.Prepare(TheDb, TDbQuery(_L("SELECT * FROM A")));
210 TEST2(err, KErrPermissionDenied);
215 TheTest.Printf(_L("Table B - Write\n"));
216 err = TheTbl.Open(TheDb, KTblNameB, RDbRowSet::EReadOnly);
217 TEST2(err, KErrNone);
218 if(PlatSec::ConfigSetting(PlatSec::EPlatSecEnforcement) &&
219 PlatSec::IsCapabilityEnforced(ECapabilityWriteDeviceData))
221 //The test must fail, because the test app cannot satisfy table B, policy W.
222 TRAP(err, TheTbl.InsertL());
223 TEST2(err, KErrPermissionDenied);
224 err = TheDb.Execute(_L("INSERT INTO B (DATA2) VALUES (45)"));
225 TEST2(err, KErrPermissionDenied);
228 TheTest.Printf(_L("Table B - Read\n"));
229 //The test must pass, because table B has no R policy.
230 TRAP(err, res = TheTbl.FirstL());
231 TEST2(err, KErrNone);
233 cnt = TheTbl.CountL();
235 err = TheView.Prepare(TheDb, TDbQuery(_L("SELECT * FROM B")));
236 TEST2(err, KErrNone);
237 cnt = TheView.CountL();
243 TheTest.Printf(_L("Table C - Write\n"));
244 err = TheTbl.Open(TheDb, KTblNameC);
245 TEST2(err, KErrNone);
246 //The test must pass, because the test app can satisfy table C, policy W.
247 TRAP(err, TheTbl.InsertL());
248 TEST2(err, KErrNone);
249 TheTbl.SetColL(2, 100);
250 TheTbl.SetColL(3, 200);
251 TRAP(err, TheTbl.PutL());
252 TEST2(err, KErrNone);
253 cnt = TheDb.Execute(_L("UPDATE C SET DATA1 = 400 WHERE ID < 10"));
256 TheTest.Printf(_L("Table C - Read\n"));
257 //The test must pass, because table C has no R policy.
258 TRAP(err, res = TheTbl.FirstL());
259 TEST2(err, KErrNone);
261 cnt = TheTbl.CountL();
263 err = TheView.Prepare(TheDb, TDbQuery(_L("SELECT * FROM C")));
264 TEST2(err, KErrNone);
265 cnt = TheView.CountL();
274 TheTest.Start(_L("An app with \"UID:WRITE\" capabilities set"));
276 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0012 Database tests "));
279 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0013 Open table tests "));
282 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0014 Table R/W tests "));
289 CTrapCleanup* tc = CTrapCleanup::New();
292 TInt err = TheDbs.Connect();
293 TEST2(err, KErrNone);
295 TRAP(err, ::DoRunL());
296 TEST2(err, KErrNone);
309 User::Heap().Check();