sl@0
|
1 |
// Copyright (c) 2006-2010 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 <e32test.h>
|
sl@0
|
17 |
#include <bautils.h>
|
sl@0
|
18 |
#include <stdlib.h>
|
sl@0
|
19 |
#include <string.h>
|
sl@0
|
20 |
#include <hal.h>
|
sl@0
|
21 |
#include "SqliteSymbian.h"
|
sl@0
|
22 |
#ifdef __cplusplus
|
sl@0
|
23 |
extern "C" {
|
sl@0
|
24 |
#endif
|
sl@0
|
25 |
#include "sqliteInt.h"
|
sl@0
|
26 |
#include "os.h"
|
sl@0
|
27 |
#ifdef __cplusplus
|
sl@0
|
28 |
} /* End of the 'extern "C"' block */
|
sl@0
|
29 |
#endif
|
sl@0
|
30 |
#include "SqliteUtil.h"
|
sl@0
|
31 |
|
sl@0
|
32 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
33 |
|
sl@0
|
34 |
const char* KSymbianVfsNameZ = "SymbianSql";
|
sl@0
|
35 |
|
sl@0
|
36 |
RTest TheTest(_L("t_sqloslayer test"));
|
sl@0
|
37 |
RFs TheFs;
|
sl@0
|
38 |
|
sl@0
|
39 |
_LIT(KTestDir, "c:\\test\\");
|
sl@0
|
40 |
_LIT(KTestFile1, "c:\\test\\t_sqloslayer.bin");
|
sl@0
|
41 |
_LIT(KTestFile3, "c:\\test\\t_sqloslayer.db");
|
sl@0
|
42 |
const char* KTestFile1Z = "c:\\test\\t_sqloslayer.bin";
|
sl@0
|
43 |
const char* KTestFile2Z = "z:\\test\\TestDb1.db";
|
sl@0
|
44 |
const char* KTestFile3Z = "c:\\test\\t_sqloslayer.db";
|
sl@0
|
45 |
_LIT(KPrivateDir, "c:\\private\\21F12127\\");
|
sl@0
|
46 |
const char* KTestFile4Z = "c:\\test\\t_sqloslayer2.db";
|
sl@0
|
47 |
|
sl@0
|
48 |
//In order to be able to compile the test, the following variables are defined (used inside the OS porting layer, when _SQLPROFILER macro is defined)
|
sl@0
|
49 |
#ifdef _SQLPROFILER
|
sl@0
|
50 |
TInt TheSqlSrvProfilerFileRead = 0;
|
sl@0
|
51 |
TInt TheSqlSrvProfilerFileWrite = 0;
|
sl@0
|
52 |
TInt TheSqlSrvProfilerFileSync = 0;
|
sl@0
|
53 |
TInt TheSqlSrvProfilerFileSetSize = 0;
|
sl@0
|
54 |
#endif
|
sl@0
|
55 |
|
sl@0
|
56 |
#ifdef _DEBUG
|
sl@0
|
57 |
//SQLite panic category.
|
sl@0
|
58 |
_LIT(KSqlitePanicCategory, "Sqlite");
|
sl@0
|
59 |
#endif
|
sl@0
|
60 |
|
sl@0
|
61 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
62 |
|
sl@0
|
63 |
void DeleteTestFiles()
|
sl@0
|
64 |
{
|
sl@0
|
65 |
(void)TheFs.Delete(KTestFile3);
|
sl@0
|
66 |
(void)TheFs.Delete(KTestFile1);
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
void TestEnvDestroy()
|
sl@0
|
70 |
{
|
sl@0
|
71 |
sqlite3SymbianLibFinalize();
|
sl@0
|
72 |
DeleteTestFiles();
|
sl@0
|
73 |
TheFs.Close();
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
77 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
78 |
//Test macros and functions
|
sl@0
|
79 |
void Check1(TInt aValue, TInt aLine)
|
sl@0
|
80 |
{
|
sl@0
|
81 |
if(!aValue)
|
sl@0
|
82 |
{
|
sl@0
|
83 |
TestEnvDestroy();
|
sl@0
|
84 |
RDebug::Print(_L("*** Line %d\r\n"), aLine);
|
sl@0
|
85 |
TheTest(EFalse, aLine);
|
sl@0
|
86 |
}
|
sl@0
|
87 |
}
|
sl@0
|
88 |
void Check2(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
if(aValue != aExpected)
|
sl@0
|
91 |
{
|
sl@0
|
92 |
TestEnvDestroy();
|
sl@0
|
93 |
RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
|
sl@0
|
94 |
TheTest(EFalse, aLine);
|
sl@0
|
95 |
}
|
sl@0
|
96 |
}
|
sl@0
|
97 |
#define TEST(arg) ::Check1((arg), __LINE__)
|
sl@0
|
98 |
#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
|
sl@0
|
99 |
|
sl@0
|
100 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
101 |
|
sl@0
|
102 |
static TInt TheProcessHandleCount = 0;
|
sl@0
|
103 |
static TInt TheThreadHandleCount = 0;
|
sl@0
|
104 |
static TInt TheAllocatedCellsCount = 0;
|
sl@0
|
105 |
|
sl@0
|
106 |
#ifdef _DEBUG
|
sl@0
|
107 |
static const TInt KBurstRate = 20;
|
sl@0
|
108 |
#endif
|
sl@0
|
109 |
|
sl@0
|
110 |
static void MarkHandles()
|
sl@0
|
111 |
{
|
sl@0
|
112 |
RThread().HandleCount(TheProcessHandleCount, TheThreadHandleCount);
|
sl@0
|
113 |
}
|
sl@0
|
114 |
|
sl@0
|
115 |
static void MarkAllocatedCells()
|
sl@0
|
116 |
{
|
sl@0
|
117 |
TheAllocatedCellsCount = User::CountAllocCells();
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
static void CheckAllocatedCells()
|
sl@0
|
121 |
{
|
sl@0
|
122 |
TInt allocatedCellsCount = User::CountAllocCells();
|
sl@0
|
123 |
TEST2(allocatedCellsCount, TheAllocatedCellsCount);
|
sl@0
|
124 |
}
|
sl@0
|
125 |
|
sl@0
|
126 |
static void CheckHandles()
|
sl@0
|
127 |
{
|
sl@0
|
128 |
TInt endProcessHandleCount;
|
sl@0
|
129 |
TInt endThreadHandleCount;
|
sl@0
|
130 |
|
sl@0
|
131 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
132 |
|
sl@0
|
133 |
TEST2(TheProcessHandleCount, endProcessHandleCount);
|
sl@0
|
134 |
TEST2(TheThreadHandleCount, endThreadHandleCount);
|
sl@0
|
135 |
}
|
sl@0
|
136 |
|
sl@0
|
137 |
static void OomPreStep(TInt
|
sl@0
|
138 |
#ifdef _DEBUG
|
sl@0
|
139 |
aFailingAllocationNo
|
sl@0
|
140 |
#endif
|
sl@0
|
141 |
)
|
sl@0
|
142 |
{
|
sl@0
|
143 |
MarkHandles();
|
sl@0
|
144 |
MarkAllocatedCells();
|
sl@0
|
145 |
__UHEAP_MARK;
|
sl@0
|
146 |
__UHEAP_SETBURSTFAIL(RAllocator::EBurstFailNext, aFailingAllocationNo, KBurstRate);
|
sl@0
|
147 |
}
|
sl@0
|
148 |
|
sl@0
|
149 |
static void OomPostStep()
|
sl@0
|
150 |
{
|
sl@0
|
151 |
__UHEAP_RESET;
|
sl@0
|
152 |
__UHEAP_MARKEND;
|
sl@0
|
153 |
CheckAllocatedCells();
|
sl@0
|
154 |
CheckHandles();
|
sl@0
|
155 |
}
|
sl@0
|
156 |
|
sl@0
|
157 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
158 |
|
sl@0
|
159 |
void TestEnvInit()
|
sl@0
|
160 |
{
|
sl@0
|
161 |
TInt err = TheFs.Connect();
|
sl@0
|
162 |
TEST2(err, KErrNone);
|
sl@0
|
163 |
|
sl@0
|
164 |
err = TheFs.MkDir(KTestDir);
|
sl@0
|
165 |
TEST(err == KErrNone || err == KErrAlreadyExists);
|
sl@0
|
166 |
|
sl@0
|
167 |
err = sqlite3SymbianLibInit();
|
sl@0
|
168 |
TEST2(err, KErrNone);
|
sl@0
|
169 |
}
|
sl@0
|
170 |
|
sl@0
|
171 |
TInt CalcMs(TUint32 aStartTicks, TUint32 aEndTicks)
|
sl@0
|
172 |
{
|
sl@0
|
173 |
static TInt freq = 0;
|
sl@0
|
174 |
if(freq == 0)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
TEST2(HAL::Get(HAL::EFastCounterFrequency, freq), KErrNone);
|
sl@0
|
177 |
}
|
sl@0
|
178 |
TInt64 diffTicks = (TInt64)aEndTicks - (TInt64)aStartTicks;
|
sl@0
|
179 |
if(diffTicks < 0)
|
sl@0
|
180 |
{
|
sl@0
|
181 |
diffTicks = KMaxTUint32 + diffTicks + 1;
|
sl@0
|
182 |
}
|
sl@0
|
183 |
const TInt KMicroSecIn1Sec = 1000000;
|
sl@0
|
184 |
TInt32 us = (diffTicks * KMicroSecIn1Sec) / freq;
|
sl@0
|
185 |
return us / 1000;
|
sl@0
|
186 |
}
|
sl@0
|
187 |
|
sl@0
|
188 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
189 |
|
sl@0
|
190 |
//Create/open/close/delete a file
|
sl@0
|
191 |
void Test1()
|
sl@0
|
192 |
{
|
sl@0
|
193 |
sqlite3_vfs* vfs = sqlite3_vfs_find(KSymbianVfsNameZ);
|
sl@0
|
194 |
TEST(vfs != NULL);
|
sl@0
|
195 |
|
sl@0
|
196 |
sqlite3_file* osFile = (sqlite3_file*)User::Alloc(vfs->szOsFile);
|
sl@0
|
197 |
TEST(osFile != NULL);
|
sl@0
|
198 |
|
sl@0
|
199 |
//Creating a new file
|
sl@0
|
200 |
int outFlags = 0;
|
sl@0
|
201 |
int err = sqlite3OsOpen(vfs, KTestFile1Z, osFile, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, &outFlags);
|
sl@0
|
202 |
TEST2(err, SQLITE_OK);
|
sl@0
|
203 |
TEST(outFlags & SQLITE_OPEN_READWRITE);
|
sl@0
|
204 |
err = sqlite3OsClose(osFile);
|
sl@0
|
205 |
TEST2(err, SQLITE_OK);
|
sl@0
|
206 |
//Opening an existing file for R/W
|
sl@0
|
207 |
err = sqlite3OsOpen(vfs, KTestFile1Z, osFile, SQLITE_OPEN_READWRITE, &outFlags);
|
sl@0
|
208 |
TEST2(err, SQLITE_OK);
|
sl@0
|
209 |
TEST(outFlags & SQLITE_OPEN_READWRITE);
|
sl@0
|
210 |
err = sqlite3OsClose(osFile);
|
sl@0
|
211 |
TEST2(err, SQLITE_OK);
|
sl@0
|
212 |
//Opening a read-only file
|
sl@0
|
213 |
err = sqlite3OsOpen(vfs, KTestFile2Z, osFile, SQLITE_OPEN_READWRITE, &outFlags);
|
sl@0
|
214 |
TEST2(err, SQLITE_OK);
|
sl@0
|
215 |
TEST(outFlags & SQLITE_OPEN_READONLY);
|
sl@0
|
216 |
//Truncate a read-only file
|
sl@0
|
217 |
err = osFile->pMethods->xTruncate(osFile, 0);
|
sl@0
|
218 |
TEST2(err, SQLITE_IOERR);
|
sl@0
|
219 |
//xAccess - read-only file
|
sl@0
|
220 |
int res = 0;
|
sl@0
|
221 |
err = vfs->xAccess(vfs, KTestFile2Z, SQLITE_ACCESS_READ, &res);
|
sl@0
|
222 |
TEST2(err, SQLITE_OK);
|
sl@0
|
223 |
TEST(res != 0);
|
sl@0
|
224 |
//xAccess - invalid request
|
sl@0
|
225 |
res = 0;
|
sl@0
|
226 |
err = vfs->xAccess(vfs, KTestFile2Z, 122, &res);
|
sl@0
|
227 |
TEST2(err, SQLITE_OK);
|
sl@0
|
228 |
TEST2(res, 0);
|
sl@0
|
229 |
//
|
sl@0
|
230 |
err = sqlite3OsClose(osFile);
|
sl@0
|
231 |
TEST2(err, SQLITE_OK);
|
sl@0
|
232 |
//Creating a new file
|
sl@0
|
233 |
err = sqlite3OsOpen(vfs, KTestFile3Z, osFile, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, &outFlags);
|
sl@0
|
234 |
TEST2(err, SQLITE_OK);
|
sl@0
|
235 |
TEST(outFlags & SQLITE_OPEN_READWRITE);
|
sl@0
|
236 |
err = sqlite3OsClose(osFile);
|
sl@0
|
237 |
TEST2(err, SQLITE_OK);
|
sl@0
|
238 |
//Open a file for a read-only access
|
sl@0
|
239 |
err = sqlite3OsOpen(vfs, KTestFile1Z, osFile, SQLITE_OPEN_READONLY, &outFlags);
|
sl@0
|
240 |
TEST2(err, SQLITE_OK);
|
sl@0
|
241 |
TEST(outFlags & SQLITE_OPEN_READONLY);
|
sl@0
|
242 |
err = sqlite3OsWrite(osFile, "1234", 4, 0);
|
sl@0
|
243 |
TEST(err != SQLITE_OK);
|
sl@0
|
244 |
err = sqlite3SymbianLastOsError();
|
sl@0
|
245 |
TEST2(err, KErrAccessDenied);
|
sl@0
|
246 |
err = vfs->xGetLastError(vfs, 0, 0);
|
sl@0
|
247 |
TEST2(err, 0);//Default implementation
|
sl@0
|
248 |
err = sqlite3OsClose(osFile);
|
sl@0
|
249 |
TEST2(err, SQLITE_OK);
|
sl@0
|
250 |
//Delete KTestFile3Z file
|
sl@0
|
251 |
err = sqlite3OsDelete(vfs, KTestFile3Z, 0);
|
sl@0
|
252 |
TEST2(err, SQLITE_OK);
|
sl@0
|
253 |
res = 0;
|
sl@0
|
254 |
err = sqlite3OsAccess(vfs, KTestFile3Z, SQLITE_ACCESS_EXISTS, &res);
|
sl@0
|
255 |
TEST2(err, SQLITE_OK);
|
sl@0
|
256 |
TEST2(res, 0);
|
sl@0
|
257 |
//Open a file for an exclusive access
|
sl@0
|
258 |
err = sqlite3OsOpen(vfs, KTestFile3Z, osFile, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_DELETEONCLOSE | SQLITE_OPEN_EXCLUSIVE, &outFlags);
|
sl@0
|
259 |
TEST2(err, SQLITE_OK);
|
sl@0
|
260 |
err = sqlite3OsClose(osFile);
|
sl@0
|
261 |
TEST2(err, SQLITE_OK);
|
sl@0
|
262 |
//The file should not exist now
|
sl@0
|
263 |
err = sqlite3OsAccess(vfs, KTestFile3Z, SQLITE_ACCESS_EXISTS, &res);
|
sl@0
|
264 |
TEST2(err, SQLITE_OK);
|
sl@0
|
265 |
TEST2(res, 0);
|
sl@0
|
266 |
//Open a file for an exclusive access without deleting it after
|
sl@0
|
267 |
err = sqlite3OsOpen(vfs, KTestFile3Z, osFile, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_EXCLUSIVE, &outFlags);
|
sl@0
|
268 |
TEST2(err, SQLITE_OK);
|
sl@0
|
269 |
err = sqlite3OsClose(osFile);
|
sl@0
|
270 |
TEST2(err, SQLITE_OK);
|
sl@0
|
271 |
//The file should exist now
|
sl@0
|
272 |
err = sqlite3OsAccess(vfs, KTestFile3Z, SQLITE_ACCESS_EXISTS, &res);
|
sl@0
|
273 |
TEST2(err, SQLITE_OK);
|
sl@0
|
274 |
TEST2(res, 1);
|
sl@0
|
275 |
//Delete KTestFile3Z file
|
sl@0
|
276 |
err = sqlite3OsDelete(vfs, KTestFile3Z, 0);
|
sl@0
|
277 |
TEST2(err, SQLITE_OK);
|
sl@0
|
278 |
err = sqlite3OsAccess(vfs, KTestFile3Z, SQLITE_ACCESS_EXISTS, &res);
|
sl@0
|
279 |
TEST2(err, SQLITE_OK);
|
sl@0
|
280 |
TEST2(res, 0);
|
sl@0
|
281 |
//
|
sl@0
|
282 |
User::Free(osFile);
|
sl@0
|
283 |
}
|
sl@0
|
284 |
|
sl@0
|
285 |
//Read/Write/Seek/Truncate test
|
sl@0
|
286 |
void Test2()
|
sl@0
|
287 |
{
|
sl@0
|
288 |
sqlite3_vfs* vfs = sqlite3_vfs_find(KSymbianVfsNameZ);
|
sl@0
|
289 |
TEST(vfs != NULL);
|
sl@0
|
290 |
|
sl@0
|
291 |
sqlite3_file* osFile = (sqlite3_file*)User::Alloc(vfs->szOsFile);
|
sl@0
|
292 |
TEST(osFile != NULL);
|
sl@0
|
293 |
|
sl@0
|
294 |
//Creating a new file
|
sl@0
|
295 |
int err = sqlite3OsDelete(vfs, KTestFile1Z, 0);
|
sl@0
|
296 |
TEST2(err, SQLITE_OK);
|
sl@0
|
297 |
int res = 0;
|
sl@0
|
298 |
err = sqlite3OsAccess(vfs, KTestFile1Z, SQLITE_ACCESS_EXISTS, &res);
|
sl@0
|
299 |
TEST2(err, SQLITE_OK);
|
sl@0
|
300 |
TEST2(res, 0);
|
sl@0
|
301 |
err = sqlite3OsOpen(vfs, KTestFile1Z, osFile, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, 0);
|
sl@0
|
302 |
TEST2(err, SQLITE_OK);
|
sl@0
|
303 |
//Writing at the beginning of the file
|
sl@0
|
304 |
err = sqlite3OsWrite(osFile, "123456", 6, 0);
|
sl@0
|
305 |
TEST2(err, SQLITE_OK);
|
sl@0
|
306 |
//Verify the written data
|
sl@0
|
307 |
char data[20];
|
sl@0
|
308 |
err = sqlite3OsRead(osFile, data, 6, 0);
|
sl@0
|
309 |
TEST2(err, SQLITE_OK);
|
sl@0
|
310 |
err = memcmp(data, "123456", 6);
|
sl@0
|
311 |
TEST2(err, 0);
|
sl@0
|
312 |
//Writing at beyond the end of the file
|
sl@0
|
313 |
err = sqlite3OsWrite(osFile, "abcdefgh", 8, 100);
|
sl@0
|
314 |
TEST2(err, SQLITE_OK);
|
sl@0
|
315 |
//Verify the written data
|
sl@0
|
316 |
err = sqlite3OsRead(osFile, data, 8, 100);
|
sl@0
|
317 |
TEST2(err, SQLITE_OK);
|
sl@0
|
318 |
err = memcmp(data, "abcdefgh", 8);
|
sl@0
|
319 |
TEST2(err, 0);
|
sl@0
|
320 |
//Truncate the file
|
sl@0
|
321 |
err = sqlite3OsTruncate(osFile, 3);
|
sl@0
|
322 |
TEST2(err, SQLITE_OK);
|
sl@0
|
323 |
//Write more data
|
sl@0
|
324 |
err = sqlite3OsWrite(osFile, "xyz", 3, 3);
|
sl@0
|
325 |
TEST2(err, SQLITE_OK);
|
sl@0
|
326 |
//Verify the written data
|
sl@0
|
327 |
err = sqlite3OsRead(osFile, data, 6, 0);
|
sl@0
|
328 |
TEST2(err, SQLITE_OK);
|
sl@0
|
329 |
err = memcmp(data, "123xyz", 6);
|
sl@0
|
330 |
TEST2(err, 0);
|
sl@0
|
331 |
//Check the file size
|
sl@0
|
332 |
TInt64 fileSize = 0;
|
sl@0
|
333 |
err = sqlite3OsFileSize(osFile, &fileSize);
|
sl@0
|
334 |
TEST2(err, SQLITE_OK);
|
sl@0
|
335 |
TEST(fileSize == 6);
|
sl@0
|
336 |
//FileControl - lock type
|
sl@0
|
337 |
int lockType = -1;
|
sl@0
|
338 |
err = osFile->pMethods->xFileControl(osFile, SQLITE_FCNTL_LOCKSTATE, &lockType);
|
sl@0
|
339 |
TEST2(err, SQLITE_OK);
|
sl@0
|
340 |
TEST2(lockType, NO_LOCK);
|
sl@0
|
341 |
//FileControl - set callback - NULL callback
|
sl@0
|
342 |
err = osFile->pMethods->xFileControl(osFile, KSqlFcntlRegisterFreePageCallback, 0);
|
sl@0
|
343 |
TEST2(err, SQLITE_ERROR);
|
sl@0
|
344 |
//FileControl - set callback - invalid callback object
|
sl@0
|
345 |
TSqlFreePageCallback cbck;
|
sl@0
|
346 |
err = osFile->pMethods->xFileControl(osFile, KSqlFcntlRegisterFreePageCallback, &cbck);
|
sl@0
|
347 |
TEST2(err, SQLITE_ERROR);
|
sl@0
|
348 |
//FileControl - invalid op-code
|
sl@0
|
349 |
err = osFile->pMethods->xFileControl(osFile, 90234, 0);
|
sl@0
|
350 |
TEST2(err, SQLITE_ERROR);
|
sl@0
|
351 |
//Close the file
|
sl@0
|
352 |
err = sqlite3OsClose(osFile);
|
sl@0
|
353 |
TEST2(err, SQLITE_OK);
|
sl@0
|
354 |
//
|
sl@0
|
355 |
err = sqlite3OsDelete(vfs, KTestFile1Z, 0);
|
sl@0
|
356 |
TEST2(err, SQLITE_OK);
|
sl@0
|
357 |
User::Free(osFile);
|
sl@0
|
358 |
}
|
sl@0
|
359 |
|
sl@0
|
360 |
//Miscellaneous tests
|
sl@0
|
361 |
void Test3()
|
sl@0
|
362 |
{
|
sl@0
|
363 |
sqlite3_vfs* vfs = sqlite3_vfs_find(KSymbianVfsNameZ);
|
sl@0
|
364 |
TEST(vfs != NULL);
|
sl@0
|
365 |
//Full path name - the full file name is specified
|
sl@0
|
366 |
char fname[KMaxFileName];
|
sl@0
|
367 |
const char* testFileName1 = "c:\\test\\abv.db";
|
sl@0
|
368 |
int err = sqlite3OsFullPathname(vfs, testFileName1, KMaxFileName, fname);
|
sl@0
|
369 |
TEST2(err, SQLITE_OK);
|
sl@0
|
370 |
err = strncasecmp(fname, testFileName1, strlen(testFileName1));
|
sl@0
|
371 |
TEST2(err, 0);
|
sl@0
|
372 |
//Full path name - no drive, the full file name is not specified
|
sl@0
|
373 |
const char* testFileName2 = "abv.db";
|
sl@0
|
374 |
const char* expectedFileName2 = "c:\\private\\21F12127\\abv.db";//"21F12127", the UID of the current test app
|
sl@0
|
375 |
err = sqlite3OsFullPathname(vfs, testFileName2, KMaxFileName, fname);
|
sl@0
|
376 |
TEST2(err, SQLITE_OK);
|
sl@0
|
377 |
err = strncasecmp(fname, expectedFileName2, strlen(expectedFileName2));
|
sl@0
|
378 |
TEST2(err, 0);
|
sl@0
|
379 |
//Full path name - drive present, the full file name is not specified
|
sl@0
|
380 |
const char* testFileName3 = "z:abv.db";
|
sl@0
|
381 |
const char* expectedFileName3 = "z:\\private\\21F12127\\abv.db";//"21F12127", the UID of the current test app
|
sl@0
|
382 |
err = sqlite3OsFullPathname(vfs, testFileName3, KMaxFileName, fname);
|
sl@0
|
383 |
TEST2(err, SQLITE_OK);
|
sl@0
|
384 |
err = strncasecmp(fname, expectedFileName3, strlen(expectedFileName3));
|
sl@0
|
385 |
TEST2(err, 0);
|
sl@0
|
386 |
//Is directory writable - test 1
|
sl@0
|
387 |
int res = 0;
|
sl@0
|
388 |
err = sqlite3OsAccess(vfs, "c:\\test", SQLITE_ACCESS_READWRITE, &res);
|
sl@0
|
389 |
TEST2(err, SQLITE_OK);
|
sl@0
|
390 |
TEST2(res, 1);
|
sl@0
|
391 |
//Is directory writable - test 2
|
sl@0
|
392 |
err = sqlite3OsAccess(vfs, "c:\\test\\", SQLITE_ACCESS_READWRITE, &res);
|
sl@0
|
393 |
TEST2(err, SQLITE_OK);
|
sl@0
|
394 |
TEST2(res, 1);
|
sl@0
|
395 |
//Is directory writable - test 3
|
sl@0
|
396 |
//Not a valid test. It is the media that's read only, not the directory.
|
sl@0
|
397 |
//err = sqlite3OsAccess(vfs, "z:\\test\\", SQLITE_ACCESS_READWRITE, &res);
|
sl@0
|
398 |
//TEST2(err, SQLITE_OK);
|
sl@0
|
399 |
//TEST2(res, 0);
|
sl@0
|
400 |
//Random seed
|
sl@0
|
401 |
const int KBufLen = 100;
|
sl@0
|
402 |
char buf[KBufLen];
|
sl@0
|
403 |
err = sqlite3OsRandomness(vfs, KBufLen, buf);
|
sl@0
|
404 |
TEST2(err, KBufLen);
|
sl@0
|
405 |
//Sleep
|
sl@0
|
406 |
TUint32 start = User::FastCounter();
|
sl@0
|
407 |
const TInt KSleepTime = 200000;//us
|
sl@0
|
408 |
(void)sqlite3OsSleep(vfs, KSleepTime);
|
sl@0
|
409 |
TUint32 end = User::FastCounter();
|
sl@0
|
410 |
TInt ms = CalcMs(start, end);
|
sl@0
|
411 |
TheTest.Printf(_L(" === sqlite3OsSleep() time=%d ms\r\n"), ms);
|
sl@0
|
412 |
//TEST(ms >= 80 && ms <= 320);// -60%..+60%
|
sl@0
|
413 |
}
|
sl@0
|
414 |
|
sl@0
|
415 |
//Lock/unlock tests
|
sl@0
|
416 |
void Test5()
|
sl@0
|
417 |
{
|
sl@0
|
418 |
sqlite3_vfs* vfs = sqlite3_vfs_find(KSymbianVfsNameZ);
|
sl@0
|
419 |
TEST(vfs != NULL);
|
sl@0
|
420 |
|
sl@0
|
421 |
sqlite3_file* osFile = (sqlite3_file*)User::Alloc(vfs->szOsFile);
|
sl@0
|
422 |
TEST(osFile != NULL);
|
sl@0
|
423 |
|
sl@0
|
424 |
//Creating a new file
|
sl@0
|
425 |
int res = 0;
|
sl@0
|
426 |
int err = sqlite3OsAccess(vfs, KTestFile1Z, SQLITE_ACCESS_EXISTS, &res);
|
sl@0
|
427 |
TEST2(err, SQLITE_OK);
|
sl@0
|
428 |
TEST2(res, 0);
|
sl@0
|
429 |
err = sqlite3OsOpen(vfs, KTestFile1Z, osFile, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, 0);
|
sl@0
|
430 |
TEST2(err, SQLITE_OK);
|
sl@0
|
431 |
//Lock/unlock
|
sl@0
|
432 |
//SHARED_LOCK
|
sl@0
|
433 |
err = sqlite3OsLock(osFile, SHARED_LOCK);
|
sl@0
|
434 |
TEST2(err, SQLITE_OK);
|
sl@0
|
435 |
err = sqlite3OsCheckReservedLock(osFile, &res);
|
sl@0
|
436 |
TEST2(err, SQLITE_OK);
|
sl@0
|
437 |
TEST2(res, 0);
|
sl@0
|
438 |
//RESERVED_LOCK
|
sl@0
|
439 |
err = sqlite3OsLock(osFile, RESERVED_LOCK);
|
sl@0
|
440 |
TEST2(err, SQLITE_OK);
|
sl@0
|
441 |
err = sqlite3OsCheckReservedLock(osFile, &res);
|
sl@0
|
442 |
TEST2(err, SQLITE_OK);
|
sl@0
|
443 |
TEST2(res, 1);
|
sl@0
|
444 |
//PENDING_LOCK
|
sl@0
|
445 |
err = sqlite3OsLock(osFile, PENDING_LOCK);
|
sl@0
|
446 |
TEST2(err, SQLITE_OK);
|
sl@0
|
447 |
//EXCLUSIVE_LOCK
|
sl@0
|
448 |
err = sqlite3OsLock(osFile, EXCLUSIVE_LOCK);
|
sl@0
|
449 |
TEST2(err, SQLITE_OK);
|
sl@0
|
450 |
//back to SHARED_LOCK
|
sl@0
|
451 |
err = sqlite3OsLock(osFile, SHARED_LOCK);
|
sl@0
|
452 |
TEST2(err, SQLITE_OK);
|
sl@0
|
453 |
//UNLOCK
|
sl@0
|
454 |
err = sqlite3OsUnlock(osFile, NO_LOCK);
|
sl@0
|
455 |
//Close the file
|
sl@0
|
456 |
err = sqlite3OsClose(osFile);
|
sl@0
|
457 |
TEST2(err, SQLITE_OK);
|
sl@0
|
458 |
//
|
sl@0
|
459 |
err = sqlite3OsDelete(vfs, KTestFile1Z, 0);
|
sl@0
|
460 |
TEST2(err, SQLITE_OK);
|
sl@0
|
461 |
User::Free(osFile);
|
sl@0
|
462 |
}
|
sl@0
|
463 |
|
sl@0
|
464 |
//sqlite3SymbianLibInit() - OOM test
|
sl@0
|
465 |
void sqlite3SymbianLibInitOomTest()
|
sl@0
|
466 |
{
|
sl@0
|
467 |
sqlite3SymbianLibFinalize();
|
sl@0
|
468 |
|
sl@0
|
469 |
TInt failingAllocNum = 0;
|
sl@0
|
470 |
TInt err = KErrNoMemory;
|
sl@0
|
471 |
while(err == KErrNoMemory)
|
sl@0
|
472 |
{
|
sl@0
|
473 |
OomPreStep(++failingAllocNum);
|
sl@0
|
474 |
err = sqlite3SymbianLibInit();
|
sl@0
|
475 |
sqlite3SymbianLibFinalize();
|
sl@0
|
476 |
OomPostStep();
|
sl@0
|
477 |
if(err != KErrNoMemory)
|
sl@0
|
478 |
{
|
sl@0
|
479 |
TEST2(err, KErrNone);
|
sl@0
|
480 |
}
|
sl@0
|
481 |
}
|
sl@0
|
482 |
TEST2(err, KErrNone);
|
sl@0
|
483 |
TheTest.Printf(_L("=== sqlite3SymbianLibInit() OOM test succeeded at allcoation %d\r\n"), failingAllocNum);
|
sl@0
|
484 |
}
|
sl@0
|
485 |
|
sl@0
|
486 |
//sqlite3SymbianLibInit() - 'File I/O error simulation' test
|
sl@0
|
487 |
void sqlite3SymbianLibInitFsErrTest()
|
sl@0
|
488 |
{
|
sl@0
|
489 |
sqlite3SymbianLibFinalize();
|
sl@0
|
490 |
|
sl@0
|
491 |
TInt sysDrive = static_cast<TInt>(RFs::GetSystemDrive());
|
sl@0
|
492 |
TDriveUnit drvUnit(sysDrive);
|
sl@0
|
493 |
TDriveName drvName = drvUnit.Name();
|
sl@0
|
494 |
|
sl@0
|
495 |
TFileName path;
|
sl@0
|
496 |
TInt err = TheFs.PrivatePath(path);
|
sl@0
|
497 |
TEST2(err, KErrNone);
|
sl@0
|
498 |
|
sl@0
|
499 |
TParse privDataCage;
|
sl@0
|
500 |
err = privDataCage.Set(drvName, &path, 0);
|
sl@0
|
501 |
TEST2(err, KErrNone);
|
sl@0
|
502 |
|
sl@0
|
503 |
err = KErrNotFound;
|
sl@0
|
504 |
TInt cnt = 1;
|
sl@0
|
505 |
for(;err<KErrNone;++cnt)
|
sl@0
|
506 |
{
|
sl@0
|
507 |
for (TInt fsError=KErrNotFound;fsError>=KErrDied;--fsError)
|
sl@0
|
508 |
{
|
sl@0
|
509 |
(void)TheFs.RmDir(privDataCage.FullName());
|
sl@0
|
510 |
|
sl@0
|
511 |
TInt processHandleCnt = 0;
|
sl@0
|
512 |
TInt threadHandleCnt = 0;
|
sl@0
|
513 |
RThread().HandleCount(processHandleCnt, threadHandleCnt);
|
sl@0
|
514 |
TInt allocCellsCnt = User::CountAllocCells();
|
sl@0
|
515 |
|
sl@0
|
516 |
(void)TheFs.SetErrorCondition(fsError, cnt);
|
sl@0
|
517 |
err = sqlite3SymbianLibInit();
|
sl@0
|
518 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
519 |
|
sl@0
|
520 |
if(err != KErrNone)
|
sl@0
|
521 |
{
|
sl@0
|
522 |
TInt processHandleCnt2 = 0;
|
sl@0
|
523 |
TInt threadHandleCnt2 = 0;
|
sl@0
|
524 |
RThread().HandleCount(processHandleCnt2, threadHandleCnt2);
|
sl@0
|
525 |
TEST2(processHandleCnt2, processHandleCnt);
|
sl@0
|
526 |
TEST2(threadHandleCnt2, threadHandleCnt);
|
sl@0
|
527 |
TInt allocCellsCnt2 = User::CountAllocCells();
|
sl@0
|
528 |
TEST2(allocCellsCnt2, allocCellsCnt);
|
sl@0
|
529 |
}
|
sl@0
|
530 |
else
|
sl@0
|
531 |
{
|
sl@0
|
532 |
sqlite3SymbianLibFinalize();
|
sl@0
|
533 |
}
|
sl@0
|
534 |
}
|
sl@0
|
535 |
}
|
sl@0
|
536 |
sqlite3SymbianLibFinalize();
|
sl@0
|
537 |
TheTest.Printf(_L("=== sqlite3SymbianLibInit() 'File I/O error simulation' test succeeded at iteration %d\r\n"), cnt);
|
sl@0
|
538 |
}
|
sl@0
|
539 |
|
sl@0
|
540 |
//If _SQLPROFILER macro is not defined then all profiling PS porting layer functions should return KErrNotSupported.
|
sl@0
|
541 |
void ProfilerDisabledTest()
|
sl@0
|
542 |
{
|
sl@0
|
543 |
#ifndef _SQLPROFILER
|
sl@0
|
544 |
TInt err = sqlite3SymbianProfilerStart(0);
|
sl@0
|
545 |
TEST2(err, KErrNotSupported);
|
sl@0
|
546 |
|
sl@0
|
547 |
err = sqlite3SymbianProfilerStop(0);
|
sl@0
|
548 |
TEST2(err, KErrNotSupported);
|
sl@0
|
549 |
|
sl@0
|
550 |
err = sqlite3SymbianProfilerReset(0);
|
sl@0
|
551 |
TEST2(err, KErrNotSupported);
|
sl@0
|
552 |
|
sl@0
|
553 |
TBuf8<1> res;
|
sl@0
|
554 |
err = sqlite3SymbianProfilerQuery(0, res);
|
sl@0
|
555 |
TEST2(err, KErrNotSupported);
|
sl@0
|
556 |
res = res;
|
sl@0
|
557 |
#else
|
sl@0
|
558 |
TheTest.Printf(_L(" The _SQLPROFILER macro is defined. The Profliling OS porting layer functions are tested in t_sqlapi2\r\n"));
|
sl@0
|
559 |
#endif
|
sl@0
|
560 |
}
|
sl@0
|
561 |
|
sl@0
|
562 |
void NegativeTest()
|
sl@0
|
563 |
{
|
sl@0
|
564 |
TInt err = sqlite3SymbianLibInit();
|
sl@0
|
565 |
TEST2(err, KErrNone);
|
sl@0
|
566 |
|
sl@0
|
567 |
sqlite3_vfs* vfs = sqlite3_vfs_find(KSymbianVfsNameZ);
|
sl@0
|
568 |
TEST(vfs != NULL);
|
sl@0
|
569 |
|
sl@0
|
570 |
sqlite3_file* osFile = (sqlite3_file*)User::Alloc(vfs->szOsFile);
|
sl@0
|
571 |
TEST(osFile != NULL);
|
sl@0
|
572 |
|
sl@0
|
573 |
//Creating a new file - the name is too long
|
sl@0
|
574 |
const char* KLongFileNameZ = "c:\\test\\0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789-0123456789.bin";
|
sl@0
|
575 |
int outFlags = 0;
|
sl@0
|
576 |
err = sqlite3OsOpen(vfs, KLongFileNameZ, osFile, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, &outFlags);
|
sl@0
|
577 |
TEST2(err, SQLITE_CANTOPEN);
|
sl@0
|
578 |
|
sl@0
|
579 |
//Open a file - the name contains the '|', but not at position 0 (private database - bad name)
|
sl@0
|
580 |
const char* KBadFileNameZ = "c:\\test\\01|23456.bin";
|
sl@0
|
581 |
err = sqlite3OsOpen(vfs, KBadFileNameZ, osFile, SQLITE_OPEN_READWRITE, &outFlags);
|
sl@0
|
582 |
TEST2(err, SQLITE_CANTOPEN);
|
sl@0
|
583 |
|
sl@0
|
584 |
//FullPathName() - the output buffer is too small
|
sl@0
|
585 |
const char* KFileNameZ = "c:\\test\\0123456.bin";
|
sl@0
|
586 |
char buf[5];
|
sl@0
|
587 |
err = vfs->xFullPathname(vfs, KFileNameZ, 5, buf);
|
sl@0
|
588 |
TEST2(err, SQLITE_ERROR);
|
sl@0
|
589 |
|
sl@0
|
590 |
//FullPathName() - NULL output buffer
|
sl@0
|
591 |
err = vfs->xFullPathname(vfs, KFileNameZ, 5, NULL);
|
sl@0
|
592 |
TEST2(err, SQLITE_ERROR);
|
sl@0
|
593 |
|
sl@0
|
594 |
//FullPathName() - NULL file name
|
sl@0
|
595 |
err = vfs->xFullPathname(vfs, NULL, 5, buf);
|
sl@0
|
596 |
TEST2(err, SQLITE_ERROR);
|
sl@0
|
597 |
|
sl@0
|
598 |
//FullPathName() - the file name is too long
|
sl@0
|
599 |
err = vfs->xFullPathname(vfs, KLongFileNameZ, 5, buf);
|
sl@0
|
600 |
TEST2(err, SQLITE_ERROR);
|
sl@0
|
601 |
|
sl@0
|
602 |
//FullPathName() - NULL file name
|
sl@0
|
603 |
err = vfs->xFullPathname(vfs, NULL, 5, buf);
|
sl@0
|
604 |
TEST2(err, SQLITE_ERROR);
|
sl@0
|
605 |
|
sl@0
|
606 |
//Dellete file - NULL file name
|
sl@0
|
607 |
err = vfs->xDelete(vfs, 0, 0);
|
sl@0
|
608 |
TEST2(err, SQLITE_ERROR);
|
sl@0
|
609 |
|
sl@0
|
610 |
//Delete file - the output buffer for the unicode file name is too small
|
sl@0
|
611 |
err = vfs->xDelete(vfs, KLongFileNameZ, 0);
|
sl@0
|
612 |
TEST2(err, SQLITE_ERROR);
|
sl@0
|
613 |
|
sl@0
|
614 |
//Open file - NULL file name - this is a temp file name
|
sl@0
|
615 |
err = sqlite3OsOpen(vfs, NULL, osFile, SQLITE_OPEN_READWRITE, &outFlags);
|
sl@0
|
616 |
TEST2(err, SQLITE_OK);
|
sl@0
|
617 |
err = osFile->pMethods->xClose(osFile);
|
sl@0
|
618 |
TEST2(err, SQLITE_OK);
|
sl@0
|
619 |
|
sl@0
|
620 |
//xAccess - too long file name
|
sl@0
|
621 |
int res = -1;
|
sl@0
|
622 |
err = vfs->xAccess(vfs, KLongFileNameZ, SQLITE_ACCESS_EXISTS, &res);
|
sl@0
|
623 |
TEST2(err, SQLITE_IOERR_ACCESS);
|
sl@0
|
624 |
|
sl@0
|
625 |
//xAccess - NULL file name
|
sl@0
|
626 |
err = vfs->xAccess(vfs, 0, SQLITE_ACCESS_EXISTS, &res);
|
sl@0
|
627 |
TEST2(err, SQLITE_IOERR_ACCESS);
|
sl@0
|
628 |
|
sl@0
|
629 |
User::Free(osFile);
|
sl@0
|
630 |
}
|
sl@0
|
631 |
|
sl@0
|
632 |
TInt DoDeleteTempFiles()
|
sl@0
|
633 |
{
|
sl@0
|
634 |
CFileMan* fm = NULL;
|
sl@0
|
635 |
TRAPD(err, fm = CFileMan::NewL(TheFs));
|
sl@0
|
636 |
TEST2(err, KErrNone);
|
sl@0
|
637 |
TFileName path;
|
sl@0
|
638 |
path.Copy(KPrivateDir);
|
sl@0
|
639 |
path.Append(_L("temp\\"));
|
sl@0
|
640 |
path.Append(_L("*.$$$"));
|
sl@0
|
641 |
err = fm->Delete(path);
|
sl@0
|
642 |
delete fm;
|
sl@0
|
643 |
return err;
|
sl@0
|
644 |
}
|
sl@0
|
645 |
|
sl@0
|
646 |
void VfsOpenTempFileOomTest()
|
sl@0
|
647 |
{
|
sl@0
|
648 |
//Delete all temp files in this test private data cage.
|
sl@0
|
649 |
TInt err = DoDeleteTempFiles();
|
sl@0
|
650 |
TEST(err == KErrNone || err == KErrNotFound);
|
sl@0
|
651 |
|
sl@0
|
652 |
sqlite3_vfs* vfs = sqlite3_vfs_find(NULL);
|
sl@0
|
653 |
TEST(vfs != NULL);
|
sl@0
|
654 |
|
sl@0
|
655 |
sqlite3_file* osFile = (sqlite3_file*)User::Alloc(vfs->szOsFile);
|
sl@0
|
656 |
TEST(osFile != NULL);
|
sl@0
|
657 |
|
sl@0
|
658 |
TheTest.Printf(_L("Iteration: "));
|
sl@0
|
659 |
TInt failingAllocNum = 0;
|
sl@0
|
660 |
err = SQLITE_IOERR_NOMEM;
|
sl@0
|
661 |
while(err == SQLITE_IOERR_NOMEM)
|
sl@0
|
662 |
{
|
sl@0
|
663 |
++failingAllocNum;
|
sl@0
|
664 |
TheTest.Printf(_L("%d "), failingAllocNum);
|
sl@0
|
665 |
OomPreStep(failingAllocNum);
|
sl@0
|
666 |
int outFlags = 0;
|
sl@0
|
667 |
err = sqlite3OsOpen(vfs, NULL, osFile, SQLITE_OPEN_READWRITE, &outFlags);
|
sl@0
|
668 |
if(err == SQLITE_OK)
|
sl@0
|
669 |
{
|
sl@0
|
670 |
//Since this is a temp file, its creation will be delayed till the first file write operation.
|
sl@0
|
671 |
err = sqlite3OsWrite(osFile, "1234", 4, 0);
|
sl@0
|
672 |
(void)sqlite3OsClose(osFile);
|
sl@0
|
673 |
}
|
sl@0
|
674 |
OomPostStep();
|
sl@0
|
675 |
if(err != SQLITE_OK)
|
sl@0
|
676 |
{
|
sl@0
|
677 |
TEST2(err, SQLITE_IOERR_NOMEM);
|
sl@0
|
678 |
}
|
sl@0
|
679 |
//If the iteration has failed, then no temp file should exist in the test private data cage.
|
sl@0
|
680 |
//If the iteration has succeeded, then sqlite3OsClose() should have deleted the temp file.
|
sl@0
|
681 |
TInt err2 = DoDeleteTempFiles();
|
sl@0
|
682 |
TEST2(err2, KErrNotFound);
|
sl@0
|
683 |
}
|
sl@0
|
684 |
TEST2(err, SQLITE_OK);
|
sl@0
|
685 |
TheTest.Printf(_L("\r\n=== TVfs::Open(<temp file>) OOM test succeeded at allcoation %d\r\n"), failingAllocNum);
|
sl@0
|
686 |
|
sl@0
|
687 |
User::Free(osFile);
|
sl@0
|
688 |
}
|
sl@0
|
689 |
|
sl@0
|
690 |
void VfsOpenTempFileFileIoErrTest()
|
sl@0
|
691 |
{
|
sl@0
|
692 |
//Delete all temp files in this test private data cage.
|
sl@0
|
693 |
TInt err = DoDeleteTempFiles();
|
sl@0
|
694 |
TEST(err == KErrNone || err == KErrNotFound);
|
sl@0
|
695 |
|
sl@0
|
696 |
sqlite3_vfs* vfs = sqlite3_vfs_find(NULL);
|
sl@0
|
697 |
TEST(vfs != NULL);
|
sl@0
|
698 |
|
sl@0
|
699 |
sqlite3_file* osFile = (sqlite3_file*)User::Alloc(vfs->szOsFile);
|
sl@0
|
700 |
TEST(osFile != NULL);
|
sl@0
|
701 |
|
sl@0
|
702 |
err = SQLITE_ERROR;
|
sl@0
|
703 |
TInt cnt = 1;
|
sl@0
|
704 |
while(err != SQLITE_OK)
|
sl@0
|
705 |
{
|
sl@0
|
706 |
TInt processHandleCnt = 0;
|
sl@0
|
707 |
TInt threadHandleCnt = 0;
|
sl@0
|
708 |
RThread().HandleCount(processHandleCnt, threadHandleCnt);
|
sl@0
|
709 |
TInt allocCellsCnt = User::CountAllocCells();
|
sl@0
|
710 |
|
sl@0
|
711 |
TheTest.Printf(_L("%d "), cnt);
|
sl@0
|
712 |
(void)TheFs.SetErrorCondition(KErrGeneral, cnt);
|
sl@0
|
713 |
int outFlags = 0;
|
sl@0
|
714 |
err = sqlite3OsOpen(vfs, NULL, osFile, SQLITE_OPEN_READWRITE, &outFlags);
|
sl@0
|
715 |
if(err == SQLITE_OK)
|
sl@0
|
716 |
{
|
sl@0
|
717 |
//Since this is a temp file, its creation will be delayed till the first file write operation.
|
sl@0
|
718 |
err = sqlite3OsWrite(osFile, "1234", 4, 0);
|
sl@0
|
719 |
(void)sqlite3OsClose(osFile);
|
sl@0
|
720 |
}
|
sl@0
|
721 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
722 |
if(err != SQLITE_OK)
|
sl@0
|
723 |
{
|
sl@0
|
724 |
TInt processHandleCnt2 = 0;
|
sl@0
|
725 |
TInt threadHandleCnt2 = 0;
|
sl@0
|
726 |
RThread().HandleCount(processHandleCnt2, threadHandleCnt2);
|
sl@0
|
727 |
TEST2(processHandleCnt2, processHandleCnt);
|
sl@0
|
728 |
TEST2(threadHandleCnt2, threadHandleCnt);
|
sl@0
|
729 |
TInt allocCellsCnt2 = User::CountAllocCells();
|
sl@0
|
730 |
TEST2(allocCellsCnt2, allocCellsCnt);
|
sl@0
|
731 |
++cnt;
|
sl@0
|
732 |
}
|
sl@0
|
733 |
//If the iteration has failed, then no temp file should exist in the test private data cage.
|
sl@0
|
734 |
//If the iteration has succeeded, then sqlite3OsClose() should have deleted the temp file.
|
sl@0
|
735 |
TInt err2 = DoDeleteTempFiles();
|
sl@0
|
736 |
TEST2(err2, KErrNotFound);
|
sl@0
|
737 |
}
|
sl@0
|
738 |
TEST2(err, SQLITE_OK);
|
sl@0
|
739 |
TheTest.Printf(_L("\r\n=== TVfs::Open(<temp file>) file I/O error simulation test succeeded at iteration %d\r\n"), cnt);
|
sl@0
|
740 |
User::Free(osFile);
|
sl@0
|
741 |
}
|
sl@0
|
742 |
|
sl@0
|
743 |
void VfsCreateDeleteOnCloseFileOomTest()
|
sl@0
|
744 |
{
|
sl@0
|
745 |
sqlite3_vfs* vfs = sqlite3_vfs_find(NULL);
|
sl@0
|
746 |
TEST(vfs != NULL);
|
sl@0
|
747 |
|
sl@0
|
748 |
sqlite3_file* osFile = (sqlite3_file*)User::Alloc(vfs->szOsFile);
|
sl@0
|
749 |
TEST(osFile != NULL);
|
sl@0
|
750 |
|
sl@0
|
751 |
TheTest.Printf(_L("Iteration: "));
|
sl@0
|
752 |
TInt failingAllocNum = 0;
|
sl@0
|
753 |
TInt err = SQLITE_IOERR_NOMEM;
|
sl@0
|
754 |
while(err == SQLITE_IOERR_NOMEM)
|
sl@0
|
755 |
{
|
sl@0
|
756 |
++failingAllocNum;
|
sl@0
|
757 |
TheTest.Printf(_L("%d "), failingAllocNum);
|
sl@0
|
758 |
OomPreStep(failingAllocNum);
|
sl@0
|
759 |
int outFlags = 0;
|
sl@0
|
760 |
err = sqlite3OsOpen(vfs, KTestFile4Z, osFile, SQLITE_OPEN_CREATE | SQLITE_OPEN_DELETEONCLOSE, &outFlags);
|
sl@0
|
761 |
if(err == SQLITE_OK)
|
sl@0
|
762 |
{
|
sl@0
|
763 |
err = sqlite3OsClose(osFile);
|
sl@0
|
764 |
}
|
sl@0
|
765 |
OomPostStep();
|
sl@0
|
766 |
if(err != SQLITE_OK)
|
sl@0
|
767 |
{
|
sl@0
|
768 |
TEST2(err, SQLITE_IOERR_NOMEM);
|
sl@0
|
769 |
}
|
sl@0
|
770 |
//Whether the iteration has failed or succeeded, the file should not exist.
|
sl@0
|
771 |
TPtrC8 ptrname((const TUint8*)KTestFile4Z);
|
sl@0
|
772 |
TBuf<50> fname;
|
sl@0
|
773 |
fname.Copy(ptrname);
|
sl@0
|
774 |
TInt err2 = TheFs.Delete(fname);
|
sl@0
|
775 |
TEST2(err2, KErrNotFound);
|
sl@0
|
776 |
}
|
sl@0
|
777 |
TEST2(err, SQLITE_OK);
|
sl@0
|
778 |
TheTest.Printf(_L("\r\n=== TVfs::Open(<delete on close file>) OOM test succeeded at allcoation %d\r\n"), failingAllocNum);
|
sl@0
|
779 |
User::Free(osFile);
|
sl@0
|
780 |
}
|
sl@0
|
781 |
|
sl@0
|
782 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
783 |
|
sl@0
|
784 |
//Panic thread function.
|
sl@0
|
785 |
//It will cast aData parameter to a TFunctor pointer and call it.
|
sl@0
|
786 |
//The expectation is that the called function will panic and kill the panic thread.
|
sl@0
|
787 |
TInt ThreadFunc(void* aData)
|
sl@0
|
788 |
{
|
sl@0
|
789 |
CTrapCleanup* tc = CTrapCleanup::New();
|
sl@0
|
790 |
TEST(tc != NULL);
|
sl@0
|
791 |
|
sl@0
|
792 |
User::SetJustInTime(EFalse); // disable debugger panic handling
|
sl@0
|
793 |
|
sl@0
|
794 |
TFunctor* obj = reinterpret_cast<TFunctor*> (aData);
|
sl@0
|
795 |
TEST(obj != NULL);
|
sl@0
|
796 |
(*obj)();//call the panic function
|
sl@0
|
797 |
|
sl@0
|
798 |
delete tc;
|
sl@0
|
799 |
|
sl@0
|
800 |
return KErrNone;
|
sl@0
|
801 |
}
|
sl@0
|
802 |
|
sl@0
|
803 |
//Panic test.
|
sl@0
|
804 |
//PanicTest function will create a new thread - panic thread, giving it a pointer to the function which has to
|
sl@0
|
805 |
//be executed and the expectation is that the function will panic and kill the panic thread.
|
sl@0
|
806 |
//PanicTest function will check the panic thread exit code, exit category and the panic code.
|
sl@0
|
807 |
void PanicTest(TFunctor& aFunctor, TExitType aExpectedExitType, const TDesC& aExpectedCategory, TInt aExpectedPanicCode)
|
sl@0
|
808 |
{
|
sl@0
|
809 |
RThread thread;
|
sl@0
|
810 |
_LIT(KThreadName,"OsLayerPanicThread");
|
sl@0
|
811 |
TEST2(thread.Create(KThreadName, &ThreadFunc, 0x2000, 0x1000, 0x10000, (void*)&aFunctor, EOwnerThread), KErrNone);
|
sl@0
|
812 |
|
sl@0
|
813 |
TRequestStatus status;
|
sl@0
|
814 |
thread.Logon(status);
|
sl@0
|
815 |
TEST2(status.Int(), KRequestPending);
|
sl@0
|
816 |
thread.Resume();
|
sl@0
|
817 |
User::WaitForRequest(status);
|
sl@0
|
818 |
User::SetJustInTime(ETrue); // enable debugger panic handling
|
sl@0
|
819 |
|
sl@0
|
820 |
TEST2(thread.ExitType(), aExpectedExitType);
|
sl@0
|
821 |
TEST(thread.ExitCategory() == aExpectedCategory);
|
sl@0
|
822 |
TEST2(thread.ExitReason(), aExpectedPanicCode);
|
sl@0
|
823 |
|
sl@0
|
824 |
CLOSE_AND_WAIT(thread);
|
sl@0
|
825 |
}
|
sl@0
|
826 |
|
sl@0
|
827 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
828 |
////////////////////////////// Panic test functions /////////////////////////////////////////////////
|
sl@0
|
829 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
830 |
|
sl@0
|
831 |
#ifdef _DEBUG
|
sl@0
|
832 |
|
sl@0
|
833 |
//Panic when calling COsLayerData::Create() is called and the OS layer data has been already created.
|
sl@0
|
834 |
class TOsLayerDataDuplicated : public TFunctor
|
sl@0
|
835 |
{
|
sl@0
|
836 |
private:
|
sl@0
|
837 |
virtual void operator()()
|
sl@0
|
838 |
{
|
sl@0
|
839 |
(void)sqlite3SymbianLibInit();//This should crash the thread in debug mode (because the Os layer
|
sl@0
|
840 |
//data was created already in TestEnvInit()).
|
sl@0
|
841 |
}
|
sl@0
|
842 |
};
|
sl@0
|
843 |
static TOsLayerDataDuplicated TheOsLayerDataDuplicated;
|
sl@0
|
844 |
|
sl@0
|
845 |
#endif //_DEBUG
|
sl@0
|
846 |
|
sl@0
|
847 |
/**
|
sl@0
|
848 |
@SYMTestCaseID SYSLIB-SQL-CT-1650
|
sl@0
|
849 |
@SYMTestCaseDesc SQL, OS porting layer tests.
|
sl@0
|
850 |
@SYMTestPriority High
|
sl@0
|
851 |
@SYMTestActions SQL, OS porting layer tests.
|
sl@0
|
852 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
853 |
@SYMREQ REQ5792
|
sl@0
|
854 |
REQ5793
|
sl@0
|
855 |
*/
|
sl@0
|
856 |
void DoTests()
|
sl@0
|
857 |
{
|
sl@0
|
858 |
TheTest.Printf(_L("OS porting layer test - create/open/close/delete a file\r\n"));
|
sl@0
|
859 |
Test1();
|
sl@0
|
860 |
TheTest.Printf(_L("OS porting layer test - read/write/seek/truncate\r\n"));
|
sl@0
|
861 |
Test2();
|
sl@0
|
862 |
TheTest.Printf(_L("OS porting layer test - miscellaneous tests\r\n"));
|
sl@0
|
863 |
Test3();
|
sl@0
|
864 |
TheTest.Printf(_L("OS porting layer test - lock/unlock\r\n"));
|
sl@0
|
865 |
Test5();
|
sl@0
|
866 |
TheTest.Printf(_L("OS porting layer test - sqlite3SymbianLibInit() - OOM test\r\n"));
|
sl@0
|
867 |
sqlite3SymbianLibInitOomTest();
|
sl@0
|
868 |
TheTest.Printf(_L("OS porting layer test - sqlite3SymbianLibInit() - 'File I/O error simulation' test\r\n"));
|
sl@0
|
869 |
sqlite3SymbianLibInitFsErrTest();
|
sl@0
|
870 |
TheTest.Printf(_L("OS porting layer test - 'profiler disabled' tests\r\n"));
|
sl@0
|
871 |
ProfilerDisabledTest();
|
sl@0
|
872 |
TheTest.Printf(_L("OS porting layer test - negative tests\r\n"));
|
sl@0
|
873 |
NegativeTest();
|
sl@0
|
874 |
TheTest.Printf(_L("TVfs::Open(<temp file>) OOM test\r\n"));
|
sl@0
|
875 |
VfsOpenTempFileOomTest();
|
sl@0
|
876 |
TheTest.Printf(_L("TVfs::Open(<temp file>) file I/O error simulation test\r\n"));
|
sl@0
|
877 |
VfsOpenTempFileFileIoErrTest();
|
sl@0
|
878 |
TheTest.Printf(_L("TVfs::Open(<'delete on close' file>) OOM test\r\n"));
|
sl@0
|
879 |
VfsCreateDeleteOnCloseFileOomTest();
|
sl@0
|
880 |
#ifdef _DEBUG
|
sl@0
|
881 |
TheTest.Printf(_L("'An attempt to create the OS layer data again' panic\r\n"));
|
sl@0
|
882 |
PanicTest(TheOsLayerDataDuplicated, EExitPanic, KSqlitePanicCategory, ESqliteOsPanicOsLayerDataExists);
|
sl@0
|
883 |
#endif //_DEBUG
|
sl@0
|
884 |
}
|
sl@0
|
885 |
|
sl@0
|
886 |
TInt E32Main()
|
sl@0
|
887 |
{
|
sl@0
|
888 |
TheTest.Title();
|
sl@0
|
889 |
|
sl@0
|
890 |
CTrapCleanup* tc = CTrapCleanup::New();
|
sl@0
|
891 |
TheTest(tc != NULL);
|
sl@0
|
892 |
|
sl@0
|
893 |
__UHEAP_MARK;
|
sl@0
|
894 |
|
sl@0
|
895 |
TestEnvInit();
|
sl@0
|
896 |
DeleteTestFiles();
|
sl@0
|
897 |
TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1650 OS porting layer tests"));
|
sl@0
|
898 |
DoTests();
|
sl@0
|
899 |
TestEnvDestroy();
|
sl@0
|
900 |
|
sl@0
|
901 |
__UHEAP_MARKEND;
|
sl@0
|
902 |
|
sl@0
|
903 |
TheTest.End();
|
sl@0
|
904 |
TheTest.Close();
|
sl@0
|
905 |
|
sl@0
|
906 |
delete tc;
|
sl@0
|
907 |
|
sl@0
|
908 |
User::Heap().Check();
|
sl@0
|
909 |
return KErrNone;
|
sl@0
|
910 |
}
|