Update contrib.
1 // Copyright (c) 2006-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 // t_sqlsecurity2 application has capabilities allowing read-only access to the test database
22 ///////////////////////////////////////////////////////////////////////////////////////
23 //The test database has:
24 // SCHEMA database policy: ECapabilityReadDeviceData, ECapabilityWriteUserData, ECapabilityReadUserData
25 // WRITE database policy: ECapabilityWriteUserData
26 // READ database policy: ECapabilityReadUserData
29 // TABLE A(F1 INTEGER, B1 BLOB)
30 // TABLE B(F2 INTEGER, F3 TEXT, B2 BLOB)
33 // TABLE A: {1, x'41414141414141414141'}, {2, x'42424242424242424242'}, {3, x'43434343434343434343'}, {4, x'44444444444444444444'}
34 // TABLE B: {2, "ABC", x'45454545454545454545'}, {4, "DEF", x'46464646464646464646'}
36 ///////////////////////////////////////////////////////////////////////////////////////
38 #define UNUSED_VAR(a) (a) = (a)
40 RTest TheTest(_L("t_sqlsecurity2 test"));
43 _LIT(KTestDbName, "c:[21212125]t_ab.db");
44 _LIT(KTestDbName2, "c:\\test\\t_sqlsecurity2_2.db");
46 ///////////////////////////////////////////////////////////////////////////////////////
51 (void)RSqlDatabase::Delete(KTestDbName2);
54 ///////////////////////////////////////////////////////////////////////////////////////
55 ///////////////////////////////////////////////////////////////////////////////////////
56 //Test macros and functions
57 void Check1(TInt aValue, TInt aLine)
62 RDebug::Print(_L("*** Line %d\r\n"), aLine);
63 TheTest(EFalse, aLine);
66 void Check2(TInt aValue, TInt aExpected, TInt aLine)
68 if(aValue != aExpected)
71 RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
72 TheTest(EFalse, aLine);
75 #define TEST(arg) ::Check1((arg), __LINE__)
76 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
78 ///////////////////////////////////////////////////////////////////////////////////////
81 @SYMTestCaseID SYSLIB-SQL-CT-1644
82 @SYMTestCaseDesc Testing database operations on a secure database.
83 The test application's capabilities allow read-only access to the test secure database.
84 Verify that any other kind of a database operation will fail with KErrPermissionDenied error.
86 @SYMTestActions Testing database operations on a secure database.
87 @SYMTestExpectedResults Test must not fail
91 void ReadOnlyDatabaseTest()
93 TInt err = TheDb.Open(KTestDbName);
96 //Attempt to modify the database schema
97 err = TheDb.Exec(_L("CREATE TABLE C(FFF TEXT)"));
98 TEST2(err, KErrPermissionDenied);
99 err = TheDb.Exec(_L("CREATE TEMP TABLE TBL100(COL1 INTEGER)"));
101 err = TheDb.Exec(_L("CREATE INDEX IDX100 ON TBL100(COL1)"));
103 err = TheDb.Exec(_L("DROP INDEX IDX100"));
105 err = TheDb.Exec(_L("DROP TABLE TBL100"));
107 //Attempt to update the user data
108 err = TheDb.Exec(_L("UPDATE A SET F1 = 11 WHERE F1 = 1"));
109 TEST2(err, KErrPermissionDenied);
110 //Attempt to delete the user data
111 err = TheDb.Exec(_L("DELETE FROM B WHERE F2 = 2"));
112 TEST2(err, KErrPermissionDenied);
113 //Attempt to insert new user data
114 err = TheDb.Exec(_L("INSERT INTO B(F2, F3) VALUES(22, 'AAA')"));
115 TEST2(err, KErrPermissionDenied);
116 //Attempt to read the user data
118 err = stmt.Prepare(TheDb, _L("SELECT A.F1 FROM B,A WHERE A.F1 = B.F2"));
119 TEST2(err, KErrNone);
120 //ColumnCount() has no capabilities assigned
121 TInt colCnt = stmt.ColumnCount();
123 //DeclaredColumnType() has no capabilities assigned
124 TSqlColumnType colType;
125 err = stmt.DeclaredColumnType(0, colType);
126 TEST2(err, KErrNone);
127 TEST2(colType, ESqlInt);
129 TEST2(err, KSqlAtRow);
130 RDebug::Print(_L("Value=%d\r\n"), stmt.ColumnInt(0));
132 TEST2(err, KSqlAtRow);
133 RDebug::Print(_L("Value=%d\r\n"), stmt.ColumnInt(0));
135 //Attempt to read the system data
136 err = stmt.Prepare(TheDb, _L("SELECT * FROM SQLITE_MASTER"));
137 TEST2(err, KErrNone);
139 TEST2(err, KSqlAtRow);
141 err = stmt.ColumnText(0, p);
142 TEST2(err, KErrNone);
143 RDebug::Print(_L("Value=%S\r\n"), &p);
146 //Attempt to execute PRAGMA statement directly
147 err = TheDb.Exec(_L("PRAGMA encoding = \"UTF-8\""));
148 TEST2(err, KErrPermissionDenied);
154 @SYMTestCaseID SYSLIB-SQL-UT-4009
155 @SYMTestCaseDesc PlatSec warnings can occur even if an SQL database is successfully opened.
156 This test application has a "ReadUserData" capability, and that should allow the
157 test database ("c:[21212125]t_ab.db") to be opened successfully, because the "read"
158 database policy consists of a "ReadUserData" capability only.
159 No platsec warnings should be seen in the log file ("epocwind.out" file).
160 @SYMTestPriority High
161 @SYMTestActions PlatSec warnings can occur even if an SQL database is successfully opened.
162 @SYMTestExpectedResults Test must not fail
167 TInt err = TheDb.Open(KTestDbName);
168 TEST2(err, KErrNone);
173 @SYMTestCaseID SYSLIB-SQL-UT-4095
174 @SYMTestCaseDesc Testing incremental blob reads on a secure database.
175 The test application's capabilities allow read-only access to the blobs.
176 Verify that any attempt to write to a blob will fail with KErrPermissionDenied.
177 @SYMTestPriority High
178 @SYMTestActions Testing incremental blob reads on a secure database.
179 @SYMTestExpectedResults Test must not fail
182 void ReadOnlyBlobTestL()
184 TInt err = TheDb.Open(KTestDbName);
185 TEST2(err, KErrNone);
187 // Attempt to read the blobs in tables A and B
188 RSqlBlobReadStream rdStrm;
189 CleanupClosePushL(rdStrm);
191 TRAP(err, rdStrm.OpenL(TheDb, _L("A"), _L("B1"), 1));
192 TEST2(err, KErrNone);
193 TRAP(err, rdStrm.ReadL(data, 3));
194 TEST2(err, KErrNone);
195 TEST(data.Compare(_L8("AAA")) == 0);
197 TRAP(err, rdStrm.OpenL(TheDb, _L("B"), _L("B2"), 2));
198 TEST2(err, KErrNone);
199 TRAP(err, rdStrm.ReadL(data, 10));
200 TEST2(err, KErrNone);
201 TEST(data.Compare(_L8("FFFFFFFFFF")) == 0);
202 CleanupStack::PopAndDestroy(&rdStrm);
204 HBufC8* wholeBuf = TSqlBlob::GetLC(TheDb, _L("A"), _L("B1"), 4);
205 TEST(wholeBuf->Des().Compare(_L8("DDDDDDDDDD")) == 0);
206 CleanupStack::PopAndDestroy(wholeBuf);
207 wholeBuf = TSqlBlob::GetLC(TheDb, _L("B"), _L("B2"), 1);
208 TEST(wholeBuf->Des().Compare(_L8("EEEEEEEEEE")) == 0);
209 CleanupStack::PopAndDestroy(wholeBuf);
211 HBufC8* buf = HBufC8::NewLC(10);
212 TPtr8 bufPtr(buf->Des());
213 err = TSqlBlob::Get(TheDb, _L("A"), _L("B1"), bufPtr, 2);
214 TEST2(err, KErrNone);
215 TEST(bufPtr.Compare(_L8("BBBBBBBBBB")) == 0);
216 err = TSqlBlob::Get(TheDb, _L("B"), _L("B2"), bufPtr, 2);
217 TEST2(err, KErrNone);
218 TEST(bufPtr.Compare(_L8("FFFFFFFFFF")) == 0);
219 CleanupStack::PopAndDestroy(buf);
221 // Attempt to write to the blobs in tables A and B
222 RSqlBlobWriteStream wrStrm;
223 CleanupClosePushL(wrStrm);
224 TRAP(err, wrStrm.OpenL(TheDb, _L("A"), _L("B1"), 1));
225 TEST2(err, KErrPermissionDenied);
227 TRAP(err, wrStrm.OpenL(TheDb, _L("B"), _L("B2"), 1));
228 TEST2(err, KErrPermissionDenied);
229 CleanupStack::PopAndDestroy(&wrStrm);
231 TRAP(err, TSqlBlob::SetL(TheDb, _L("A"), _L("B1"), _L8("VVVV"), 1));
232 TEST2(err, KErrPermissionDenied);
233 TRAP(err, TSqlBlob::SetL(TheDb, _L("B"), _L("B2"), _L8("VVVV"), 1));
234 TEST2(err, KErrPermissionDenied);
236 // SQLite and system tables
238 // Attempt to read from and write to the SQLite master table - only reads should be permitted
239 CleanupClosePushL(rdStrm);
240 TRAP(err, rdStrm.OpenL(TheDb, _L("sqlite_master"), _L("tbl_name"), 1)); // TEXT column
241 TEST2(err, KErrNone);
242 TRAP(err, rdStrm.ReadL(data, 1));
243 TEST2(err, KErrNone);
244 CleanupStack::PopAndDestroy(&rdStrm);
246 wholeBuf = TSqlBlob::GetLC(TheDb, _L("sqlite_master"), _L("tbl_name"), 1);
247 TEST(wholeBuf->Length() > 0);
248 CleanupStack::PopAndDestroy(wholeBuf);
250 buf = HBufC8::NewLC(100);
251 bufPtr.Set(buf->Des());
252 err = TSqlBlob::Get(TheDb, _L("sqlite_master"), _L("tbl_name"), bufPtr, 1);
253 TEST2(err, KErrNone);
254 TEST(bufPtr.Length() > 0);
255 CleanupStack::PopAndDestroy(buf);
257 CleanupClosePushL(wrStrm);
258 TRAP(err, wrStrm.OpenL(TheDb, _L("sqlite_master"), _L("tbl_name"), 1));
259 TEST2(err, KErrPermissionDenied);
260 CleanupStack::PopAndDestroy(&wrStrm);
262 TRAP(err, TSqlBlob::SetL(TheDb, _L("sqlite_master"), _L("tbl_name"), _L8("VVVV"), 1));
263 TEST2(err, KErrPermissionDenied);
265 // Attempt to read from and write to the system tables - neither reads nor writes should be permitted
266 CleanupClosePushL(rdStrm);
267 TRAP(err, rdStrm.OpenL(TheDb, _L("symbian_security"), _L("PolicyData"), 1)); // BLOB column
268 TEST2(err, KErrPermissionDenied);
269 CleanupStack::PopAndDestroy(&rdStrm);
271 TRAP(err, wholeBuf = TSqlBlob::GetLC(TheDb, _L("symbian_security"), _L("PolicyData"), 1));
272 TEST2(err, KErrPermissionDenied);
274 buf = HBufC8::NewLC(100);
275 bufPtr.Set(buf->Des());
276 err = TSqlBlob::Get(TheDb, _L("symbian_security"), _L("PolicyData"), bufPtr, 1);
277 TEST2(err, KErrPermissionDenied);
278 CleanupStack::PopAndDestroy(buf);
280 CleanupClosePushL(wrStrm);
281 TRAP(err, wrStrm.OpenL(TheDb, _L("symbian_security"), _L("PolicyData"), 1));
282 TEST2(err, KErrPermissionDenied);
283 CleanupStack::PopAndDestroy(&wrStrm);
285 TRAP(err, TSqlBlob::SetL(TheDb, _L("symbian_security"), _L("PolicyData"), _L8("VVVV"), 1));
286 TEST2(err, KErrPermissionDenied);
292 @SYMTestCaseID SYSLIB-SQL-UT-4078
293 @SYMTestCaseDesc RSqlDatabase::Compact(), platsec test.
294 The test verifies that RSqlDatabase::Compact() can be called
295 on the main or on an attached database no matter what the client capabilities are.
296 @SYMTestPriority Medium
297 @SYMTestActions RSqlDatabase::Compact(), platsec test.
298 @SYMTestExpectedResults Test must not fail
303 TInt err = TheDb.Open(KTestDbName);
304 TEST2(err, KErrNone);
306 err = TheDb.Compact(RSqlDatabase::EMaxCompaction);
310 TheDb.Compact(RSqlDatabase::EMaxCompaction, stat);
311 User::WaitForRequest(stat);
312 TEST(stat.Int() >= 0);
316 err = TheDb.Create(KTestDbName2);
317 TEST2(err, KErrNone);
319 err = TheDb.Attach(KTestDbName, KDbName);
320 TEST2(err, KErrNone);
322 err = TheDb.Compact(RSqlDatabase::EMaxCompaction, KDbName);
325 TheDb.Compact(RSqlDatabase::EMaxCompaction, stat, KDbName);
326 User::WaitForRequest(stat);
327 TEST(stat.Int() >= 0);
329 err = TheDb.Detach(KDbName);
331 (void)RSqlDatabase::Delete(KTestDbName2);
336 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1644 Read-only database access test "));
337 ReadOnlyDatabaseTest();
339 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4009 DEF115811 - PlatSec warnings can occur even if an SQL database is successfully opened "));
342 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4095 - Read-only blob access test"));
345 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4078 - RSqlDatabase::Compact() test"));
353 CTrapCleanup* tc = CTrapCleanup::New();
357 TRAPD(err, DoTestsL());
358 TEST2(err, KErrNone);
367 User::Heap().Check();