sl@0
|
1 |
// Copyright (c) 2005-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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "t_sqloom.h"
|
sl@0
|
17 |
|
sl@0
|
18 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
19 |
/////////////// RSqlDatabase OOM tests ////////////////////////////////
|
sl@0
|
20 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
21 |
|
sl@0
|
22 |
/**
|
sl@0
|
23 |
@SYMTestCaseID SYSLIB-SQL-CT-1615, SYSLIB-SQL-CT-1639
|
sl@0
|
24 |
@SYMTestCaseDesc RSqlDatabase::Create() OOM test - secure and non-secure databases.
|
sl@0
|
25 |
Precondition: the database does not exist.
|
sl@0
|
26 |
The test calls RSqlDatabase::Create() while simulating OOM failures and checks
|
sl@0
|
27 |
that there are no memory and resource leaks.
|
sl@0
|
28 |
Note: It's possible for a database to be created even after memory allocation
|
sl@0
|
29 |
has failed. This is because SQLITE reuses some pages of the page cache which
|
sl@0
|
30 |
have been allocated but are curently not in use. This means it is necessary
|
sl@0
|
31 |
to delete the database and continue checking for memory and resource leaks
|
sl@0
|
32 |
even after a database has been created successfully.
|
sl@0
|
33 |
@SYMTestPriority High
|
sl@0
|
34 |
@SYMTestActions RSqlDatabase::Create() OOM test
|
sl@0
|
35 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
36 |
@SYMREQ REQ5792
|
sl@0
|
37 |
REQ5793
|
sl@0
|
38 |
REQ10271
|
sl@0
|
39 |
REQ10273
|
sl@0
|
40 |
REQ10274
|
sl@0
|
41 |
*/
|
sl@0
|
42 |
void DoCreateDatabaseOomTest(const TDesC& aDbFileName, TDbType aDbType, TInt aExpectedError, const TDesC8* aConfigStr = NULL)
|
sl@0
|
43 |
{
|
sl@0
|
44 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1639 RSqlDatabase::Create() - OOM test"));
|
sl@0
|
45 |
RSqlSecurityPolicy securityPolicy;
|
sl@0
|
46 |
CreateTestSecurityPolicy(securityPolicy);
|
sl@0
|
47 |
enum TMethodType {ENonLeavingMethod, ELeavingMethod};
|
sl@0
|
48 |
const TMethodType KMethodType[] = {ENonLeavingMethod, ELeavingMethod};
|
sl@0
|
49 |
for(TInt j=0;j<sizeof(KMethodType)/sizeof(KMethodType[0]);++j)
|
sl@0
|
50 |
{
|
sl@0
|
51 |
for(TInt i=0;i<(TInt)(sizeof(TheOomTestType)/sizeof(TheOomTestType[0]));++i)
|
sl@0
|
52 |
{
|
sl@0
|
53 |
if(aExpectedError != KErrAlreadyExists)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
(void)RSqlDatabase::Delete(aDbFileName);
|
sl@0
|
56 |
}
|
sl@0
|
57 |
TInt err = KErrNone;
|
sl@0
|
58 |
TInt failingAllocationNo = 0;
|
sl@0
|
59 |
TInt allocationNo = 0;
|
sl@0
|
60 |
TInt maxAllocationNo = TheOomTestType[i] == EServerSideTest ? KDoCreateDatabaseOomTestAllocLimitServer : KDoCreateDatabaseOomTestAllocLimitClient;
|
sl@0
|
61 |
while(allocationNo < maxAllocationNo)
|
sl@0
|
62 |
{
|
sl@0
|
63 |
MarkHandles();
|
sl@0
|
64 |
MarkAllocatedCells();
|
sl@0
|
65 |
|
sl@0
|
66 |
__UHEAP_MARK;
|
sl@0
|
67 |
|
sl@0
|
68 |
RSqlDatabase db;
|
sl@0
|
69 |
|
sl@0
|
70 |
SetDbHeapFailure(TheOomTestType[i], ++allocationNo);
|
sl@0
|
71 |
|
sl@0
|
72 |
if(KMethodType[j] == ENonLeavingMethod)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
err = aDbType == ESecureDb ? db.Create(aDbFileName, securityPolicy, aConfigStr) : db.Create(aDbFileName, aConfigStr);
|
sl@0
|
75 |
}
|
sl@0
|
76 |
else
|
sl@0
|
77 |
{
|
sl@0
|
78 |
TRAP(err, aDbType == ESecureDb ? db.CreateL(aDbFileName, securityPolicy, aConfigStr) : db.CreateL(aDbFileName, aConfigStr));
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
db.Close();
|
sl@0
|
82 |
if(err != KErrNoMemory)
|
sl@0
|
83 |
{
|
sl@0
|
84 |
TEST2(err, aExpectedError);
|
sl@0
|
85 |
}
|
sl@0
|
86 |
else
|
sl@0
|
87 |
{
|
sl@0
|
88 |
failingAllocationNo = allocationNo;
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
ResetDbHeapFailure(TheOomTestType[i]);
|
sl@0
|
92 |
|
sl@0
|
93 |
if(err == KErrNone && aExpectedError != KErrAlreadyExists)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
err = db.Delete(aDbFileName);
|
sl@0
|
96 |
TEST2(err, KErrNone);
|
sl@0
|
97 |
}
|
sl@0
|
98 |
|
sl@0
|
99 |
__UHEAP_MARKEND;
|
sl@0
|
100 |
|
sl@0
|
101 |
CheckAllocatedCells();
|
sl@0
|
102 |
CheckHandles();
|
sl@0
|
103 |
|
sl@0
|
104 |
if(err == KErrNoMemory && allocationNo == maxAllocationNo)
|
sl@0
|
105 |
{
|
sl@0
|
106 |
maxAllocationNo += 10;
|
sl@0
|
107 |
}
|
sl@0
|
108 |
}
|
sl@0
|
109 |
TEST2(err, aExpectedError);
|
sl@0
|
110 |
PrintEndOfOomTest(TheOomTestType[i], failingAllocationNo + 1);
|
sl@0
|
111 |
}
|
sl@0
|
112 |
}
|
sl@0
|
113 |
RSqlDatabase::Delete(aDbFileName);
|
sl@0
|
114 |
securityPolicy.Close();
|
sl@0
|
115 |
}
|
sl@0
|
116 |
|
sl@0
|
117 |
//"RSqlDatabase::Open()" OOM test
|
sl@0
|
118 |
void OpenDatabaseL(RSqlDatabase& aDb, const TDesC& aDbFileName, TDbType)
|
sl@0
|
119 |
{
|
sl@0
|
120 |
TInt err = aDb.Open(aDbFileName);
|
sl@0
|
121 |
User::LeaveIfError(err);
|
sl@0
|
122 |
}
|
sl@0
|
123 |
|
sl@0
|
124 |
//"RSqlDatabase::OpenL()" OOM test
|
sl@0
|
125 |
void OpenDatabase2L(RSqlDatabase& aDb, const TDesC& aDbFileName, TDbType)
|
sl@0
|
126 |
{
|
sl@0
|
127 |
aDb.OpenL(aDbFileName);
|
sl@0
|
128 |
}
|
sl@0
|
129 |
|
sl@0
|
130 |
//"RSqlDatabase::Open()" + config string OOM test
|
sl@0
|
131 |
void OpenDatabase3L(RSqlDatabase& aDb, const TDesC& aDbFileName, TDbType)
|
sl@0
|
132 |
{
|
sl@0
|
133 |
_LIT8(KConfig, "cache_size=128;compaction=auto");
|
sl@0
|
134 |
TInt err = aDb.Open(aDbFileName, &KConfig);
|
sl@0
|
135 |
User::LeaveIfError(err);
|
sl@0
|
136 |
}
|
sl@0
|
137 |
|
sl@0
|
138 |
//"RSqlDatabase::Open() - from handle" OOM test
|
sl@0
|
139 |
void OpenDatabaseFromHandleL(RSqlDatabase& aDb, const TDesC& aDbFileName, TDbType)
|
sl@0
|
140 |
{
|
sl@0
|
141 |
TInt err = aDb.Open(aDbFileName);
|
sl@0
|
142 |
User::LeaveIfError(err);
|
sl@0
|
143 |
}
|
sl@0
|
144 |
|
sl@0
|
145 |
//"RSqlDatabase::Open() - from handle + config string" OOM test
|
sl@0
|
146 |
void OpenDatabaseFromHandle2L(RSqlDatabase& aDb, const TDesC& aDbFileName, TDbType)
|
sl@0
|
147 |
{
|
sl@0
|
148 |
_LIT8(KConfig, "cache_size=128;compaction=background");
|
sl@0
|
149 |
TInt err = aDb.Open(aDbFileName, &KConfig);
|
sl@0
|
150 |
User::LeaveIfError(err);
|
sl@0
|
151 |
}
|
sl@0
|
152 |
|
sl@0
|
153 |
//"RSqlDatabase::Exec()" OOM test (8-bit SQL statements)
|
sl@0
|
154 |
void ExecStatement8L(RSqlDatabase& aDb, const TDesC&, TDbType)
|
sl@0
|
155 |
{
|
sl@0
|
156 |
_LIT8(KSqlString, "BEGIN;\
|
sl@0
|
157 |
CREATE TABLE BBB(Fld1 INTEGER, Fld2 BIGINT, Fld3 DOUBLE, Fld4 TEXT);\
|
sl@0
|
158 |
INSERT INTO BBB(fld1, fld2, fld3, fld4) VALUES(4562, 123456789012345, 78612.0091, 'text data');\
|
sl@0
|
159 |
COMMIT;");
|
sl@0
|
160 |
TInt err = aDb.Exec(KSqlString);
|
sl@0
|
161 |
User::LeaveIfError(err);
|
sl@0
|
162 |
}
|
sl@0
|
163 |
|
sl@0
|
164 |
//"RSqlDatabase::Exec()" OOM test (16-bit SQL statements)
|
sl@0
|
165 |
void ExecStatement16L(RSqlDatabase& aDb, const TDesC&, TDbType)
|
sl@0
|
166 |
{
|
sl@0
|
167 |
_LIT(KSqlString, "BEGIN;\
|
sl@0
|
168 |
CREATE TABLE BBB(Fld1 INTEGER, Fld2 BIGINT, Fld3 DOUBLE, Fld4 TEXT);\
|
sl@0
|
169 |
INSERT INTO BBB(fld1, fld2, fld3, fld4) VALUES(4562, 123456789012345, 78612.0091, 'text data');\
|
sl@0
|
170 |
COMMIT;");
|
sl@0
|
171 |
TInt err = aDb.Exec(KSqlString);
|
sl@0
|
172 |
User::LeaveIfError(err);
|
sl@0
|
173 |
}
|
sl@0
|
174 |
|
sl@0
|
175 |
//"RSqlDatabase::SetIsolationLevel()" OOM test
|
sl@0
|
176 |
void SetIsolationLevelL(RSqlDatabase& aDb, const TDesC&, TDbType)
|
sl@0
|
177 |
{
|
sl@0
|
178 |
TInt err = aDb.SetIsolationLevel(RSqlDatabase::EReadUncommitted);
|
sl@0
|
179 |
User::LeaveIfError(err);
|
sl@0
|
180 |
}
|
sl@0
|
181 |
|
sl@0
|
182 |
//"RSqlDatabase::Size()" OOM test
|
sl@0
|
183 |
void DbSizeL(RSqlDatabase& aDb, const TDesC&, TDbType)
|
sl@0
|
184 |
{
|
sl@0
|
185 |
TInt rc = aDb.Size();
|
sl@0
|
186 |
User::LeaveIfError(rc);
|
sl@0
|
187 |
}
|
sl@0
|
188 |
|
sl@0
|
189 |
//"RSqlDatabase::Size(TSize&)" OOM test
|
sl@0
|
190 |
void DbSize2L(RSqlDatabase& aDb, const TDesC&, TDbType)
|
sl@0
|
191 |
{
|
sl@0
|
192 |
RSqlDatabase::TSize size;
|
sl@0
|
193 |
TInt err = aDb.Size(size);
|
sl@0
|
194 |
User::LeaveIfError(err);
|
sl@0
|
195 |
}
|
sl@0
|
196 |
|
sl@0
|
197 |
//"RSqlDatabase::Size(TSize&)" OOM test - attached database
|
sl@0
|
198 |
void DbAttachSize2L(RSqlDatabase& aDb, const TDesC& aDbName, TDbType)
|
sl@0
|
199 |
{
|
sl@0
|
200 |
_LIT(KAttachDbName, "HHH");
|
sl@0
|
201 |
TInt err = aDb.Attach(aDbName, KAttachDbName);
|
sl@0
|
202 |
User::LeaveIfError(err);
|
sl@0
|
203 |
RSqlDatabase::TSize size;
|
sl@0
|
204 |
err = aDb.Size(size, KAttachDbName);
|
sl@0
|
205 |
(void)aDb.Detach(KAttachDbName);
|
sl@0
|
206 |
User::LeaveIfError(err);
|
sl@0
|
207 |
}
|
sl@0
|
208 |
|
sl@0
|
209 |
//"RSqlDatabase::Delete()" OOM test
|
sl@0
|
210 |
void DeleteDbL(RSqlDatabase& aDb, const TDesC& aDbFileName, TDbType)
|
sl@0
|
211 |
{
|
sl@0
|
212 |
aDb.Close();
|
sl@0
|
213 |
TInt err = RSqlDatabase::Delete(aDbFileName);
|
sl@0
|
214 |
User::LeaveIfError(err);
|
sl@0
|
215 |
}
|
sl@0
|
216 |
|
sl@0
|
217 |
//"RSqlDatabase::Attach()" OOM test
|
sl@0
|
218 |
void AttachDatabaseL(RSqlDatabase& aDb, const TDesC&, TDbType aDbType)
|
sl@0
|
219 |
{
|
sl@0
|
220 |
_LIT(KDbName, "Db2");
|
sl@0
|
221 |
TInt err = KErrNone;
|
sl@0
|
222 |
if(aDbType == ESecureDb)
|
sl@0
|
223 |
{
|
sl@0
|
224 |
err = aDb.Attach(KSecureTestDb, KDbName);
|
sl@0
|
225 |
}
|
sl@0
|
226 |
else
|
sl@0
|
227 |
{
|
sl@0
|
228 |
err = aDb.Attach(KAttachDb, KDbName);
|
sl@0
|
229 |
}
|
sl@0
|
230 |
User::LeaveIfError(err);
|
sl@0
|
231 |
err = aDb.Detach(KDbName);
|
sl@0
|
232 |
User::LeaveIfError(err);
|
sl@0
|
233 |
}
|
sl@0
|
234 |
|
sl@0
|
235 |
//"RSqlDatabase::Attach() - from handle" OOM test
|
sl@0
|
236 |
void AttachDatabase2L(RSqlDatabase& aDb, const TDesC&, TDbType)
|
sl@0
|
237 |
{
|
sl@0
|
238 |
_LIT(KDbName, "Db2");
|
sl@0
|
239 |
TInt err = aDb.Attach(KPrivateTestDb, KDbName);
|
sl@0
|
240 |
User::LeaveIfError(err);
|
sl@0
|
241 |
err = aDb.Detach(KDbName);
|
sl@0
|
242 |
User::LeaveIfError(err);
|
sl@0
|
243 |
}
|
sl@0
|
244 |
|
sl@0
|
245 |
//"RSqlDatabase::Copy()" OOM test
|
sl@0
|
246 |
void CopyDatabaseL(RSqlDatabase& aDb, const TDesC& aDbFileName, TDbType)
|
sl@0
|
247 |
{
|
sl@0
|
248 |
aDb.Close();
|
sl@0
|
249 |
TInt err = RSqlDatabase::Copy(aDbFileName,aDbFileName);
|
sl@0
|
250 |
User::LeaveIfError(err);
|
sl@0
|
251 |
}
|
sl@0
|
252 |
|
sl@0
|
253 |
//"RSqlDatabase::GetSecurityPolicy()" OOM test
|
sl@0
|
254 |
void GetSecurityPolicyL(RSqlDatabase& aDb, const TDesC&, TDbType)
|
sl@0
|
255 |
{
|
sl@0
|
256 |
RSqlSecurityPolicy policy;
|
sl@0
|
257 |
TInt err = aDb.GetSecurityPolicy(policy);
|
sl@0
|
258 |
policy.Close();
|
sl@0
|
259 |
User::LeaveIfError(err);
|
sl@0
|
260 |
}
|
sl@0
|
261 |
|
sl@0
|
262 |
//"RSqlDatabase::GetSecurityPolicyL()" OOM test
|
sl@0
|
263 |
void GetSecurityPolicy2L(RSqlDatabase& aDb, const TDesC&, TDbType)
|
sl@0
|
264 |
{
|
sl@0
|
265 |
RSqlSecurityPolicy policy;
|
sl@0
|
266 |
CleanupClosePushL(policy);
|
sl@0
|
267 |
aDb.GetSecurityPolicyL(policy);
|
sl@0
|
268 |
CleanupStack::PopAndDestroy(&policy);
|
sl@0
|
269 |
}
|
sl@0
|
270 |
|
sl@0
|
271 |
//"RSqlDatabase::ReserveDriveSpace()" OOM test
|
sl@0
|
272 |
void ReserveDriveSpaceL(RSqlDatabase& aDb, const TDesC&, TDbType)
|
sl@0
|
273 |
{
|
sl@0
|
274 |
TInt err = aDb.ReserveDriveSpace(0);
|
sl@0
|
275 |
User::LeaveIfError(err);
|
sl@0
|
276 |
aDb.FreeReservedSpace();
|
sl@0
|
277 |
}
|
sl@0
|
278 |
|
sl@0
|
279 |
//"RSqlDatabase::GetReserveAccess()" OOM test
|
sl@0
|
280 |
void GetReserveAccessL(RSqlDatabase& aDb, const TDesC&, TDbType)
|
sl@0
|
281 |
{
|
sl@0
|
282 |
TInt err = aDb.ReserveDriveSpace(0);
|
sl@0
|
283 |
User::LeaveIfError(err);
|
sl@0
|
284 |
err = aDb.GetReserveAccess();
|
sl@0
|
285 |
User::LeaveIfError(err);
|
sl@0
|
286 |
aDb.ReleaseReserveAccess();
|
sl@0
|
287 |
aDb.FreeReservedSpace();
|
sl@0
|
288 |
}
|
sl@0
|
289 |
|
sl@0
|
290 |
//"RSqlDatabase::LastInsertedRowId()" OOM test
|
sl@0
|
291 |
void DbLastInsertedRowIdL(RSqlDatabase& aDb, const TDesC&, TDbType)
|
sl@0
|
292 |
{
|
sl@0
|
293 |
TInt64 rowid = aDb.LastInsertedRowId();
|
sl@0
|
294 |
User::LeaveIfError(rowid);
|
sl@0
|
295 |
}
|
sl@0
|
296 |
|
sl@0
|
297 |
|
sl@0
|
298 |
|
sl@0
|
299 |
/**
|
sl@0
|
300 |
@SYMTestCaseID SYSLIB-SQL-CT-1616
|
sl@0
|
301 |
@SYMTestCaseDesc RSqlDatabase methods OOM test
|
sl@0
|
302 |
Precondition: the database exists.
|
sl@0
|
303 |
The test calls the given as an argument function while simulating OOM failures
|
sl@0
|
304 |
and checks that there are no memory and resource leaks.
|
sl@0
|
305 |
Note: It's possible for database operations to be performed even after memory
|
sl@0
|
306 |
allocation has failed. This is because SQLITE reuses some pages of the page
|
sl@0
|
307 |
cache which have been allocated but are curently not in use. This means it is
|
sl@0
|
308 |
necessary to undo any operations on the database and continue checking for
|
sl@0
|
309 |
memory and resource leaks even after an operation has been completed successfully.
|
sl@0
|
310 |
@SYMTestPriority High
|
sl@0
|
311 |
@SYMTestActions RSqlDatabase methods OOM tests
|
sl@0
|
312 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
313 |
@SYMDEF DEF105444
|
sl@0
|
314 |
*/
|
sl@0
|
315 |
void DoDbOomTest(TDbFuncPtrL aTestFunctionPtrL, const TDesC& aDbFileName, TDbAction aDbAction, TDbType aDbType)
|
sl@0
|
316 |
{
|
sl@0
|
317 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1616 RSqlDatabase - OOM test"));
|
sl@0
|
318 |
RSqlSecurityPolicy securityPolicy;
|
sl@0
|
319 |
CreateTestSecurityPolicy(securityPolicy);
|
sl@0
|
320 |
for(TInt i=0;i<(TInt)(sizeof(TheOomTestType)/sizeof(TheOomTestType[0]));++i)
|
sl@0
|
321 |
{
|
sl@0
|
322 |
//Recreate the database file
|
sl@0
|
323 |
RSqlDatabase::Delete(aDbFileName);
|
sl@0
|
324 |
RSqlDatabase db;
|
sl@0
|
325 |
TInt err = aDbType == ESecureDb ? db.Create(aDbFileName, securityPolicy) : db.Create(aDbFileName);
|
sl@0
|
326 |
db.Close();
|
sl@0
|
327 |
TEST2(err, KErrNone);
|
sl@0
|
328 |
|
sl@0
|
329 |
TInt failingAllocationNo = 0;
|
sl@0
|
330 |
TInt allocationNo = 0;
|
sl@0
|
331 |
TInt maxAllocationNo = TheOomTestType[i] == EServerSideTest ? KDoDbOomTestAllocLimitServer : KDoDbOomTestAllocLimitClient;
|
sl@0
|
332 |
while(allocationNo < maxAllocationNo)
|
sl@0
|
333 |
{
|
sl@0
|
334 |
MarkHandles();
|
sl@0
|
335 |
MarkAllocatedCells();
|
sl@0
|
336 |
|
sl@0
|
337 |
__UHEAP_MARK;
|
sl@0
|
338 |
|
sl@0
|
339 |
if(TheOomTestType[i] == EServerSideTest)
|
sl@0
|
340 |
{//If aDbAction is EOpenDb, then we will delay the heap failure simulation, until the database is opened
|
sl@0
|
341 |
SetDbHeapFailure(TheOomTestType[i], ++allocationNo, aDbAction == EOpenDb);
|
sl@0
|
342 |
}
|
sl@0
|
343 |
|
sl@0
|
344 |
//if aDbAction is EOpenDb then this is a OOM test different than a test for RSqlDatabase::Open
|
sl@0
|
345 |
if(aDbAction == EOpenDb)
|
sl@0
|
346 |
{
|
sl@0
|
347 |
err = db.Open(aDbFileName);
|
sl@0
|
348 |
TEST2(err, KErrNone);
|
sl@0
|
349 |
}
|
sl@0
|
350 |
|
sl@0
|
351 |
if(TheOomTestType[i] == EClientSideTest)
|
sl@0
|
352 |
{
|
sl@0
|
353 |
SetDbHeapFailure(TheOomTestType[i], ++allocationNo);
|
sl@0
|
354 |
}
|
sl@0
|
355 |
|
sl@0
|
356 |
TRAP(err, (*aTestFunctionPtrL)(db, aDbFileName, aDbType));
|
sl@0
|
357 |
if(err != KErrNoMemory)
|
sl@0
|
358 |
{
|
sl@0
|
359 |
TEST2(err, KErrNone);
|
sl@0
|
360 |
}
|
sl@0
|
361 |
else
|
sl@0
|
362 |
{
|
sl@0
|
363 |
failingAllocationNo = allocationNo;
|
sl@0
|
364 |
}
|
sl@0
|
365 |
|
sl@0
|
366 |
ResetDbHeapFailure(TheOomTestType[i]);
|
sl@0
|
367 |
|
sl@0
|
368 |
if(aTestFunctionPtrL == &ExecStatement8L || aTestFunctionPtrL == &ExecStatement16L)
|
sl@0
|
369 |
{
|
sl@0
|
370 |
_LIT(KSqlDropString, "DROP TABLE IF EXISTS BBB;");
|
sl@0
|
371 |
err = db.Exec(KSqlDropString);
|
sl@0
|
372 |
TEST(err >= 0);
|
sl@0
|
373 |
err = KErrNone;
|
sl@0
|
374 |
}
|
sl@0
|
375 |
else if(aTestFunctionPtrL == &DeleteDbL && err == KErrNone)
|
sl@0
|
376 |
{
|
sl@0
|
377 |
err = aDbType == ESecureDb ? db.Create(aDbFileName, securityPolicy) : db.Create(aDbFileName);
|
sl@0
|
378 |
TEST2(err, KErrNone);
|
sl@0
|
379 |
}
|
sl@0
|
380 |
db.Close();
|
sl@0
|
381 |
|
sl@0
|
382 |
__UHEAP_MARKEND;
|
sl@0
|
383 |
|
sl@0
|
384 |
CheckAllocatedCells();
|
sl@0
|
385 |
CheckHandles();
|
sl@0
|
386 |
|
sl@0
|
387 |
if(err == KErrNoMemory && allocationNo == maxAllocationNo)
|
sl@0
|
388 |
{
|
sl@0
|
389 |
maxAllocationNo += 10;
|
sl@0
|
390 |
}
|
sl@0
|
391 |
}
|
sl@0
|
392 |
TEST2(err, KErrNone);
|
sl@0
|
393 |
PrintEndOfOomTest(TheOomTestType[i], failingAllocationNo + 1);
|
sl@0
|
394 |
}
|
sl@0
|
395 |
//Delete the database file
|
sl@0
|
396 |
RSqlDatabase::Delete(aDbFileName);
|
sl@0
|
397 |
securityPolicy.Close();
|
sl@0
|
398 |
}
|
sl@0
|
399 |
|
sl@0
|
400 |
//An attempt to open a non-secure database somehow happened to be in the server's private data cage.
|
sl@0
|
401 |
void DoDbOomTest2()
|
sl@0
|
402 |
{
|
sl@0
|
403 |
for(TInt i=0;i<(TInt)(sizeof(TheOomTestType)/sizeof(TheOomTestType[0]));++i)
|
sl@0
|
404 |
{
|
sl@0
|
405 |
TInt err = KErrNone;
|
sl@0
|
406 |
TInt failingAllocationNo = 0;
|
sl@0
|
407 |
TInt allocationNo = 0;
|
sl@0
|
408 |
TInt maxAllocationNo = TheOomTestType[i] == EServerSideTest ? KDoDbOomTest2AllocLimitServer : KDoDbOomTest2AllocLimitClient;
|
sl@0
|
409 |
while(allocationNo < maxAllocationNo)
|
sl@0
|
410 |
{
|
sl@0
|
411 |
MarkHandles();
|
sl@0
|
412 |
MarkAllocatedCells();
|
sl@0
|
413 |
|
sl@0
|
414 |
__UHEAP_MARK;
|
sl@0
|
415 |
|
sl@0
|
416 |
SetDbHeapFailure(TheOomTestType[i], ++allocationNo);
|
sl@0
|
417 |
|
sl@0
|
418 |
RSqlDatabase db;
|
sl@0
|
419 |
err = db.Open(KSecureAttachDb2);
|
sl@0
|
420 |
db.Close();
|
sl@0
|
421 |
if(err != KErrNoMemory)
|
sl@0
|
422 |
{
|
sl@0
|
423 |
TEST2(err, KSqlErrGeneral);
|
sl@0
|
424 |
}
|
sl@0
|
425 |
else
|
sl@0
|
426 |
{
|
sl@0
|
427 |
failingAllocationNo = allocationNo;
|
sl@0
|
428 |
}
|
sl@0
|
429 |
|
sl@0
|
430 |
ResetDbHeapFailure(TheOomTestType[i]);
|
sl@0
|
431 |
|
sl@0
|
432 |
__UHEAP_MARKEND;
|
sl@0
|
433 |
|
sl@0
|
434 |
CheckAllocatedCells();
|
sl@0
|
435 |
CheckHandles();
|
sl@0
|
436 |
|
sl@0
|
437 |
if(err == KErrNoMemory && allocationNo == maxAllocationNo)
|
sl@0
|
438 |
{
|
sl@0
|
439 |
maxAllocationNo += 10;
|
sl@0
|
440 |
}
|
sl@0
|
441 |
}
|
sl@0
|
442 |
TEST2(err, KSqlErrGeneral);
|
sl@0
|
443 |
PrintEndOfOomTest(TheOomTestType[i], failingAllocationNo + 1);
|
sl@0
|
444 |
}
|
sl@0
|
445 |
}
|
sl@0
|
446 |
|
sl@0
|
447 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
448 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
449 |
|
sl@0
|
450 |
//RSqlDatabase OOM tests
|
sl@0
|
451 |
void DbOomTestsL(TDbType aDbType)
|
sl@0
|
452 |
{
|
sl@0
|
453 |
TPtrC dbFileName(KTestDb);
|
sl@0
|
454 |
if(aDbType == ESecureDb)
|
sl@0
|
455 |
{
|
sl@0
|
456 |
dbFileName.Set(KSecureTestDb());
|
sl@0
|
457 |
}
|
sl@0
|
458 |
|
sl@0
|
459 |
CreateAttachDb();
|
sl@0
|
460 |
|
sl@0
|
461 |
TheTest.Printf(_L("===RSqlDatabase::Create()\r\n"));
|
sl@0
|
462 |
DoCreateDatabaseOomTest(dbFileName, aDbType, KErrNone);
|
sl@0
|
463 |
|
sl@0
|
464 |
TheTest.Printf(_L("===RSqlDatabase::Create() + config string\r\n"));
|
sl@0
|
465 |
_LIT8(KConfigStr, "page_size=2048");
|
sl@0
|
466 |
DoCreateDatabaseOomTest(dbFileName, aDbType, KErrNone, &KConfigStr);
|
sl@0
|
467 |
|
sl@0
|
468 |
TheTest.Printf(_L("===RSqlDatabase::Create() + config string + manual compaction\r\n"));
|
sl@0
|
469 |
_LIT8(KConfigStr2, "compaction=manual");
|
sl@0
|
470 |
DoCreateDatabaseOomTest(dbFileName, aDbType, KErrNone, &KConfigStr2);
|
sl@0
|
471 |
|
sl@0
|
472 |
TheTest.Printf(_L("===RSqlDatabase::Create() + config string + background compaction\r\n"));
|
sl@0
|
473 |
_LIT8(KConfigStr3, "compaction=background");
|
sl@0
|
474 |
DoCreateDatabaseOomTest(dbFileName, aDbType, KErrNone, &KConfigStr3);
|
sl@0
|
475 |
|
sl@0
|
476 |
TheTest.Printf(_L("===RSqlDatabase::Create() + config string + auto compaction\r\n"));
|
sl@0
|
477 |
_LIT8(KConfigStr4, "compaction=auto");
|
sl@0
|
478 |
DoCreateDatabaseOomTest(dbFileName, aDbType, KErrNone, &KConfigStr4);
|
sl@0
|
479 |
|
sl@0
|
480 |
if(aDbType == ENonSecureDb)
|
sl@0
|
481 |
{//Private database is not a database taht will be created in the SQL server private data cage.
|
sl@0
|
482 |
(void)RSqlDatabase::Delete(KPrivateTestDb);
|
sl@0
|
483 |
TheTest.Printf(_L("===RSqlDatabase::Create() private database + config string + manual compaction\r\n"));
|
sl@0
|
484 |
DoCreateDatabaseOomTest(KPrivateTestDb, ENonSecureDb, KErrNone, &KConfigStr2);
|
sl@0
|
485 |
|
sl@0
|
486 |
(void)RSqlDatabase::Delete(KPrivateTestDb);
|
sl@0
|
487 |
TheTest.Printf(_L("===RSqlDatabase::Create() private database + config string + background compaction\r\n"));
|
sl@0
|
488 |
DoCreateDatabaseOomTest(KPrivateTestDb, ENonSecureDb, KErrNone, &KConfigStr3);
|
sl@0
|
489 |
|
sl@0
|
490 |
(void)RSqlDatabase::Delete(KPrivateTestDb);
|
sl@0
|
491 |
TheTest.Printf(_L("===RSqlDatabase::Create() private database + config string + auto compaction\r\n"));
|
sl@0
|
492 |
DoCreateDatabaseOomTest(KPrivateTestDb, ENonSecureDb, KErrNone, &KConfigStr4);
|
sl@0
|
493 |
}
|
sl@0
|
494 |
|
sl@0
|
495 |
TheTest.Printf(_L("===RSqlDatabase::Open()\r\n"));
|
sl@0
|
496 |
DoDbOomTest(&OpenDatabaseL, dbFileName, ENotOpenDb, aDbType);
|
sl@0
|
497 |
|
sl@0
|
498 |
TheTest.Printf(_L("===RSqlDatabase::OpenL()\r\n"));
|
sl@0
|
499 |
DoDbOomTest(&OpenDatabase2L, dbFileName, ENotOpenDb, aDbType);
|
sl@0
|
500 |
|
sl@0
|
501 |
TheTest.Printf(_L("===RSqlDatabase::Open() + config string\r\n"));
|
sl@0
|
502 |
DoDbOomTest(&OpenDatabase3L, dbFileName, ENotOpenDb, aDbType);
|
sl@0
|
503 |
|
sl@0
|
504 |
if(aDbType == ENonSecureDb)
|
sl@0
|
505 |
{//Private database cannot be opened as a secure database
|
sl@0
|
506 |
TheTest.Printf(_L("===RSqlDatabase::Open() - from handle\r\n"));
|
sl@0
|
507 |
DoDbOomTest(&OpenDatabaseFromHandleL, KPrivateTestDb, ENotOpenDb, aDbType);
|
sl@0
|
508 |
|
sl@0
|
509 |
TheTest.Printf(_L("===RSqlDatabase::Open() - from handle + config string\r\n"));
|
sl@0
|
510 |
DoDbOomTest(&OpenDatabaseFromHandle2L, KPrivateTestDb, ENotOpenDb, aDbType);
|
sl@0
|
511 |
}
|
sl@0
|
512 |
|
sl@0
|
513 |
TheTest.Printf(_L("===RSqlDatabase::Exec(), 8-bit SQL\r\n"));
|
sl@0
|
514 |
DoDbOomTest(&ExecStatement8L, dbFileName, EOpenDb, aDbType);
|
sl@0
|
515 |
|
sl@0
|
516 |
TheTest.Printf(_L("===RSqlDatabase::Exec(), 16-bit SQL\r\n"));
|
sl@0
|
517 |
DoDbOomTest(&ExecStatement16L, dbFileName, EOpenDb, aDbType);
|
sl@0
|
518 |
|
sl@0
|
519 |
TheTest.Printf(_L("===RSqlDatabase::SetIsolationLevel()\r\n"));
|
sl@0
|
520 |
DoDbOomTest(&SetIsolationLevelL, dbFileName, EOpenDb, aDbType);
|
sl@0
|
521 |
|
sl@0
|
522 |
TheTest.Printf(_L("===RSqlDatabase::Size()\r\n"));
|
sl@0
|
523 |
DoDbOomTest(&DbSizeL, dbFileName, EOpenDb, aDbType);
|
sl@0
|
524 |
|
sl@0
|
525 |
TheTest.Printf(_L("===RSqlDatabase::Size(TSize&)\r\n"));
|
sl@0
|
526 |
DoDbOomTest(&DbSize2L, dbFileName, EOpenDb, aDbType);
|
sl@0
|
527 |
|
sl@0
|
528 |
TheTest.Printf(_L("===RSqlDatabase::Size(TSize&) - attached database\r\n"));
|
sl@0
|
529 |
DoDbOomTest(&DbAttachSize2L, dbFileName, EOpenDb, aDbType);
|
sl@0
|
530 |
|
sl@0
|
531 |
TheTest.Printf(_L("===RSqlDatabase::Delete()\r\n"));
|
sl@0
|
532 |
DoDbOomTest(&DeleteDbL, dbFileName, ENotOpenDb, aDbType);
|
sl@0
|
533 |
|
sl@0
|
534 |
TheTest.Printf(_L("===RSqlDatabase::Attach()\r\n"));
|
sl@0
|
535 |
DoDbOomTest(&AttachDatabaseL, dbFileName, EOpenDb, aDbType);
|
sl@0
|
536 |
|
sl@0
|
537 |
//Ensure that the private database to be attached exists
|
sl@0
|
538 |
PrepareAttachFromHandle();
|
sl@0
|
539 |
TheTest.Printf(_L("===RSqlDatabase::Attach() - from handle\r\n"));
|
sl@0
|
540 |
DoDbOomTest(&AttachDatabase2L, dbFileName, EOpenDb, aDbType);
|
sl@0
|
541 |
|
sl@0
|
542 |
TheTest.Printf(_L("===RSqlDatabase::Copy()\r\n"));
|
sl@0
|
543 |
DoDbOomTest(&CopyDatabaseL, dbFileName, ENotOpenDb, aDbType);
|
sl@0
|
544 |
|
sl@0
|
545 |
if(aDbType == ESecureDb)
|
sl@0
|
546 |
{
|
sl@0
|
547 |
TheTest.Printf(_L("===RSqlDatabase::GetSecurityPolicy()\r\n"));
|
sl@0
|
548 |
DoDbOomTest(&GetSecurityPolicyL, dbFileName, EOpenDb, aDbType);
|
sl@0
|
549 |
|
sl@0
|
550 |
TheTest.Printf(_L("===RSqlDatabase::GetSecurityPolicyL()\r\n"));
|
sl@0
|
551 |
DoDbOomTest(&GetSecurityPolicy2L, dbFileName, EOpenDb, aDbType);
|
sl@0
|
552 |
}
|
sl@0
|
553 |
|
sl@0
|
554 |
TheTest.Printf(_L("===RSqlDatabase::ReserveDriveSpace()\r\n"));
|
sl@0
|
555 |
DoDbOomTest(&ReserveDriveSpaceL, dbFileName, EOpenDb, aDbType);
|
sl@0
|
556 |
|
sl@0
|
557 |
TheTest.Printf(_L("===RSqlDatabase::GetReserveAccess()\r\n"));
|
sl@0
|
558 |
DoDbOomTest(&GetReserveAccessL, dbFileName, EOpenDb, aDbType);
|
sl@0
|
559 |
|
sl@0
|
560 |
TheTest.Printf(_L("===RSqlDatabase::LastInsertedRowId()\r\n"));
|
sl@0
|
561 |
DoDbOomTest(&DbLastInsertedRowIdL, dbFileName, EOpenDb, aDbType);
|
sl@0
|
562 |
|
sl@0
|
563 |
TheTest.Printf(_L("===RSqlDatabase::Open(), non-secure database in server data cage\r\n"));
|
sl@0
|
564 |
DoDbOomTest2();
|
sl@0
|
565 |
}
|