sl@0
|
1 |
// Copyright (c) 2006-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 |
// t_sqlsecurity2 application has capabilities allowing read-only access to the test database
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32test.h>
|
sl@0
|
19 |
#include <bautils.h>
|
sl@0
|
20 |
#include <sqldb.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
23 |
//The test database has:
|
sl@0
|
24 |
// SCHEMA database policy: ECapabilityReadDeviceData, ECapabilityWriteUserData, ECapabilityReadUserData
|
sl@0
|
25 |
// WRITE database policy: ECapabilityWriteUserData
|
sl@0
|
26 |
// READ database policy: ECapabilityReadUserData
|
sl@0
|
27 |
//
|
sl@0
|
28 |
//Database tables:
|
sl@0
|
29 |
// TABLE A(F1 INTEGER, B1 BLOB)
|
sl@0
|
30 |
// TABLE B(F2 INTEGER, F3 TEXT, B2 BLOB)
|
sl@0
|
31 |
//
|
sl@0
|
32 |
//Database data:
|
sl@0
|
33 |
// TABLE A: {1, x'41414141414141414141'}, {2, x'42424242424242424242'}, {3, x'43434343434343434343'}, {4, x'44444444444444444444'}
|
sl@0
|
34 |
// TABLE B: {2, "ABC", x'45454545454545454545'}, {4, "DEF", x'46464646464646464646'}
|
sl@0
|
35 |
|
sl@0
|
36 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
37 |
|
sl@0
|
38 |
#define UNUSED_VAR(a) (a) = (a)
|
sl@0
|
39 |
|
sl@0
|
40 |
RTest TheTest(_L("t_sqlsecurity2 test"));
|
sl@0
|
41 |
RSqlDatabase TheDb;
|
sl@0
|
42 |
|
sl@0
|
43 |
_LIT(KTestDbName, "c:[21212125]t_ab.db");
|
sl@0
|
44 |
_LIT(KTestDbName2, "c:\\test\\t_sqlsecurity2_2.db");
|
sl@0
|
45 |
|
sl@0
|
46 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
47 |
|
sl@0
|
48 |
void DeleteTestDb()
|
sl@0
|
49 |
{
|
sl@0
|
50 |
TheDb.Close();
|
sl@0
|
51 |
(void)RSqlDatabase::Delete(KTestDbName2);
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
55 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
56 |
//Test macros and functions
|
sl@0
|
57 |
void Check1(TInt aValue, TInt aLine)
|
sl@0
|
58 |
{
|
sl@0
|
59 |
if(!aValue)
|
sl@0
|
60 |
{
|
sl@0
|
61 |
DeleteTestDb();
|
sl@0
|
62 |
RDebug::Print(_L("*** Line %d\r\n"), aLine);
|
sl@0
|
63 |
TheTest(EFalse, aLine);
|
sl@0
|
64 |
}
|
sl@0
|
65 |
}
|
sl@0
|
66 |
void Check2(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
67 |
{
|
sl@0
|
68 |
if(aValue != aExpected)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
DeleteTestDb();
|
sl@0
|
71 |
RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
|
sl@0
|
72 |
TheTest(EFalse, aLine);
|
sl@0
|
73 |
}
|
sl@0
|
74 |
}
|
sl@0
|
75 |
#define TEST(arg) ::Check1((arg), __LINE__)
|
sl@0
|
76 |
#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
|
sl@0
|
77 |
|
sl@0
|
78 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
79 |
|
sl@0
|
80 |
/**
|
sl@0
|
81 |
@SYMTestCaseID SYSLIB-SQL-CT-1644
|
sl@0
|
82 |
@SYMTestCaseDesc Testing database operations on a secure database.
|
sl@0
|
83 |
The test application's capabilities allow read-only access to the test secure database.
|
sl@0
|
84 |
Verify that any other kind of a database operation will fail with KErrPermissionDenied error.
|
sl@0
|
85 |
@SYMTestPriority High
|
sl@0
|
86 |
@SYMTestActions Testing database operations on a secure database.
|
sl@0
|
87 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
88 |
@SYMREQ REQ5792
|
sl@0
|
89 |
REQ5793
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
void ReadOnlyDatabaseTest()
|
sl@0
|
92 |
{
|
sl@0
|
93 |
TInt err = TheDb.Open(KTestDbName);
|
sl@0
|
94 |
TEST2(err, KErrNone);
|
sl@0
|
95 |
|
sl@0
|
96 |
//Attempt to modify the database schema
|
sl@0
|
97 |
err = TheDb.Exec(_L("CREATE TABLE C(FFF TEXT)"));
|
sl@0
|
98 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
99 |
err = TheDb.Exec(_L("CREATE TEMP TABLE TBL100(COL1 INTEGER)"));
|
sl@0
|
100 |
TEST(err >= 0);
|
sl@0
|
101 |
err = TheDb.Exec(_L("CREATE INDEX IDX100 ON TBL100(COL1)"));
|
sl@0
|
102 |
TEST(err >= 0);
|
sl@0
|
103 |
err = TheDb.Exec(_L("DROP INDEX IDX100"));
|
sl@0
|
104 |
TEST(err >= 0);
|
sl@0
|
105 |
err = TheDb.Exec(_L("DROP TABLE TBL100"));
|
sl@0
|
106 |
TEST(err >= 0);
|
sl@0
|
107 |
//Attempt to update the user data
|
sl@0
|
108 |
err = TheDb.Exec(_L("UPDATE A SET F1 = 11 WHERE F1 = 1"));
|
sl@0
|
109 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
110 |
//Attempt to delete the user data
|
sl@0
|
111 |
err = TheDb.Exec(_L("DELETE FROM B WHERE F2 = 2"));
|
sl@0
|
112 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
113 |
//Attempt to insert new user data
|
sl@0
|
114 |
err = TheDb.Exec(_L("INSERT INTO B(F2, F3) VALUES(22, 'AAA')"));
|
sl@0
|
115 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
116 |
//Attempt to read the user data
|
sl@0
|
117 |
RSqlStatement stmt;
|
sl@0
|
118 |
err = stmt.Prepare(TheDb, _L("SELECT A.F1 FROM B,A WHERE A.F1 = B.F2"));
|
sl@0
|
119 |
TEST2(err, KErrNone);
|
sl@0
|
120 |
//ColumnCount() has no capabilities assigned
|
sl@0
|
121 |
TInt colCnt = stmt.ColumnCount();
|
sl@0
|
122 |
TEST2(colCnt, 1);
|
sl@0
|
123 |
//DeclaredColumnType() has no capabilities assigned
|
sl@0
|
124 |
TSqlColumnType colType;
|
sl@0
|
125 |
err = stmt.DeclaredColumnType(0, colType);
|
sl@0
|
126 |
TEST2(err, KErrNone);
|
sl@0
|
127 |
TEST2(colType, ESqlInt);
|
sl@0
|
128 |
err = stmt.Next();
|
sl@0
|
129 |
TEST2(err, KSqlAtRow);
|
sl@0
|
130 |
RDebug::Print(_L("Value=%d\r\n"), stmt.ColumnInt(0));
|
sl@0
|
131 |
err = stmt.Next();
|
sl@0
|
132 |
TEST2(err, KSqlAtRow);
|
sl@0
|
133 |
RDebug::Print(_L("Value=%d\r\n"), stmt.ColumnInt(0));
|
sl@0
|
134 |
stmt.Close();
|
sl@0
|
135 |
//Attempt to read the system data
|
sl@0
|
136 |
err = stmt.Prepare(TheDb, _L("SELECT * FROM SQLITE_MASTER"));
|
sl@0
|
137 |
TEST2(err, KErrNone);
|
sl@0
|
138 |
err = stmt.Next();
|
sl@0
|
139 |
TEST2(err, KSqlAtRow);
|
sl@0
|
140 |
TPtrC p;
|
sl@0
|
141 |
err = stmt.ColumnText(0, p);
|
sl@0
|
142 |
TEST2(err, KErrNone);
|
sl@0
|
143 |
RDebug::Print(_L("Value=%S\r\n"), &p);
|
sl@0
|
144 |
stmt.Close();
|
sl@0
|
145 |
|
sl@0
|
146 |
//Attempt to execute PRAGMA statement directly
|
sl@0
|
147 |
err = TheDb.Exec(_L("PRAGMA encoding = \"UTF-8\""));
|
sl@0
|
148 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
149 |
|
sl@0
|
150 |
TheDb.Close();
|
sl@0
|
151 |
}
|
sl@0
|
152 |
|
sl@0
|
153 |
/**
|
sl@0
|
154 |
@SYMTestCaseID SYSLIB-SQL-UT-4009
|
sl@0
|
155 |
@SYMTestCaseDesc PlatSec warnings can occur even if an SQL database is successfully opened.
|
sl@0
|
156 |
This test application has a "ReadUserData" capability, and that should allow the
|
sl@0
|
157 |
test database ("c:[21212125]t_ab.db") to be opened successfully, because the "read"
|
sl@0
|
158 |
database policy consists of a "ReadUserData" capability only.
|
sl@0
|
159 |
No platsec warnings should be seen in the log file ("epocwind.out" file).
|
sl@0
|
160 |
@SYMTestPriority High
|
sl@0
|
161 |
@SYMTestActions PlatSec warnings can occur even if an SQL database is successfully opened.
|
sl@0
|
162 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
163 |
@SYMDEF DEF115811
|
sl@0
|
164 |
*/
|
sl@0
|
165 |
void DEF115811()
|
sl@0
|
166 |
{
|
sl@0
|
167 |
TInt err = TheDb.Open(KTestDbName);
|
sl@0
|
168 |
TEST2(err, KErrNone);
|
sl@0
|
169 |
TheDb.Close();
|
sl@0
|
170 |
}
|
sl@0
|
171 |
|
sl@0
|
172 |
/**
|
sl@0
|
173 |
@SYMTestCaseID SYSLIB-SQL-UT-4095
|
sl@0
|
174 |
@SYMTestCaseDesc Testing incremental blob reads on a secure database.
|
sl@0
|
175 |
The test application's capabilities allow read-only access to the blobs.
|
sl@0
|
176 |
Verify that any attempt to write to a blob will fail with KErrPermissionDenied.
|
sl@0
|
177 |
@SYMTestPriority High
|
sl@0
|
178 |
@SYMTestActions Testing incremental blob reads on a secure database.
|
sl@0
|
179 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
180 |
@SYMREQ REQ5794
|
sl@0
|
181 |
*/
|
sl@0
|
182 |
void ReadOnlyBlobTestL()
|
sl@0
|
183 |
{
|
sl@0
|
184 |
TInt err = TheDb.Open(KTestDbName);
|
sl@0
|
185 |
TEST2(err, KErrNone);
|
sl@0
|
186 |
|
sl@0
|
187 |
// Attempt to read the blobs in tables A and B
|
sl@0
|
188 |
RSqlBlobReadStream rdStrm;
|
sl@0
|
189 |
CleanupClosePushL(rdStrm);
|
sl@0
|
190 |
TBuf8<20> data;
|
sl@0
|
191 |
TRAP(err, rdStrm.OpenL(TheDb, _L("A"), _L("B1"), 1));
|
sl@0
|
192 |
TEST2(err, KErrNone);
|
sl@0
|
193 |
TRAP(err, rdStrm.ReadL(data, 3));
|
sl@0
|
194 |
TEST2(err, KErrNone);
|
sl@0
|
195 |
TEST(data.Compare(_L8("AAA")) == 0);
|
sl@0
|
196 |
rdStrm.Close();
|
sl@0
|
197 |
TRAP(err, rdStrm.OpenL(TheDb, _L("B"), _L("B2"), 2));
|
sl@0
|
198 |
TEST2(err, KErrNone);
|
sl@0
|
199 |
TRAP(err, rdStrm.ReadL(data, 10));
|
sl@0
|
200 |
TEST2(err, KErrNone);
|
sl@0
|
201 |
TEST(data.Compare(_L8("FFFFFFFFFF")) == 0);
|
sl@0
|
202 |
CleanupStack::PopAndDestroy(&rdStrm);
|
sl@0
|
203 |
|
sl@0
|
204 |
HBufC8* wholeBuf = TSqlBlob::GetLC(TheDb, _L("A"), _L("B1"), 4);
|
sl@0
|
205 |
TEST(wholeBuf->Des().Compare(_L8("DDDDDDDDDD")) == 0);
|
sl@0
|
206 |
CleanupStack::PopAndDestroy(wholeBuf);
|
sl@0
|
207 |
wholeBuf = TSqlBlob::GetLC(TheDb, _L("B"), _L("B2"), 1);
|
sl@0
|
208 |
TEST(wholeBuf->Des().Compare(_L8("EEEEEEEEEE")) == 0);
|
sl@0
|
209 |
CleanupStack::PopAndDestroy(wholeBuf);
|
sl@0
|
210 |
|
sl@0
|
211 |
HBufC8* buf = HBufC8::NewLC(10);
|
sl@0
|
212 |
TPtr8 bufPtr(buf->Des());
|
sl@0
|
213 |
err = TSqlBlob::Get(TheDb, _L("A"), _L("B1"), bufPtr, 2);
|
sl@0
|
214 |
TEST2(err, KErrNone);
|
sl@0
|
215 |
TEST(bufPtr.Compare(_L8("BBBBBBBBBB")) == 0);
|
sl@0
|
216 |
err = TSqlBlob::Get(TheDb, _L("B"), _L("B2"), bufPtr, 2);
|
sl@0
|
217 |
TEST2(err, KErrNone);
|
sl@0
|
218 |
TEST(bufPtr.Compare(_L8("FFFFFFFFFF")) == 0);
|
sl@0
|
219 |
CleanupStack::PopAndDestroy(buf);
|
sl@0
|
220 |
|
sl@0
|
221 |
// Attempt to write to the blobs in tables A and B
|
sl@0
|
222 |
RSqlBlobWriteStream wrStrm;
|
sl@0
|
223 |
CleanupClosePushL(wrStrm);
|
sl@0
|
224 |
TRAP(err, wrStrm.OpenL(TheDb, _L("A"), _L("B1"), 1));
|
sl@0
|
225 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
226 |
wrStrm.Close();
|
sl@0
|
227 |
TRAP(err, wrStrm.OpenL(TheDb, _L("B"), _L("B2"), 1));
|
sl@0
|
228 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
229 |
CleanupStack::PopAndDestroy(&wrStrm);
|
sl@0
|
230 |
|
sl@0
|
231 |
TRAP(err, TSqlBlob::SetL(TheDb, _L("A"), _L("B1"), _L8("VVVV"), 1));
|
sl@0
|
232 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
233 |
TRAP(err, TSqlBlob::SetL(TheDb, _L("B"), _L("B2"), _L8("VVVV"), 1));
|
sl@0
|
234 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
235 |
|
sl@0
|
236 |
// SQLite and system tables
|
sl@0
|
237 |
|
sl@0
|
238 |
// Attempt to read from and write to the SQLite master table - only reads should be permitted
|
sl@0
|
239 |
CleanupClosePushL(rdStrm);
|
sl@0
|
240 |
TRAP(err, rdStrm.OpenL(TheDb, _L("sqlite_master"), _L("tbl_name"), 1)); // TEXT column
|
sl@0
|
241 |
TEST2(err, KErrNone);
|
sl@0
|
242 |
TRAP(err, rdStrm.ReadL(data, 1));
|
sl@0
|
243 |
TEST2(err, KErrNone);
|
sl@0
|
244 |
CleanupStack::PopAndDestroy(&rdStrm);
|
sl@0
|
245 |
|
sl@0
|
246 |
wholeBuf = TSqlBlob::GetLC(TheDb, _L("sqlite_master"), _L("tbl_name"), 1);
|
sl@0
|
247 |
TEST(wholeBuf->Length() > 0);
|
sl@0
|
248 |
CleanupStack::PopAndDestroy(wholeBuf);
|
sl@0
|
249 |
|
sl@0
|
250 |
buf = HBufC8::NewLC(100);
|
sl@0
|
251 |
bufPtr.Set(buf->Des());
|
sl@0
|
252 |
err = TSqlBlob::Get(TheDb, _L("sqlite_master"), _L("tbl_name"), bufPtr, 1);
|
sl@0
|
253 |
TEST2(err, KErrNone);
|
sl@0
|
254 |
TEST(bufPtr.Length() > 0);
|
sl@0
|
255 |
CleanupStack::PopAndDestroy(buf);
|
sl@0
|
256 |
|
sl@0
|
257 |
CleanupClosePushL(wrStrm);
|
sl@0
|
258 |
TRAP(err, wrStrm.OpenL(TheDb, _L("sqlite_master"), _L("tbl_name"), 1));
|
sl@0
|
259 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
260 |
CleanupStack::PopAndDestroy(&wrStrm);
|
sl@0
|
261 |
|
sl@0
|
262 |
TRAP(err, TSqlBlob::SetL(TheDb, _L("sqlite_master"), _L("tbl_name"), _L8("VVVV"), 1));
|
sl@0
|
263 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
264 |
|
sl@0
|
265 |
// Attempt to read from and write to the system tables - neither reads nor writes should be permitted
|
sl@0
|
266 |
CleanupClosePushL(rdStrm);
|
sl@0
|
267 |
TRAP(err, rdStrm.OpenL(TheDb, _L("symbian_security"), _L("PolicyData"), 1)); // BLOB column
|
sl@0
|
268 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
269 |
CleanupStack::PopAndDestroy(&rdStrm);
|
sl@0
|
270 |
|
sl@0
|
271 |
TRAP(err, wholeBuf = TSqlBlob::GetLC(TheDb, _L("symbian_security"), _L("PolicyData"), 1));
|
sl@0
|
272 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
273 |
|
sl@0
|
274 |
buf = HBufC8::NewLC(100);
|
sl@0
|
275 |
bufPtr.Set(buf->Des());
|
sl@0
|
276 |
err = TSqlBlob::Get(TheDb, _L("symbian_security"), _L("PolicyData"), bufPtr, 1);
|
sl@0
|
277 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
278 |
CleanupStack::PopAndDestroy(buf);
|
sl@0
|
279 |
|
sl@0
|
280 |
CleanupClosePushL(wrStrm);
|
sl@0
|
281 |
TRAP(err, wrStrm.OpenL(TheDb, _L("symbian_security"), _L("PolicyData"), 1));
|
sl@0
|
282 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
283 |
CleanupStack::PopAndDestroy(&wrStrm);
|
sl@0
|
284 |
|
sl@0
|
285 |
TRAP(err, TSqlBlob::SetL(TheDb, _L("symbian_security"), _L("PolicyData"), _L8("VVVV"), 1));
|
sl@0
|
286 |
TEST2(err, KErrPermissionDenied);
|
sl@0
|
287 |
|
sl@0
|
288 |
TheDb.Close();
|
sl@0
|
289 |
}
|
sl@0
|
290 |
|
sl@0
|
291 |
/**
|
sl@0
|
292 |
@SYMTestCaseID SYSLIB-SQL-UT-4078
|
sl@0
|
293 |
@SYMTestCaseDesc RSqlDatabase::Compact(), platsec test.
|
sl@0
|
294 |
The test verifies that RSqlDatabase::Compact() can be called
|
sl@0
|
295 |
on the main or on an attached database no matter what the client capabilities are.
|
sl@0
|
296 |
@SYMTestPriority Medium
|
sl@0
|
297 |
@SYMTestActions RSqlDatabase::Compact(), platsec test.
|
sl@0
|
298 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
299 |
@SYMREQ REQ10405
|
sl@0
|
300 |
*/
|
sl@0
|
301 |
void CompactTest()
|
sl@0
|
302 |
{
|
sl@0
|
303 |
TInt err = TheDb.Open(KTestDbName);
|
sl@0
|
304 |
TEST2(err, KErrNone);
|
sl@0
|
305 |
|
sl@0
|
306 |
err = TheDb.Compact(RSqlDatabase::EMaxCompaction);
|
sl@0
|
307 |
TEST(err >= 0);
|
sl@0
|
308 |
|
sl@0
|
309 |
TRequestStatus stat;
|
sl@0
|
310 |
TheDb.Compact(RSqlDatabase::EMaxCompaction, stat);
|
sl@0
|
311 |
User::WaitForRequest(stat);
|
sl@0
|
312 |
TEST(stat.Int() >= 0);
|
sl@0
|
313 |
|
sl@0
|
314 |
TheDb.Close();
|
sl@0
|
315 |
|
sl@0
|
316 |
err = TheDb.Create(KTestDbName2);
|
sl@0
|
317 |
TEST2(err, KErrNone);
|
sl@0
|
318 |
_LIT(KDbName, "Db");
|
sl@0
|
319 |
err = TheDb.Attach(KTestDbName, KDbName);
|
sl@0
|
320 |
TEST2(err, KErrNone);
|
sl@0
|
321 |
|
sl@0
|
322 |
err = TheDb.Compact(RSqlDatabase::EMaxCompaction, KDbName);
|
sl@0
|
323 |
TEST(err >= 0);
|
sl@0
|
324 |
|
sl@0
|
325 |
TheDb.Compact(RSqlDatabase::EMaxCompaction, stat, KDbName);
|
sl@0
|
326 |
User::WaitForRequest(stat);
|
sl@0
|
327 |
TEST(stat.Int() >= 0);
|
sl@0
|
328 |
|
sl@0
|
329 |
err = TheDb.Detach(KDbName);
|
sl@0
|
330 |
TheDb.Close();
|
sl@0
|
331 |
(void)RSqlDatabase::Delete(KTestDbName2);
|
sl@0
|
332 |
}
|
sl@0
|
333 |
|
sl@0
|
334 |
void DoTestsL()
|
sl@0
|
335 |
{
|
sl@0
|
336 |
TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1644 Read-only database access test "));
|
sl@0
|
337 |
ReadOnlyDatabaseTest();
|
sl@0
|
338 |
|
sl@0
|
339 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4009 DEF115811 - PlatSec warnings can occur even if an SQL database is successfully opened "));
|
sl@0
|
340 |
DEF115811();
|
sl@0
|
341 |
|
sl@0
|
342 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4095 - Read-only blob access test"));
|
sl@0
|
343 |
ReadOnlyBlobTestL();
|
sl@0
|
344 |
|
sl@0
|
345 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4078 - RSqlDatabase::Compact() test"));
|
sl@0
|
346 |
CompactTest();
|
sl@0
|
347 |
}
|
sl@0
|
348 |
|
sl@0
|
349 |
TInt E32Main()
|
sl@0
|
350 |
{
|
sl@0
|
351 |
TheTest.Title();
|
sl@0
|
352 |
|
sl@0
|
353 |
CTrapCleanup* tc = CTrapCleanup::New();
|
sl@0
|
354 |
|
sl@0
|
355 |
__UHEAP_MARK;
|
sl@0
|
356 |
|
sl@0
|
357 |
TRAPD(err, DoTestsL());
|
sl@0
|
358 |
TEST2(err, KErrNone);
|
sl@0
|
359 |
|
sl@0
|
360 |
__UHEAP_MARKEND;
|
sl@0
|
361 |
|
sl@0
|
362 |
TheTest.End();
|
sl@0
|
363 |
TheTest.Close();
|
sl@0
|
364 |
|
sl@0
|
365 |
delete tc;
|
sl@0
|
366 |
|
sl@0
|
367 |
User::Heap().Check();
|
sl@0
|
368 |
return KErrNone;
|
sl@0
|
369 |
}
|