sl@0
|
1 |
// Copyright (c) 2007-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 <sqldb.h>
|
sl@0
|
19 |
#include <stdio.h>
|
sl@0
|
20 |
#include <stdlib.h>
|
sl@0
|
21 |
#include <string.h>
|
sl@0
|
22 |
#include "sqlite3.h"
|
sl@0
|
23 |
#include "SqliteSymbian.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
26 |
|
sl@0
|
27 |
RTest TheTest(_L("t_sqlfserr test"));
|
sl@0
|
28 |
_LIT(KTestDir, "c:\\test\\");
|
sl@0
|
29 |
_LIT(KTestDbName, "c:\\test\\t_fserr.db");
|
sl@0
|
30 |
_LIT(KPrivateTestDbName, "c:\\private\\212A2C27\\t_fserr2.db");
|
sl@0
|
31 |
_LIT(KSecureTestDbName, "c:[212A2C27]t_fserr3.db");
|
sl@0
|
32 |
|
sl@0
|
33 |
TFileName TheRmvMediaDbFileName;//The name of the file used for tests on a removable media
|
sl@0
|
34 |
RFs TheFs;
|
sl@0
|
35 |
RSqlDatabase TheDb;
|
sl@0
|
36 |
|
sl@0
|
37 |
//The next constants are used in the "blob write" test
|
sl@0
|
38 |
const TInt KWriteCnt = 9;
|
sl@0
|
39 |
const TInt KBlobSize = 397 * KWriteCnt;
|
sl@0
|
40 |
_LIT(KAttachDb, "AttachDb");
|
sl@0
|
41 |
|
sl@0
|
42 |
//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
|
43 |
#ifdef _SQLPROFILER
|
sl@0
|
44 |
TInt TheSqlSrvProfilerFileRead = 0;
|
sl@0
|
45 |
TInt TheSqlSrvProfilerFileWrite = 0;
|
sl@0
|
46 |
TInt TheSqlSrvProfilerFileSync = 0;
|
sl@0
|
47 |
TInt TheSqlSrvProfilerFileSetSize = 0;
|
sl@0
|
48 |
#endif
|
sl@0
|
49 |
|
sl@0
|
50 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
51 |
|
sl@0
|
52 |
TBool FileExists(const TDesC& aFileName)
|
sl@0
|
53 |
{
|
sl@0
|
54 |
TEntry entry;
|
sl@0
|
55 |
return TheFs.Entry(aFileName, entry) == KErrNone;
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
void DestroyTestEnv()
|
sl@0
|
59 |
{
|
sl@0
|
60 |
TheDb.Close();
|
sl@0
|
61 |
(void)RSqlDatabase::Delete(KSecureTestDbName);
|
sl@0
|
62 |
(void)RSqlDatabase::Delete(KPrivateTestDbName);
|
sl@0
|
63 |
(void)RSqlDatabase::Delete(KTestDbName);
|
sl@0
|
64 |
(void)RSqlDatabase::Delete(TheRmvMediaDbFileName);
|
sl@0
|
65 |
TheFs.Close();
|
sl@0
|
66 |
sqlite3SymbianLibFinalize();
|
sl@0
|
67 |
CloseSTDLIB();
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
71 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
72 |
//Test macros and functions
|
sl@0
|
73 |
void Check(TInt aValue, TInt aLine)
|
sl@0
|
74 |
{
|
sl@0
|
75 |
if(!aValue)
|
sl@0
|
76 |
{
|
sl@0
|
77 |
DestroyTestEnv();
|
sl@0
|
78 |
TheTest(EFalse, aLine);
|
sl@0
|
79 |
}
|
sl@0
|
80 |
}
|
sl@0
|
81 |
void Check(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
82 |
{
|
sl@0
|
83 |
if(aValue != aExpected)
|
sl@0
|
84 |
{
|
sl@0
|
85 |
DestroyTestEnv();
|
sl@0
|
86 |
RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
|
sl@0
|
87 |
TheTest(EFalse, aLine);
|
sl@0
|
88 |
}
|
sl@0
|
89 |
}
|
sl@0
|
90 |
#define TEST(arg) ::Check((arg), __LINE__)
|
sl@0
|
91 |
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
|
sl@0
|
92 |
|
sl@0
|
93 |
void SqliteCheck(sqlite3* aDbHandle, TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
if(aValue != aExpected)
|
sl@0
|
96 |
{
|
sl@0
|
97 |
RDebug::Print(_L("*** SQLITE: Expected error: %d, got: %d\r\n"), aExpected, aValue);
|
sl@0
|
98 |
if(aDbHandle)
|
sl@0
|
99 |
{
|
sl@0
|
100 |
const char* errMsg = sqlite3_errmsg(aDbHandle);
|
sl@0
|
101 |
TPtrC8 ptr8((const TUint8*)errMsg, strlen(errMsg));
|
sl@0
|
102 |
TBuf<200> buf;
|
sl@0
|
103 |
buf.Copy(ptr8);
|
sl@0
|
104 |
RDebug::Print(_L("*** SQLITE error message: \"%S\"\r\n"), &buf);
|
sl@0
|
105 |
}
|
sl@0
|
106 |
DestroyTestEnv();
|
sl@0
|
107 |
TheTest(EFalse, aLine);
|
sl@0
|
108 |
}
|
sl@0
|
109 |
}
|
sl@0
|
110 |
#define SQLITE_TEST(aDbHandle, aValue, aExpected) ::SqliteCheck(aDbHandle, aValue, aExpected, __LINE__)
|
sl@0
|
111 |
|
sl@0
|
112 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
113 |
|
sl@0
|
114 |
void SetupTestEnv()
|
sl@0
|
115 |
{
|
sl@0
|
116 |
TInt err = TheFs.Connect();
|
sl@0
|
117 |
TEST2(err, KErrNone);
|
sl@0
|
118 |
|
sl@0
|
119 |
err = TheFs.MkDir(KTestDir);
|
sl@0
|
120 |
TEST(err == KErrNone || err == KErrAlreadyExists);
|
sl@0
|
121 |
|
sl@0
|
122 |
sqlite3SymbianLibInit();
|
sl@0
|
123 |
}
|
sl@0
|
124 |
|
sl@0
|
125 |
TBool CheckRecord(const TDesC& aDbName, TInt aId, const TDesC& aExpectedName, TBool aOpenDb = ETrue)
|
sl@0
|
126 |
{
|
sl@0
|
127 |
if(aOpenDb)
|
sl@0
|
128 |
{
|
sl@0
|
129 |
TEST2(TheDb.Open(aDbName), KErrNone);
|
sl@0
|
130 |
}
|
sl@0
|
131 |
TBuf<64> sql;
|
sl@0
|
132 |
sql.Copy(_L("SELECT Name FROM A WHERE Id="));
|
sl@0
|
133 |
sql.AppendNum(aId);
|
sl@0
|
134 |
TSqlScalarFullSelectQuery q(TheDb);
|
sl@0
|
135 |
TBuf<20> name;
|
sl@0
|
136 |
TRAPD(err, (void)q.SelectTextL(sql, name));
|
sl@0
|
137 |
TEST2(err, KErrNone);
|
sl@0
|
138 |
if(aOpenDb)
|
sl@0
|
139 |
{
|
sl@0
|
140 |
TheDb.Close();
|
sl@0
|
141 |
}
|
sl@0
|
142 |
return name == aExpectedName;
|
sl@0
|
143 |
}
|
sl@0
|
144 |
|
sl@0
|
145 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
146 |
|
sl@0
|
147 |
/**
|
sl@0
|
148 |
@SYMTestCaseID SYSLIB-SQL-UT-3419
|
sl@0
|
149 |
@SYMTestCaseDesc Test for DEF103859 "SQLITE panic, _DEBUG mode, persistent file I/O error simulation".
|
sl@0
|
150 |
The test creates a test database with one table, inserts one record.
|
sl@0
|
151 |
Then the test attempts to update the existing record while simulating file I/O failures.
|
sl@0
|
152 |
After each test iteration the database content is tested and is expected to be the same
|
sl@0
|
153 |
as it was before the test. RSqlDatabase::Exec() is used for the update operation.
|
sl@0
|
154 |
@SYMTestPriority High
|
sl@0
|
155 |
@SYMTestActions Test for DEF103859 "SQLITE panic, _DEBUG mode, persistent file I/O error simulation".
|
sl@0
|
156 |
@SYMTestExpectedResults The test must not fail
|
sl@0
|
157 |
@SYMDEF DEF103859
|
sl@0
|
158 |
*/
|
sl@0
|
159 |
void AlterDatabaseTest()
|
sl@0
|
160 |
{
|
sl@0
|
161 |
(void)RSqlDatabase::Delete(KTestDbName);
|
sl@0
|
162 |
TInt err = TheDb.Create(KTestDbName);
|
sl@0
|
163 |
TEST2(err, KErrNone);
|
sl@0
|
164 |
err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER,Name TEXT)"));
|
sl@0
|
165 |
TEST(err >= 0);
|
sl@0
|
166 |
TheDb.Close();
|
sl@0
|
167 |
err = KErrNotFound;
|
sl@0
|
168 |
for(TInt cnt=0;err<KErrNone;++cnt)
|
sl@0
|
169 |
{
|
sl@0
|
170 |
TheTest.Printf(_L("%d \r"), cnt);
|
sl@0
|
171 |
for (TInt fsError=KErrNotFound;fsError>=KErrDied;--fsError)
|
sl@0
|
172 |
{
|
sl@0
|
173 |
//Preprocessing
|
sl@0
|
174 |
TEST2(TheDb.Open(KTestDbName), KErrNone);
|
sl@0
|
175 |
(void)TheDb.Exec(_L("DELETE FROM A WHERE Id=1"));
|
sl@0
|
176 |
err = TheDb.Exec(_L("INSERT INTO A(Id,Name) VALUES(1,'Name')"));
|
sl@0
|
177 |
TEST2(err, 1);
|
sl@0
|
178 |
//The test
|
sl@0
|
179 |
(void)TheFs.SetErrorCondition(fsError, cnt);
|
sl@0
|
180 |
err = TheDb.Exec(_L("UPDATE A SET Name='Name2' WHERE Id=1"));
|
sl@0
|
181 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
182 |
if(err < 1)
|
sl@0
|
183 |
{
|
sl@0
|
184 |
TheDb.Close();//close the database to recover from the last error
|
sl@0
|
185 |
//check the database content - all bets are off in a case of an I/O error.
|
sl@0
|
186 |
//The existing record might have been updated.
|
sl@0
|
187 |
TEST(CheckRecord(KTestDbName, 1, _L("Name")) || CheckRecord(KTestDbName, 1, _L("Name2")));
|
sl@0
|
188 |
}
|
sl@0
|
189 |
else
|
sl@0
|
190 |
{
|
sl@0
|
191 |
TEST2(err, 1);
|
sl@0
|
192 |
//check the database content has been modified by the operation.
|
sl@0
|
193 |
TEST(CheckRecord(KTestDbName, 1, _L("Name2"), EFalse));
|
sl@0
|
194 |
TheDb.Close();
|
sl@0
|
195 |
}
|
sl@0
|
196 |
}
|
sl@0
|
197 |
}
|
sl@0
|
198 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
199 |
TEST2(err, 1);
|
sl@0
|
200 |
//check the database content (transaction durability).
|
sl@0
|
201 |
TEST(CheckRecord(KTestDbName, 1, _L("Name2")));
|
sl@0
|
202 |
err = RSqlDatabase::Delete(KTestDbName);
|
sl@0
|
203 |
TEST2(err, KErrNone);
|
sl@0
|
204 |
TheTest.Printf(_L("\r\n"));
|
sl@0
|
205 |
}
|
sl@0
|
206 |
|
sl@0
|
207 |
/**
|
sl@0
|
208 |
@SYMTestCaseID SYSLIB-SQL-UT-3420
|
sl@0
|
209 |
@SYMTestCaseDesc Test for DEF103859 "SQLITE panic, _DEBUG mode, persistent file I/O error simulation".
|
sl@0
|
210 |
The test creates a test database with one table, inserts one record.
|
sl@0
|
211 |
Then the test attempts to update the existing record while simulating file I/O failures.
|
sl@0
|
212 |
After each test iteration the database content is tested and is expected to be the same
|
sl@0
|
213 |
as it was before the test. RSqlStatement::Exec() is used for the update operation.
|
sl@0
|
214 |
@SYMTestPriority High
|
sl@0
|
215 |
@SYMTestActions Test for DEF103859 "SQLITE panic, _DEBUG mode, persistent file I/O error simulation".
|
sl@0
|
216 |
@SYMTestExpectedResults The test must not fail
|
sl@0
|
217 |
@SYMDEF DEF103859
|
sl@0
|
218 |
*/
|
sl@0
|
219 |
void AlterDatabaseTest2()
|
sl@0
|
220 |
{
|
sl@0
|
221 |
(void)RSqlDatabase::Delete(KTestDbName);
|
sl@0
|
222 |
TInt err = TheDb.Create(KTestDbName);
|
sl@0
|
223 |
TEST2(err, KErrNone);
|
sl@0
|
224 |
err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER,Name TEXT)"));
|
sl@0
|
225 |
TEST(err >= 0);
|
sl@0
|
226 |
TheDb.Close();
|
sl@0
|
227 |
err = KErrNotFound;
|
sl@0
|
228 |
for(TInt cnt=0;err<KErrNone;++cnt)
|
sl@0
|
229 |
{
|
sl@0
|
230 |
TheTest.Printf(_L("%d \r"), cnt);
|
sl@0
|
231 |
for (TInt fsError=KErrNotFound;fsError>=KErrDied;--fsError)
|
sl@0
|
232 |
{
|
sl@0
|
233 |
//Preprocessing
|
sl@0
|
234 |
TEST2(TheDb.Open(KTestDbName), KErrNone);
|
sl@0
|
235 |
(void)TheDb.Exec(_L("DELETE FROM A WHERE Id=1"));
|
sl@0
|
236 |
err = TheDb.Exec(_L("INSERT INTO A(Id,Name) VALUES(1,'Name')"));
|
sl@0
|
237 |
TEST2(err, 1);
|
sl@0
|
238 |
//The test
|
sl@0
|
239 |
(void)TheFs.SetErrorCondition(fsError, cnt);
|
sl@0
|
240 |
RSqlStatement stmt;
|
sl@0
|
241 |
err = stmt.Prepare(TheDb, _L("UPDATE A SET Name='Name2' WHERE Id=1"));
|
sl@0
|
242 |
if(err == KErrNone)
|
sl@0
|
243 |
{
|
sl@0
|
244 |
err = stmt.Exec();
|
sl@0
|
245 |
}
|
sl@0
|
246 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
247 |
stmt.Close();
|
sl@0
|
248 |
if(err < 1)
|
sl@0
|
249 |
{
|
sl@0
|
250 |
TheDb.Close();//close the database to recover from the last error
|
sl@0
|
251 |
//check the database content - all bets are off in a case of an I/O error.
|
sl@0
|
252 |
//The existing record might have been updated.
|
sl@0
|
253 |
TEST(CheckRecord(KTestDbName, 1, _L("Name")) || CheckRecord(KTestDbName, 1, _L("Name2")));
|
sl@0
|
254 |
}
|
sl@0
|
255 |
else
|
sl@0
|
256 |
{
|
sl@0
|
257 |
TEST2(err, 1);
|
sl@0
|
258 |
//check the database content has been modified by the operation.
|
sl@0
|
259 |
TEST(CheckRecord(KTestDbName, 1, _L("Name2"), EFalse));
|
sl@0
|
260 |
TheDb.Close();
|
sl@0
|
261 |
}
|
sl@0
|
262 |
}
|
sl@0
|
263 |
}
|
sl@0
|
264 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
265 |
TEST2(err, 1);
|
sl@0
|
266 |
//check the database content has been modified by the operation.
|
sl@0
|
267 |
TEST(CheckRecord(KTestDbName, 1, _L("Name2")));
|
sl@0
|
268 |
err = RSqlDatabase::Delete(KTestDbName);
|
sl@0
|
269 |
TEST2(err, KErrNone);
|
sl@0
|
270 |
TheTest.Printf(_L("\r\n"));
|
sl@0
|
271 |
}
|
sl@0
|
272 |
|
sl@0
|
273 |
void CreateTestSecurityPolicy(RSqlSecurityPolicy& aSecurityPolicy)
|
sl@0
|
274 |
{
|
sl@0
|
275 |
TSecurityPolicy alwaysPassPolicy(TSecurityPolicy::EAlwaysPass);
|
sl@0
|
276 |
TInt err = aSecurityPolicy.Create(alwaysPassPolicy);
|
sl@0
|
277 |
TEST2(err, KErrNone);
|
sl@0
|
278 |
|
sl@0
|
279 |
err = aSecurityPolicy.SetDbPolicy(RSqlSecurityPolicy::ESchemaPolicy, alwaysPassPolicy);
|
sl@0
|
280 |
TEST2(err, KErrNone);
|
sl@0
|
281 |
err = aSecurityPolicy.SetDbPolicy(RSqlSecurityPolicy::EWritePolicy, alwaysPassPolicy);
|
sl@0
|
282 |
TEST2(err, KErrNone);
|
sl@0
|
283 |
err = aSecurityPolicy.SetDbPolicy(RSqlSecurityPolicy::EReadPolicy, alwaysPassPolicy);
|
sl@0
|
284 |
TEST2(err, KErrNone);
|
sl@0
|
285 |
}
|
sl@0
|
286 |
|
sl@0
|
287 |
//Creates public shared, private secure and public secure databases.
|
sl@0
|
288 |
void DoCreateTestDatabases(const TPtrC aDbName[], TInt aCount)
|
sl@0
|
289 |
{
|
sl@0
|
290 |
TEST(aCount > 0);
|
sl@0
|
291 |
for(TInt i=0;i<aCount;++i)
|
sl@0
|
292 |
{
|
sl@0
|
293 |
TheTest.Printf(_L("Database: \"%S\"\r\n"), &aDbName[i]);
|
sl@0
|
294 |
(void)RSqlDatabase::Delete(aDbName[i]);
|
sl@0
|
295 |
TInt err = KErrGeneral;
|
sl@0
|
296 |
if(i == (aCount - 1))
|
sl@0
|
297 |
{
|
sl@0
|
298 |
RSqlSecurityPolicy policy;
|
sl@0
|
299 |
CreateTestSecurityPolicy(policy);
|
sl@0
|
300 |
err = TheDb.Create(aDbName[i], policy);
|
sl@0
|
301 |
policy.Close();
|
sl@0
|
302 |
}
|
sl@0
|
303 |
else
|
sl@0
|
304 |
{
|
sl@0
|
305 |
err = TheDb.Create(aDbName[i]);
|
sl@0
|
306 |
}
|
sl@0
|
307 |
TEST2(err, KErrNone);
|
sl@0
|
308 |
err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER,Name TEXT)"));
|
sl@0
|
309 |
TEST(err >= 0);
|
sl@0
|
310 |
err = TheDb.Exec(_L("INSERT INTO A(Id,Name) VALUES(1,'Name')"));
|
sl@0
|
311 |
TEST2(err, 1);
|
sl@0
|
312 |
TheDb.Close();
|
sl@0
|
313 |
}
|
sl@0
|
314 |
}
|
sl@0
|
315 |
|
sl@0
|
316 |
/**
|
sl@0
|
317 |
@SYMTestCaseID SYSLIB-SQL-UT-3421
|
sl@0
|
318 |
@SYMTestCaseDesc Test for DEF103859 "SQLITE panic, _DEBUG mode, persistent file I/O error simulation".
|
sl@0
|
319 |
The test creates a test database with one table, inserts one record.
|
sl@0
|
320 |
Then the test attempts to open the database while simulating file I/O failures.
|
sl@0
|
321 |
At the end of the test the database content is tested and is expected to be the same
|
sl@0
|
322 |
as it was before the test. RSqlStatement::Open() is used in the test.
|
sl@0
|
323 |
@SYMTestPriority High
|
sl@0
|
324 |
@SYMTestActions Test for DEF103859 "SQLITE panic, _DEBUG mode, persistent file I/O error simulation".
|
sl@0
|
325 |
@SYMTestExpectedResults The test must not fail
|
sl@0
|
326 |
@SYMDEF DEF103859
|
sl@0
|
327 |
*/
|
sl@0
|
328 |
void OpenDatabaseTest()
|
sl@0
|
329 |
{
|
sl@0
|
330 |
TPtrC dbName[] = {KTestDbName(), KPrivateTestDbName(), KSecureTestDbName()};
|
sl@0
|
331 |
const TInt KDbNameCnt = sizeof(dbName) / sizeof(dbName[0]);
|
sl@0
|
332 |
DoCreateTestDatabases(dbName, KDbNameCnt);
|
sl@0
|
333 |
for(TInt k=0;k<KDbNameCnt;++k)
|
sl@0
|
334 |
{
|
sl@0
|
335 |
TheTest.Printf(_L("Database: \"%S\"\r\n"), &dbName[k]);
|
sl@0
|
336 |
TInt err = KErrNotFound;
|
sl@0
|
337 |
for(TInt cnt=0;err<KErrNone;++cnt)
|
sl@0
|
338 |
{
|
sl@0
|
339 |
TheTest.Printf(_L("%d \r"), cnt);
|
sl@0
|
340 |
for (TInt fsError=KErrNotFound;fsError>=KErrDied;--fsError)
|
sl@0
|
341 |
{
|
sl@0
|
342 |
(void)TheFs.SetErrorCondition(fsError, cnt);
|
sl@0
|
343 |
err = TheDb.Open(dbName[k]);
|
sl@0
|
344 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
345 |
if(err != KErrNone)
|
sl@0
|
346 |
{
|
sl@0
|
347 |
TheDb.Close();//close the database to recover from the last error
|
sl@0
|
348 |
//check the database content is still the same as before the "open" call
|
sl@0
|
349 |
TEST(CheckRecord(dbName[k], 1, _L("Name")));
|
sl@0
|
350 |
}
|
sl@0
|
351 |
else
|
sl@0
|
352 |
{
|
sl@0
|
353 |
TEST2(err, KErrNone);
|
sl@0
|
354 |
//check the database content is still the same as before the operation, without closing the database
|
sl@0
|
355 |
TEST(CheckRecord(dbName[k], 1, _L("Name"), EFalse));
|
sl@0
|
356 |
TheDb.Close();
|
sl@0
|
357 |
}
|
sl@0
|
358 |
}
|
sl@0
|
359 |
}
|
sl@0
|
360 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
361 |
TEST2(err, KErrNone);
|
sl@0
|
362 |
//check the database content is the same as before the operation, after reopening the database.
|
sl@0
|
363 |
TEST(CheckRecord(dbName[k], 1, _L("Name")));
|
sl@0
|
364 |
err = RSqlDatabase::Delete(dbName[k]);
|
sl@0
|
365 |
TEST2(err, KErrNone);
|
sl@0
|
366 |
TheTest.Printf(_L("\r\n"));
|
sl@0
|
367 |
}//end of: for(TInt k=0;k<KDbNameCnt;++k)
|
sl@0
|
368 |
}
|
sl@0
|
369 |
|
sl@0
|
370 |
/**
|
sl@0
|
371 |
@SYMTestCaseID SYSLIB-SQL-UT-3434
|
sl@0
|
372 |
@SYMTestCaseDesc Test for DEF104820 "SQL, RSqlDatabase::Create() does not delete the file if fails".
|
sl@0
|
373 |
Test for DEF103859 "SQLITE panic, _DEBUG mode, persistent file I/O error simulation".
|
sl@0
|
374 |
Then the test attempts to create a database while simulating file I/O failures.
|
sl@0
|
375 |
When the test succeeds, the test verifies that the database file does exist.
|
sl@0
|
376 |
@SYMTestPriority High
|
sl@0
|
377 |
@SYMTestActions Test for DEF104820 "SQL, RSqlDatabase::Create() does not delete the file if fails".
|
sl@0
|
378 |
Test for DEF103859 "SQLITE panic, _DEBUG mode, persistent file I/O error simulation".
|
sl@0
|
379 |
@SYMTestExpectedResults The test must not fail
|
sl@0
|
380 |
@SYMDEF DEF103859
|
sl@0
|
381 |
*/
|
sl@0
|
382 |
void CreateDatabaseTest()
|
sl@0
|
383 |
{
|
sl@0
|
384 |
RSqlSecurityPolicy policy;
|
sl@0
|
385 |
CreateTestSecurityPolicy(policy);
|
sl@0
|
386 |
|
sl@0
|
387 |
TPtrC dbName[] = {KTestDbName(), KPrivateTestDbName(), KSecureTestDbName()};
|
sl@0
|
388 |
const TInt KDbNameCnt = sizeof(dbName) / sizeof(dbName[0]);
|
sl@0
|
389 |
for(TInt k=0;k<KDbNameCnt;++k)
|
sl@0
|
390 |
{
|
sl@0
|
391 |
TheTest.Printf(_L("Database: \"%S\"\r\n"), &dbName[k]);
|
sl@0
|
392 |
TInt err = -1;
|
sl@0
|
393 |
for(TInt cnt=0;err<KErrNone;++cnt)
|
sl@0
|
394 |
{
|
sl@0
|
395 |
TheTest.Printf(_L("%d \r"), cnt);
|
sl@0
|
396 |
for (TInt fsError=KErrNotFound;fsError>=KErrDied;--fsError)
|
sl@0
|
397 |
{
|
sl@0
|
398 |
//Ideally, the database should be deleted by the SQL server, if RSqlDatabase::Create() fails.
|
sl@0
|
399 |
//But SetErrorCondition() makes the error persistent, so the SQL server will fail to delete the file.
|
sl@0
|
400 |
//This is the reason, RSqlDatabase::Delete()to be used, before simulating file I/O error.
|
sl@0
|
401 |
(void)RSqlDatabase::Delete(dbName[k]);
|
sl@0
|
402 |
(void)TheFs.SetErrorCondition(fsError, cnt);
|
sl@0
|
403 |
err = (k == (KDbNameCnt - 1)) ? TheDb.Create(dbName[k], policy) : TheDb.Create(dbName[k]);
|
sl@0
|
404 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
405 |
TheDb.Close();
|
sl@0
|
406 |
//If err != KErrNone, the database file should have been already deleted by the server and here is
|
sl@0
|
407 |
//the place to check that. But since the file I/O failure simulation makes the file I/O error
|
sl@0
|
408 |
//persistent, the file cannot be deleted by the server, because the "file delete" operation also fails.
|
sl@0
|
409 |
}
|
sl@0
|
410 |
}
|
sl@0
|
411 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
412 |
TheDb.Close();
|
sl@0
|
413 |
TEST2(err, KErrNone);
|
sl@0
|
414 |
if( k != (KDbNameCnt - 1))
|
sl@0
|
415 |
{
|
sl@0
|
416 |
TEST(FileExists(dbName[k]));
|
sl@0
|
417 |
}
|
sl@0
|
418 |
err = RSqlDatabase::Delete(dbName[k]);
|
sl@0
|
419 |
TEST2(err, KErrNone);
|
sl@0
|
420 |
TheTest.Printf(_L("\r\n"));
|
sl@0
|
421 |
}
|
sl@0
|
422 |
policy.Close();
|
sl@0
|
423 |
}
|
sl@0
|
424 |
|
sl@0
|
425 |
/**
|
sl@0
|
426 |
@SYMTestCaseID PDS-SQL-UT-4189
|
sl@0
|
427 |
@SYMTestCaseDesc Test for DEF145125 "SQL, low code coverage".
|
sl@0
|
428 |
The test creates public shared, private secure and public secure test databases.
|
sl@0
|
429 |
Then the test opens the publich shared database and attempts to attach one of the other two
|
sl@0
|
430 |
in a file I/O error simulation loop.
|
sl@0
|
431 |
@SYMTestPriority High
|
sl@0
|
432 |
@SYMTestActions Test for DEF145125 - "SQL, low code coverage".
|
sl@0
|
433 |
@SYMTestExpectedResults The test must not fail
|
sl@0
|
434 |
@SYMDEF DEF145125
|
sl@0
|
435 |
*/
|
sl@0
|
436 |
void AttachDatabaseTest()
|
sl@0
|
437 |
{
|
sl@0
|
438 |
TPtrC dbName[] = {KTestDbName(), KPrivateTestDbName(), KSecureTestDbName()};
|
sl@0
|
439 |
const TInt KDbNameCnt = sizeof(dbName) / sizeof(dbName[0]);
|
sl@0
|
440 |
DoCreateTestDatabases(dbName, KDbNameCnt);
|
sl@0
|
441 |
for(TInt k=1;k<KDbNameCnt;++k)
|
sl@0
|
442 |
{
|
sl@0
|
443 |
TheTest.Printf(_L("Database: \"%S\"\r\n"), &dbName[k]);
|
sl@0
|
444 |
TInt err = KErrGeneral;
|
sl@0
|
445 |
for(TInt cnt=0;err<KErrNone;++cnt)
|
sl@0
|
446 |
{
|
sl@0
|
447 |
TheTest.Printf(_L("%d \r"), cnt);
|
sl@0
|
448 |
for(TInt fsError=KErrNotFound;fsError>=KErrDied;--fsError)
|
sl@0
|
449 |
{
|
sl@0
|
450 |
err = TheDb.Open(KTestDbName);
|
sl@0
|
451 |
TEST2(err, KErrNone);
|
sl@0
|
452 |
(void)TheFs.SetErrorCondition(fsError, cnt);
|
sl@0
|
453 |
err = TheDb.Attach(dbName[k], _L("DB2"));
|
sl@0
|
454 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
455 |
(void)TheDb.Detach(_L("DB2"));
|
sl@0
|
456 |
TheDb.Close();//close the database to recover from the last error
|
sl@0
|
457 |
}
|
sl@0
|
458 |
}
|
sl@0
|
459 |
TEST2(err, KErrNone);
|
sl@0
|
460 |
err = RSqlDatabase::Delete(dbName[k]);
|
sl@0
|
461 |
TEST2(err, KErrNone);
|
sl@0
|
462 |
TheTest.Printf(_L("\r\n"));
|
sl@0
|
463 |
}
|
sl@0
|
464 |
}
|
sl@0
|
465 |
|
sl@0
|
466 |
/**
|
sl@0
|
467 |
@SYMTestCaseID PDS-SQL-UT-4190
|
sl@0
|
468 |
@SYMTestCaseDesc Test for DEF145125 "SQL, low code coverage".
|
sl@0
|
469 |
The tests attempts to delete a database in a file I/O error simulation loop.
|
sl@0
|
470 |
@SYMTestPriority High
|
sl@0
|
471 |
@SYMTestActions Test for DEF145125 - "SQL, low code coverage".
|
sl@0
|
472 |
@SYMTestExpectedResults The test must not fail
|
sl@0
|
473 |
@SYMDEF DEF145125
|
sl@0
|
474 |
*/
|
sl@0
|
475 |
void DeleteDatabaseTest()
|
sl@0
|
476 |
{
|
sl@0
|
477 |
TPtrC dbName[] = {KTestDbName(), KPrivateTestDbName(), KSecureTestDbName()};
|
sl@0
|
478 |
const TInt KDbNameCnt = sizeof(dbName) / sizeof(dbName[0]);
|
sl@0
|
479 |
DoCreateTestDatabases(dbName, KDbNameCnt);
|
sl@0
|
480 |
for(TInt k=0;k<KDbNameCnt;++k)
|
sl@0
|
481 |
{
|
sl@0
|
482 |
TheTest.Printf(_L("Database: \"%S\"\r\n"), &dbName[k]);
|
sl@0
|
483 |
TInt err = KErrGeneral;
|
sl@0
|
484 |
for(TInt cnt=1;err<KErrNone;++cnt)
|
sl@0
|
485 |
{
|
sl@0
|
486 |
TheTest.Printf(_L("%d \r"), cnt);
|
sl@0
|
487 |
(void)TheFs.SetErrorCondition(KErrGeneral, cnt);
|
sl@0
|
488 |
err = RSqlDatabase::Delete(dbName[k]);
|
sl@0
|
489 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
490 |
}
|
sl@0
|
491 |
TEST2(err, KErrNone);
|
sl@0
|
492 |
err = RSqlDatabase::Delete(KTestDbName);
|
sl@0
|
493 |
TEST2(err, KErrNotFound);
|
sl@0
|
494 |
}
|
sl@0
|
495 |
}
|
sl@0
|
496 |
|
sl@0
|
497 |
/**
|
sl@0
|
498 |
@SYMTestCaseID SYSLIB-SQL-UT-3462
|
sl@0
|
499 |
@SYMTestCaseDesc Test for DEF105434 "SQL, persistent file I/O simulation, COMMIT problem".
|
sl@0
|
500 |
The test creates a test database with one table, inserts one record.
|
sl@0
|
501 |
Then the test attempts to retrieve the existing record while simulating file I/O failures.
|
sl@0
|
502 |
After each iteration, the database content is tested, that it has not been modified by the operation.
|
sl@0
|
503 |
@SYMTestPriority High
|
sl@0
|
504 |
@SYMTestActions Test for DEF105434 "SQL, persistent file I/O simulation, COMMIT problem".
|
sl@0
|
505 |
@SYMTestExpectedResults The test must not fail
|
sl@0
|
506 |
@SYMDEF DEF105434
|
sl@0
|
507 |
*/
|
sl@0
|
508 |
void SelectRecordTest()
|
sl@0
|
509 |
{
|
sl@0
|
510 |
(void)RSqlDatabase::Delete(KTestDbName);
|
sl@0
|
511 |
TInt err = TheDb.Create(KTestDbName);
|
sl@0
|
512 |
TEST2(err, KErrNone);
|
sl@0
|
513 |
err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER, Name TEXT)"));
|
sl@0
|
514 |
TEST(err >= 0);
|
sl@0
|
515 |
err = TheDb.Exec(_L("INSERT INTO A(Id,Name) VALUES(1,'Name')"));
|
sl@0
|
516 |
TEST2(err, 1);
|
sl@0
|
517 |
TheDb.Close();
|
sl@0
|
518 |
err = -1;
|
sl@0
|
519 |
for(TInt cnt=0;err<KErrNone;++cnt)
|
sl@0
|
520 |
{
|
sl@0
|
521 |
TheTest.Printf(_L("%d \r"), cnt);
|
sl@0
|
522 |
err = TheDb.Open(KTestDbName);
|
sl@0
|
523 |
TEST2(err, KErrNone);
|
sl@0
|
524 |
RSqlStatement stmt;
|
sl@0
|
525 |
(void)TheFs.SetErrorCondition(KErrGeneral, cnt);
|
sl@0
|
526 |
err = stmt.Prepare(TheDb, _L("SELECT * FROM A WHERE Id=?"));
|
sl@0
|
527 |
if(err == KErrNone)
|
sl@0
|
528 |
{
|
sl@0
|
529 |
err = stmt.BindInt(0, 1);
|
sl@0
|
530 |
if(err == KErrNone)
|
sl@0
|
531 |
{
|
sl@0
|
532 |
err = stmt.Next();
|
sl@0
|
533 |
TEST(err == KSqlAtRow || err < 0);
|
sl@0
|
534 |
if(err == KSqlAtRow)
|
sl@0
|
535 |
{
|
sl@0
|
536 |
TInt id = stmt.ColumnInt(0);
|
sl@0
|
537 |
TEST2(id, 1);
|
sl@0
|
538 |
TPtrC name;
|
sl@0
|
539 |
err = stmt.ColumnText(1, name);
|
sl@0
|
540 |
TEST2(err, KErrNone);
|
sl@0
|
541 |
TEST(name == _L("Name"));
|
sl@0
|
542 |
}
|
sl@0
|
543 |
}
|
sl@0
|
544 |
}
|
sl@0
|
545 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
546 |
stmt.Close();
|
sl@0
|
547 |
TheDb.Close();
|
sl@0
|
548 |
//check the database content is the same as before the operation
|
sl@0
|
549 |
TEST(CheckRecord(KTestDbName, 1, _L("Name")));
|
sl@0
|
550 |
}
|
sl@0
|
551 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
552 |
TEST(err >= 0);
|
sl@0
|
553 |
TheDb.Close();
|
sl@0
|
554 |
//check the database content is the same as before the operation, after reopening the database.
|
sl@0
|
555 |
TEST(CheckRecord(KTestDbName, 1, _L("Name")));
|
sl@0
|
556 |
err = RSqlDatabase::Delete(KTestDbName);
|
sl@0
|
557 |
TEST2(err, KErrNone);
|
sl@0
|
558 |
TheTest.Printf(_L("\r\n"));
|
sl@0
|
559 |
}
|
sl@0
|
560 |
|
sl@0
|
561 |
/**
|
sl@0
|
562 |
@SYMTestCaseID SYSLIB-SQL-UT-3463
|
sl@0
|
563 |
@SYMTestCaseDesc Test for DEF105434 "SQL, persistent file I/O simulation, COMMIT problem".
|
sl@0
|
564 |
The test creates a test database with one table, inserts one record.
|
sl@0
|
565 |
Then the test attempts to insert another while simulating file I/O failures.
|
sl@0
|
566 |
After each iteration, the database content is tested, that it has not been modified by the operation.
|
sl@0
|
567 |
If the operation succeeds, the database content is tested again to check that the inserted record is there.
|
sl@0
|
568 |
@SYMTestPriority High
|
sl@0
|
569 |
@SYMTestActions Test for DEF105434 "SQL, persistent file I/O simulation, COMMIT problem".
|
sl@0
|
570 |
@SYMTestExpectedResults The test must not fail
|
sl@0
|
571 |
@SYMDEF DEF105434
|
sl@0
|
572 |
*/
|
sl@0
|
573 |
void InsertRecordTest()
|
sl@0
|
574 |
{
|
sl@0
|
575 |
(void)RSqlDatabase::Delete(KTestDbName);
|
sl@0
|
576 |
TInt err = TheDb.Create(KTestDbName);
|
sl@0
|
577 |
TEST2(err, KErrNone);
|
sl@0
|
578 |
err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER,Name TEXT)"));
|
sl@0
|
579 |
TEST(err >= 0);
|
sl@0
|
580 |
err = TheDb.Exec(_L("INSERT INTO A(Id,Name) VALUES(1,'Name')"));
|
sl@0
|
581 |
TEST2(err, 1);
|
sl@0
|
582 |
TheDb.Close();
|
sl@0
|
583 |
err = -1;
|
sl@0
|
584 |
for(TInt cnt=0;err<KErrNone;++cnt)
|
sl@0
|
585 |
{
|
sl@0
|
586 |
TheTest.Printf(_L("%d \r"), cnt);
|
sl@0
|
587 |
err = TheDb.Open(KTestDbName);
|
sl@0
|
588 |
TEST2(err, KErrNone);
|
sl@0
|
589 |
RSqlStatement stmt;
|
sl@0
|
590 |
(void)TheFs.SetErrorCondition(KErrGeneral, cnt);
|
sl@0
|
591 |
err = stmt.Prepare(TheDb, _L("INSERT INTO A(Id,Name) VALUES(2, 'Name2')"));
|
sl@0
|
592 |
if(err == KErrNone)
|
sl@0
|
593 |
{
|
sl@0
|
594 |
err = TheDb.Exec(_L("BEGIN TRANSACTION"));
|
sl@0
|
595 |
if(err == KErrNone)
|
sl@0
|
596 |
{
|
sl@0
|
597 |
err = stmt.Exec();
|
sl@0
|
598 |
TEST(err == 1 || err < 0);
|
sl@0
|
599 |
if(err == 1)
|
sl@0
|
600 |
{
|
sl@0
|
601 |
err = TheDb.Exec(_L("COMMIT TRANSACTION"));
|
sl@0
|
602 |
}
|
sl@0
|
603 |
}
|
sl@0
|
604 |
}
|
sl@0
|
605 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
606 |
stmt.Close();
|
sl@0
|
607 |
if(err < 1)
|
sl@0
|
608 |
{
|
sl@0
|
609 |
TheDb.Close();//close the database to recover from the last error
|
sl@0
|
610 |
//check that the database contains the "name" record that has been inserted before the file I/O failure test.
|
sl@0
|
611 |
TEST(CheckRecord(KTestDbName, 1, _L("Name")));
|
sl@0
|
612 |
}
|
sl@0
|
613 |
else
|
sl@0
|
614 |
{
|
sl@0
|
615 |
TEST2(err, 1);
|
sl@0
|
616 |
//check the database content has been modified by the operation, without closing the database.
|
sl@0
|
617 |
TEST(CheckRecord(KTestDbName, 1, _L("Name"), EFalse));
|
sl@0
|
618 |
TEST(CheckRecord(KTestDbName, 2, _L("Name2"), EFalse));
|
sl@0
|
619 |
TheDb.Close();
|
sl@0
|
620 |
}
|
sl@0
|
621 |
}
|
sl@0
|
622 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
623 |
TEST2(err, 1);
|
sl@0
|
624 |
//check the database content (transaction durability).
|
sl@0
|
625 |
TEST(CheckRecord(KTestDbName, 1, _L("Name")));
|
sl@0
|
626 |
TEST(CheckRecord(KTestDbName, 2, _L("Name2")));
|
sl@0
|
627 |
(void)RSqlDatabase::Delete(KTestDbName);
|
sl@0
|
628 |
TheTest.Printf(_L("\r\n"));
|
sl@0
|
629 |
}
|
sl@0
|
630 |
|
sl@0
|
631 |
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
632 |
////////////////////////////////// Removable media robustness test /////////////////////////////////////////
|
sl@0
|
633 |
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
634 |
|
sl@0
|
635 |
_LIT8(KNameColData, "A123456789012345678901234567890");
|
sl@0
|
636 |
_LIT8(KUpdatedNameColData, "1234");
|
sl@0
|
637 |
|
sl@0
|
638 |
//TRemovableMediaTest class is used for testing the SQLITE behaviour when the database file is created on a removable media where
|
sl@0
|
639 |
//the cluster size is bigger than the page size and in case of a power failure is not guaranteed that the content
|
sl@0
|
640 |
//of the last updated cluster will be preserved.
|
sl@0
|
641 |
class TRemovableMediaTest
|
sl@0
|
642 |
{
|
sl@0
|
643 |
enum {KTestRecCnt = 200};
|
sl@0
|
644 |
enum {KMinCachePageSize = 512};
|
sl@0
|
645 |
|
sl@0
|
646 |
public:
|
sl@0
|
647 |
void Run();
|
sl@0
|
648 |
|
sl@0
|
649 |
private:
|
sl@0
|
650 |
TInt GetRemovableMediaDriveNo();
|
sl@0
|
651 |
TInt ClusterSize(TInt aDriveNo);
|
sl@0
|
652 |
void CreateDatabase(TInt aDriveNo, TInt aCachePageSize);
|
sl@0
|
653 |
void CheckRecord(sqlite3_stmt* aStmt, TInt aRecId);
|
sl@0
|
654 |
void VerifyDatabase();
|
sl@0
|
655 |
void DoTest();
|
sl@0
|
656 |
|
sl@0
|
657 |
};
|
sl@0
|
658 |
|
sl@0
|
659 |
//Returns the number of the removable media drive, KErrNotFound otherwise.
|
sl@0
|
660 |
TInt TRemovableMediaTest::GetRemovableMediaDriveNo()
|
sl@0
|
661 |
{
|
sl@0
|
662 |
for(TInt driveNo=EDriveA;driveNo<=EDriveZ;++driveNo)
|
sl@0
|
663 |
{
|
sl@0
|
664 |
TDriveInfo driveInfo;
|
sl@0
|
665 |
TInt err = TheFs.Drive(driveInfo, driveNo);
|
sl@0
|
666 |
if(err == KErrNone)
|
sl@0
|
667 |
{
|
sl@0
|
668 |
_LIT(KType1, "Not present");
|
sl@0
|
669 |
_LIT(KType2, "Unknown");
|
sl@0
|
670 |
_LIT(KType3, "Floppy");
|
sl@0
|
671 |
_LIT(KType4, "Hard disk");
|
sl@0
|
672 |
_LIT(KType5, "CD ROM");
|
sl@0
|
673 |
_LIT(KType6, "RAM disk");
|
sl@0
|
674 |
_LIT(KType7, "Flash");
|
sl@0
|
675 |
_LIT(KType8, "ROM drive");
|
sl@0
|
676 |
_LIT(KType9, "Remote drive");
|
sl@0
|
677 |
_LIT(KType10,"NAND flash");
|
sl@0
|
678 |
_LIT(KType11,"Rotating media");
|
sl@0
|
679 |
_LIT(KYes, "Yes");
|
sl@0
|
680 |
_LIT(KNo, "No ");
|
sl@0
|
681 |
TPtrC KMediaTypeNames[] = {KType1(), KType2(), KType3(), KType4(), KType5(), KType6(), KType7(), KType8(), KType9(), KType10(), KType11()};
|
sl@0
|
682 |
TheTest.Printf(_L("Drive: %C:, %S, Removable: %S\r\n"), 'A' + driveNo, &KMediaTypeNames[driveInfo.iType],
|
sl@0
|
683 |
driveInfo.iDriveAtt & KDriveAttRemovable ? &KYes : &KNo);
|
sl@0
|
684 |
if(driveInfo.iDriveAtt & KDriveAttRemovable)
|
sl@0
|
685 |
{
|
sl@0
|
686 |
TheTest.Printf(_L("Removable drive to test: %C:\r\n"), 'A' + driveNo);
|
sl@0
|
687 |
return driveNo;
|
sl@0
|
688 |
}
|
sl@0
|
689 |
}
|
sl@0
|
690 |
}
|
sl@0
|
691 |
return KErrNotFound;
|
sl@0
|
692 |
}
|
sl@0
|
693 |
|
sl@0
|
694 |
//Get the cluster size of aDriveNo drive
|
sl@0
|
695 |
TInt TRemovableMediaTest::ClusterSize(TInt aDriveNo)
|
sl@0
|
696 |
{
|
sl@0
|
697 |
__ASSERT_DEBUG((TUint)aDriveNo <= EDriveZ, User::Invariant());
|
sl@0
|
698 |
TVolumeIOParamInfo volIoParams;
|
sl@0
|
699 |
TInt err = TheFs.VolumeIOParam(aDriveNo, volIoParams);
|
sl@0
|
700 |
return (err == KErrNone) ? volIoParams.iClusterSize : err;
|
sl@0
|
701 |
}
|
sl@0
|
702 |
|
sl@0
|
703 |
//Create a test database on aDriveNo with aCachePageSize page size.
|
sl@0
|
704 |
//Insert KTestRecCnt records.
|
sl@0
|
705 |
void TRemovableMediaTest::CreateDatabase(TInt aDriveNo, TInt aCachePageSize)
|
sl@0
|
706 |
{
|
sl@0
|
707 |
__ASSERT_DEBUG((TUint)aDriveNo <= EDriveZ, User::Invariant());
|
sl@0
|
708 |
__ASSERT_DEBUG(aCachePageSize > 0, User::Invariant());
|
sl@0
|
709 |
TDriveUnit drvUnit(aDriveNo);
|
sl@0
|
710 |
_LIT(KDbName, "\\flashmedia.db");
|
sl@0
|
711 |
TParse parse;
|
sl@0
|
712 |
parse.Set(drvUnit.Name(), &KDbName, 0);
|
sl@0
|
713 |
TheRmvMediaDbFileName.Copy(parse.FullName());
|
sl@0
|
714 |
TBuf8<KMaxFileName + 1> dbFileName8;
|
sl@0
|
715 |
dbFileName8.Copy(TheRmvMediaDbFileName);
|
sl@0
|
716 |
(void)TheFs.Delete(TheRmvMediaDbFileName);
|
sl@0
|
717 |
|
sl@0
|
718 |
sqlite3* dbHandle = NULL;
|
sl@0
|
719 |
TInt rc = sqlite3_open((const char*)dbFileName8.PtrZ(), &dbHandle);
|
sl@0
|
720 |
SQLITE_TEST(dbHandle, rc, SQLITE_OK);
|
sl@0
|
721 |
__ASSERT_DEBUG(dbHandle != NULL, User::Invariant());
|
sl@0
|
722 |
|
sl@0
|
723 |
TBuf8<40> config;
|
sl@0
|
724 |
config.Copy(_L8("PRAGMA PAGE_SIZE="));
|
sl@0
|
725 |
config.AppendNum(aCachePageSize);
|
sl@0
|
726 |
rc = sqlite3_exec(dbHandle, (const char*)config.PtrZ(), 0, 0, 0);
|
sl@0
|
727 |
SQLITE_TEST(dbHandle, rc, SQLITE_OK);
|
sl@0
|
728 |
|
sl@0
|
729 |
rc = sqlite3_exec(dbHandle, "CREATE TABLE A(Id INTEGER,Name TEXT)", 0, 0, 0);
|
sl@0
|
730 |
SQLITE_TEST(dbHandle, rc, SQLITE_OK);
|
sl@0
|
731 |
rc = sqlite3_exec(dbHandle, "BEGIN", 0, 0, 0);
|
sl@0
|
732 |
SQLITE_TEST(dbHandle, rc, SQLITE_OK);
|
sl@0
|
733 |
for(TInt recid=1;recid<=KTestRecCnt;++recid)
|
sl@0
|
734 |
{
|
sl@0
|
735 |
|
sl@0
|
736 |
TBuf8<100> sql;
|
sl@0
|
737 |
sql.Copy(_L8("INSERT INTO A VALUES("));
|
sl@0
|
738 |
sql.AppendNum(recid);
|
sl@0
|
739 |
sql.Append(_L8(",'"));
|
sl@0
|
740 |
sql.Append(KNameColData);
|
sl@0
|
741 |
sql.Append(_L8("')"));
|
sl@0
|
742 |
rc = sqlite3_exec(dbHandle, (const char*)sql.PtrZ(), 0, 0, 0);
|
sl@0
|
743 |
SQLITE_TEST(dbHandle, rc, SQLITE_OK);
|
sl@0
|
744 |
}
|
sl@0
|
745 |
rc = sqlite3_exec(dbHandle, "COMMIT", 0, 0, 0);
|
sl@0
|
746 |
SQLITE_TEST(dbHandle, rc, SQLITE_OK);
|
sl@0
|
747 |
sqlite3_close(dbHandle);
|
sl@0
|
748 |
}
|
sl@0
|
749 |
|
sl@0
|
750 |
//Checks the content of a single record
|
sl@0
|
751 |
void TRemovableMediaTest::CheckRecord(sqlite3_stmt* aStmt, TInt aRecId)
|
sl@0
|
752 |
{
|
sl@0
|
753 |
__ASSERT_DEBUG(aStmt != NULL, User::Invariant());
|
sl@0
|
754 |
TInt id = sqlite3_column_int(aStmt, 0);
|
sl@0
|
755 |
TEST2(id, aRecId);
|
sl@0
|
756 |
const TUint8* text = (const TUint8*)sqlite3_column_text(aStmt, 1);
|
sl@0
|
757 |
TPtrC8 name(text, User::StringLength(text));
|
sl@0
|
758 |
TEST(KNameColData() == name || KUpdatedNameColData() == name);
|
sl@0
|
759 |
}
|
sl@0
|
760 |
|
sl@0
|
761 |
//Verifies that the database content is either the same as it was before the UPDATE operation or
|
sl@0
|
762 |
//it has been updated with the new data.
|
sl@0
|
763 |
void TRemovableMediaTest::VerifyDatabase()
|
sl@0
|
764 |
{
|
sl@0
|
765 |
TBuf8<KMaxFileName + 1> dbFileName8;
|
sl@0
|
766 |
dbFileName8.Copy(TheRmvMediaDbFileName);
|
sl@0
|
767 |
|
sl@0
|
768 |
sqlite3* dbHandle = NULL;
|
sl@0
|
769 |
TInt rc = sqlite3_open((const char*)dbFileName8.PtrZ(), &dbHandle);
|
sl@0
|
770 |
SQLITE_TEST(dbHandle, rc, SQLITE_OK);
|
sl@0
|
771 |
__ASSERT_DEBUG(dbHandle != NULL, User::Invariant());
|
sl@0
|
772 |
|
sl@0
|
773 |
sqlite3_stmt* stmtHandle = NULL;
|
sl@0
|
774 |
rc = sqlite3_prepare(dbHandle, "SELECT Id,Name FROM A", -1, &stmtHandle, 0);
|
sl@0
|
775 |
SQLITE_TEST(dbHandle, rc, SQLITE_OK);
|
sl@0
|
776 |
__ASSERT_DEBUG(stmtHandle != NULL, User::Invariant());
|
sl@0
|
777 |
|
sl@0
|
778 |
for(TInt recid=1;recid<=KTestRecCnt;++recid)
|
sl@0
|
779 |
{
|
sl@0
|
780 |
rc = sqlite3_step(stmtHandle);
|
sl@0
|
781 |
SQLITE_TEST(dbHandle, rc, SQLITE_ROW);
|
sl@0
|
782 |
CheckRecord(stmtHandle, recid);
|
sl@0
|
783 |
}
|
sl@0
|
784 |
rc = sqlite3_step(stmtHandle);
|
sl@0
|
785 |
SQLITE_TEST(dbHandle, rc, SQLITE_DONE);
|
sl@0
|
786 |
|
sl@0
|
787 |
sqlite3_finalize(stmtHandle);
|
sl@0
|
788 |
sqlite3_close(dbHandle);
|
sl@0
|
789 |
}
|
sl@0
|
790 |
|
sl@0
|
791 |
//Simulates a file system error in a loop.
|
sl@0
|
792 |
//Attempts to update single record in a transaction.
|
sl@0
|
793 |
//If the UPDATE operation fails - verifies the database content on each iteration.
|
sl@0
|
794 |
//Note: pages are stored at the moment, not clusters. The database operations are not more robust if
|
sl@0
|
795 |
// clusters are stored in a case of a removable media.
|
sl@0
|
796 |
void TRemovableMediaTest::DoTest()
|
sl@0
|
797 |
{
|
sl@0
|
798 |
TheTest.Printf(_L("Update 1 record in a file I/o simulation loop\r\n"));
|
sl@0
|
799 |
TInt rc = -1;
|
sl@0
|
800 |
TBuf8<KMaxFileName + 1> dbFileName8;
|
sl@0
|
801 |
dbFileName8.Copy(TheRmvMediaDbFileName);
|
sl@0
|
802 |
for(TInt cnt=0;rc!=SQLITE_OK;++cnt)
|
sl@0
|
803 |
{
|
sl@0
|
804 |
TheTest.Printf(_L("%d \r"), cnt);
|
sl@0
|
805 |
sqlite3* dbHandle = NULL;
|
sl@0
|
806 |
rc = sqlite3_open((const char*)dbFileName8.PtrZ(), &dbHandle);
|
sl@0
|
807 |
SQLITE_TEST(dbHandle, rc, SQLITE_OK);
|
sl@0
|
808 |
__ASSERT_DEBUG(dbHandle != NULL, User::Invariant());
|
sl@0
|
809 |
(void)TheFs.SetErrorCondition(KErrCorrupt, cnt);
|
sl@0
|
810 |
rc = sqlite3_exec(dbHandle, "BEGIN IMMEDIATE", 0, 0, 0);
|
sl@0
|
811 |
if(rc == SQLITE_OK)
|
sl@0
|
812 |
{
|
sl@0
|
813 |
rc = sqlite3_exec(dbHandle, "UPDATE A SET Name='1234' WHERE Id=1", 0, 0, 0);
|
sl@0
|
814 |
if(rc == SQLITE_OK)
|
sl@0
|
815 |
{
|
sl@0
|
816 |
TInt cnt = sqlite3_changes(dbHandle);
|
sl@0
|
817 |
TEST2(cnt, 1);
|
sl@0
|
818 |
rc = sqlite3_exec(dbHandle, "COMMIT", 0, 0, 0);
|
sl@0
|
819 |
}
|
sl@0
|
820 |
}
|
sl@0
|
821 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
822 |
sqlite3_close(dbHandle);
|
sl@0
|
823 |
if(rc != SQLITE_OK)
|
sl@0
|
824 |
{
|
sl@0
|
825 |
VerifyDatabase();
|
sl@0
|
826 |
}
|
sl@0
|
827 |
}
|
sl@0
|
828 |
TEST2(rc, SQLITE_OK);
|
sl@0
|
829 |
VerifyDatabase();
|
sl@0
|
830 |
}
|
sl@0
|
831 |
|
sl@0
|
832 |
void TRemovableMediaTest::Run()
|
sl@0
|
833 |
{
|
sl@0
|
834 |
TInt driveNo = GetRemovableMediaDriveNo();
|
sl@0
|
835 |
if(driveNo == KErrNotFound)
|
sl@0
|
836 |
{
|
sl@0
|
837 |
TheTest.Printf(_L("No removable media discovered. Test case not executed.\r\n"));
|
sl@0
|
838 |
return;
|
sl@0
|
839 |
}
|
sl@0
|
840 |
TInt clusterSize = ClusterSize(driveNo);
|
sl@0
|
841 |
if(clusterSize < 0)
|
sl@0
|
842 |
{
|
sl@0
|
843 |
TheTest.Printf(_L("Error %d retrieving the cluster size of drive %C. Test case not executed.\r\n"), clusterSize, 'A' + driveNo);
|
sl@0
|
844 |
return;
|
sl@0
|
845 |
}
|
sl@0
|
846 |
if(clusterSize <= KMinCachePageSize)
|
sl@0
|
847 |
{
|
sl@0
|
848 |
TheTest.Printf(_L("Cluster size: %d. No appropriate cache page size found. Test case not executed.\r\n"), clusterSize);
|
sl@0
|
849 |
return;
|
sl@0
|
850 |
}
|
sl@0
|
851 |
|
sl@0
|
852 |
TheTest.Printf(_L("Cluster size: %d. Cache page size %d.\r\nBegin test.\r\n"), clusterSize, KMinCachePageSize);
|
sl@0
|
853 |
CreateDatabase(driveNo, KMinCachePageSize);
|
sl@0
|
854 |
DoTest();
|
sl@0
|
855 |
(void)TheFs.Delete(TheRmvMediaDbFileName);
|
sl@0
|
856 |
TheTest.Printf(_L("End test.\r\n"));
|
sl@0
|
857 |
}
|
sl@0
|
858 |
|
sl@0
|
859 |
/**
|
sl@0
|
860 |
@SYMTestCaseID SYSLIB-SQL-UT-3516
|
sl@0
|
861 |
@SYMTestCaseDesc Removable media robustness test
|
sl@0
|
862 |
The test creates a test database with a table with some records. Then the test verifies
|
sl@0
|
863 |
that the database content cannot be corrupted by file I/O failures during database updates,
|
sl@0
|
864 |
when the database file is on a removable media and the media cluster size is bigger than the
|
sl@0
|
865 |
database page size.
|
sl@0
|
866 |
@SYMTestPriority High
|
sl@0
|
867 |
@SYMTestActions Removable media robustness test
|
sl@0
|
868 |
@SYMTestExpectedResults The test must not fail
|
sl@0
|
869 |
@SYMREQ REQ7913
|
sl@0
|
870 |
*/
|
sl@0
|
871 |
void RemovableMediaRobustnessTest()
|
sl@0
|
872 |
{
|
sl@0
|
873 |
TRemovableMediaTest removableMediaTest;
|
sl@0
|
874 |
removableMediaTest.Run();
|
sl@0
|
875 |
}
|
sl@0
|
876 |
|
sl@0
|
877 |
/**
|
sl@0
|
878 |
@SYMTestCaseID SYSLIB-SQL-UT-4044
|
sl@0
|
879 |
@SYMTestCaseDesc RSqlDatabase::Size(TSize&), file I/O error simulation test.
|
sl@0
|
880 |
The test creates a database and executes RSqldatabase::Size(TSize&)
|
sl@0
|
881 |
during a file I/O error simulation. The database should not be corrupted
|
sl@0
|
882 |
by the call.
|
sl@0
|
883 |
@SYMTestPriority High
|
sl@0
|
884 |
@SYMTestActions RSqlDatabase::Size(TSize&), file I/O error simulation test.
|
sl@0
|
885 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
886 |
@SYMREQ REQ10407
|
sl@0
|
887 |
*/
|
sl@0
|
888 |
void SizeTest()
|
sl@0
|
889 |
{
|
sl@0
|
890 |
(void)RSqlDatabase::Delete(KTestDbName);
|
sl@0
|
891 |
TInt err = TheDb.Create(KTestDbName);
|
sl@0
|
892 |
TEST2(err, KErrNone);
|
sl@0
|
893 |
err = TheDb.Exec(_L("BEGIN;CREATE TABLE A(Id INTEGER,Data BLOB);INSERT INTO A VALUES(1, x'11223344');COMMIT;"));
|
sl@0
|
894 |
TEST(err >= 0);
|
sl@0
|
895 |
RSqlDatabase::TSize size1 = {-1, -1};
|
sl@0
|
896 |
err = TheDb.Size(size1);
|
sl@0
|
897 |
TEST2(err, KErrNone);
|
sl@0
|
898 |
TEST(size1.iSize > 0);
|
sl@0
|
899 |
TEST2(size1.iFree, 0);
|
sl@0
|
900 |
TheDb.Close();
|
sl@0
|
901 |
//"File I/O" error simulation loop
|
sl@0
|
902 |
err = KErrCorrupt;
|
sl@0
|
903 |
for(TInt cnt=0;err<KErrNone;++cnt)
|
sl@0
|
904 |
{
|
sl@0
|
905 |
TheTest.Printf(_L("%d \r"), cnt);
|
sl@0
|
906 |
TEST2(TheDb.Open(KTestDbName), KErrNone);
|
sl@0
|
907 |
(void)TheFs.SetErrorCondition(KErrCorrupt, cnt);
|
sl@0
|
908 |
RSqlDatabase::TSize size2 = {-1, -1};
|
sl@0
|
909 |
err = TheDb.Size(size2);
|
sl@0
|
910 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
911 |
TheDb.Close();
|
sl@0
|
912 |
if(err == KErrNone)
|
sl@0
|
913 |
{
|
sl@0
|
914 |
TEST(size2.iSize == size1.iSize);
|
sl@0
|
915 |
TEST(size2.iFree == size1.iFree);
|
sl@0
|
916 |
break;
|
sl@0
|
917 |
}
|
sl@0
|
918 |
else
|
sl@0
|
919 |
{
|
sl@0
|
920 |
//check the database content - all bets are off in a case of an I/O error.
|
sl@0
|
921 |
TEST2(TheDb.Open(KTestDbName), KErrNone);
|
sl@0
|
922 |
TSqlScalarFullSelectQuery q(TheDb);
|
sl@0
|
923 |
TInt recCnt = 0;
|
sl@0
|
924 |
TRAPD(err2, recCnt = q.SelectIntL(_L8("SELECT COUNT(*) FROM A")));
|
sl@0
|
925 |
TheDb.Close();
|
sl@0
|
926 |
TEST2(err2, KErrNone);
|
sl@0
|
927 |
TEST2(recCnt, 1);
|
sl@0
|
928 |
}
|
sl@0
|
929 |
}
|
sl@0
|
930 |
(void)RSqlDatabase::Delete(KTestDbName);
|
sl@0
|
931 |
}
|
sl@0
|
932 |
|
sl@0
|
933 |
/**
|
sl@0
|
934 |
@SYMTestCaseID SYSLIB-SQL-UT-4045
|
sl@0
|
935 |
@SYMTestCaseDesc RSqlDatabase::Compact(), file I/O error simulation test.
|
sl@0
|
936 |
The test creates a database and executes RSqlDatabase::Compact()
|
sl@0
|
937 |
during a file I/O error simulation. The database should not be corrupted
|
sl@0
|
938 |
by the call.
|
sl@0
|
939 |
@SYMTestPriority High
|
sl@0
|
940 |
@SYMTestActions RSqlDatabase::Compact(), file I/O error simulation test.
|
sl@0
|
941 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
942 |
@SYMREQ REQ10405
|
sl@0
|
943 |
*/
|
sl@0
|
944 |
void CompactTest()
|
sl@0
|
945 |
{
|
sl@0
|
946 |
(void)RSqlDatabase::Delete(KTestDbName);
|
sl@0
|
947 |
_LIT8(KConfig, "compaction=manual");
|
sl@0
|
948 |
TInt err = TheDb.Create(KTestDbName, &KConfig);
|
sl@0
|
949 |
TEST2(err, KErrNone);
|
sl@0
|
950 |
err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER,Data BLOB)"));
|
sl@0
|
951 |
TEST(err >= 0);
|
sl@0
|
952 |
//Insert records
|
sl@0
|
953 |
err = TheDb.Exec(_L8("BEGIN"));
|
sl@0
|
954 |
TEST(err >= 0);
|
sl@0
|
955 |
const TInt KRecLen = 1000;
|
sl@0
|
956 |
TBuf8<KRecLen> sqlfmt;
|
sl@0
|
957 |
sqlfmt.Copy(_L8("INSERT INTO A VALUES(%d,x'"));
|
sl@0
|
958 |
for(TInt j=0;j<(KRecLen-50);++j)
|
sl@0
|
959 |
{
|
sl@0
|
960 |
sqlfmt.Append(_L8("A"));
|
sl@0
|
961 |
}
|
sl@0
|
962 |
sqlfmt.Append(_L8("')"));
|
sl@0
|
963 |
const TInt KRecCount = 100;
|
sl@0
|
964 |
for(TInt i=0;i<KRecCount;++i)
|
sl@0
|
965 |
{
|
sl@0
|
966 |
TBuf8<KRecLen> sql;
|
sl@0
|
967 |
sql.Format(sqlfmt, i + 1);
|
sl@0
|
968 |
err = TheDb.Exec(sql);
|
sl@0
|
969 |
TEST2(err, 1);
|
sl@0
|
970 |
}
|
sl@0
|
971 |
err = TheDb.Exec(_L8("COMMIT"));
|
sl@0
|
972 |
TEST(err >= 0);
|
sl@0
|
973 |
//Free some space
|
sl@0
|
974 |
const TInt KDeletedRecCnt = KRecCount - 10;
|
sl@0
|
975 |
err = TheDb.Exec(_L8("DELETE FROM A WHERE Id > 10"));
|
sl@0
|
976 |
TEST(err >= 0);
|
sl@0
|
977 |
//Get the database size
|
sl@0
|
978 |
RSqlDatabase::TSize size;
|
sl@0
|
979 |
err = TheDb.Size(size);
|
sl@0
|
980 |
TEST2(err, KErrNone);
|
sl@0
|
981 |
TheDb.Close();
|
sl@0
|
982 |
TEST(size.iSize > 0);
|
sl@0
|
983 |
TEST(size.iFree > 0);
|
sl@0
|
984 |
//"File I/O" error simulation loop
|
sl@0
|
985 |
err = KErrCorrupt;
|
sl@0
|
986 |
for(TInt cnt=0;err<KErrNone;++cnt)
|
sl@0
|
987 |
{
|
sl@0
|
988 |
TheTest.Printf(_L("%d \r"), cnt);
|
sl@0
|
989 |
TEST2(TheDb.Open(KTestDbName), KErrNone);
|
sl@0
|
990 |
(void)TheFs.SetErrorCondition(KErrCorrupt, cnt);
|
sl@0
|
991 |
err = TheDb.Compact(RSqlDatabase::EMaxCompaction);
|
sl@0
|
992 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
993 |
TheDb.Close();
|
sl@0
|
994 |
if(err == KErrNone)
|
sl@0
|
995 |
{
|
sl@0
|
996 |
break;
|
sl@0
|
997 |
}
|
sl@0
|
998 |
else
|
sl@0
|
999 |
{
|
sl@0
|
1000 |
//check the database content - all bets are off in a case of an I/O error.
|
sl@0
|
1001 |
//The database maight have been compacted, so - no check for that.
|
sl@0
|
1002 |
TEST2(TheDb.Open(KTestDbName), KErrNone);
|
sl@0
|
1003 |
TSqlScalarFullSelectQuery q(TheDb);
|
sl@0
|
1004 |
TInt recCnt = 0;
|
sl@0
|
1005 |
TRAPD(err2, recCnt = q.SelectIntL(_L8("SELECT COUNT(*) FROM A")));
|
sl@0
|
1006 |
TheDb.Close();
|
sl@0
|
1007 |
TEST2(err2, KErrNone);
|
sl@0
|
1008 |
TEST2(recCnt, (KRecCount - KDeletedRecCnt));
|
sl@0
|
1009 |
}
|
sl@0
|
1010 |
}
|
sl@0
|
1011 |
TheTest.Printf(_L("\r\n"));
|
sl@0
|
1012 |
//Check that the database has been really compacted
|
sl@0
|
1013 |
TEST2(TheDb.Open(KTestDbName), KErrNone);
|
sl@0
|
1014 |
RSqlDatabase::TSize size2;
|
sl@0
|
1015 |
err = TheDb.Size(size2);
|
sl@0
|
1016 |
TEST2(err, KErrNone);
|
sl@0
|
1017 |
TheDb.Close();
|
sl@0
|
1018 |
(void)RSqlDatabase::Delete(KTestDbName);
|
sl@0
|
1019 |
TEST(size.iSize > size2.iSize);
|
sl@0
|
1020 |
TEST2(size2.iFree, 0);
|
sl@0
|
1021 |
}
|
sl@0
|
1022 |
|
sl@0
|
1023 |
void DoBlobWriteStreamTestL(TBool aAttachDb)
|
sl@0
|
1024 |
{
|
sl@0
|
1025 |
RSqlBlobWriteStream strm;
|
sl@0
|
1026 |
CleanupClosePushL(strm);
|
sl@0
|
1027 |
if(aAttachDb)
|
sl@0
|
1028 |
{
|
sl@0
|
1029 |
strm.OpenL(TheDb, _L("A"), _L("Data"), 1, KAttachDb);
|
sl@0
|
1030 |
}
|
sl@0
|
1031 |
else
|
sl@0
|
1032 |
{
|
sl@0
|
1033 |
strm.OpenL(TheDb, _L("A"), _L("Data"), 1);
|
sl@0
|
1034 |
}
|
sl@0
|
1035 |
|
sl@0
|
1036 |
TBuf8<KBlobSize / KWriteCnt> data;
|
sl@0
|
1037 |
data.SetLength(KBlobSize / KWriteCnt);
|
sl@0
|
1038 |
data.Fill(0xA5);
|
sl@0
|
1039 |
|
sl@0
|
1040 |
for(TInt i=0;i<KWriteCnt;++i)
|
sl@0
|
1041 |
{
|
sl@0
|
1042 |
strm.WriteL(data);
|
sl@0
|
1043 |
}
|
sl@0
|
1044 |
|
sl@0
|
1045 |
strm.CommitL();
|
sl@0
|
1046 |
|
sl@0
|
1047 |
CleanupStack::PopAndDestroy(&strm);
|
sl@0
|
1048 |
}
|
sl@0
|
1049 |
|
sl@0
|
1050 |
/**
|
sl@0
|
1051 |
@SYMTestCaseID SYSLIB-SQL-UT-4089
|
sl@0
|
1052 |
@SYMTestCaseDesc RSqlBlobWriteStream::WriteL(), file I/O error simulation test.
|
sl@0
|
1053 |
The test creates a database and executes RSqlBlobWriteStream::WriteL()
|
sl@0
|
1054 |
during a file I/O error simulation. The database should not be corrupted
|
sl@0
|
1055 |
by the call.
|
sl@0
|
1056 |
@SYMTestPriority High
|
sl@0
|
1057 |
@SYMTestActions RSqlBlobWriteStream::WriteL(), file I/O error simulation test.
|
sl@0
|
1058 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
1059 |
@SYMREQ REQ5792
|
sl@0
|
1060 |
REQ10418
|
sl@0
|
1061 |
*/
|
sl@0
|
1062 |
void BlobWriteStreamTest(TBool aAttachDb)
|
sl@0
|
1063 |
{
|
sl@0
|
1064 |
(void)RSqlDatabase::Delete(KTestDbName);
|
sl@0
|
1065 |
TInt err = TheDb.Create(KTestDbName);
|
sl@0
|
1066 |
TEST2(err, KErrNone);
|
sl@0
|
1067 |
err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER,Data BLOB)"));
|
sl@0
|
1068 |
TEST2(err, 1);
|
sl@0
|
1069 |
TBuf8<100> sql;
|
sl@0
|
1070 |
sql.Format(_L8("INSERT INTO A VALUES(1, zeroblob(%d))"), KBlobSize);
|
sl@0
|
1071 |
err = TheDb.Exec(sql);
|
sl@0
|
1072 |
TEST2(err, 1);
|
sl@0
|
1073 |
TheDb.Close();
|
sl@0
|
1074 |
|
sl@0
|
1075 |
err = KErrCorrupt;
|
sl@0
|
1076 |
for(TInt cnt=0;err<KErrNone;++cnt)
|
sl@0
|
1077 |
{
|
sl@0
|
1078 |
TheTest.Printf(_L("%d \r"), cnt);
|
sl@0
|
1079 |
TEST2(TheDb.Open(KTestDbName), KErrNone);
|
sl@0
|
1080 |
if(aAttachDb)
|
sl@0
|
1081 |
{
|
sl@0
|
1082 |
TEST2(TheDb.Attach(KTestDbName, KAttachDb), KErrNone);
|
sl@0
|
1083 |
}
|
sl@0
|
1084 |
(void)TheFs.SetErrorCondition(KErrCorrupt, cnt);
|
sl@0
|
1085 |
TRAP(err, DoBlobWriteStreamTestL(aAttachDb));
|
sl@0
|
1086 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
1087 |
if(aAttachDb)
|
sl@0
|
1088 |
{
|
sl@0
|
1089 |
TEST2(TheDb.Detach(KAttachDb), KErrNone);
|
sl@0
|
1090 |
}
|
sl@0
|
1091 |
TheDb.Close();
|
sl@0
|
1092 |
}
|
sl@0
|
1093 |
TheTest.Printf(_L("\r\n"));
|
sl@0
|
1094 |
|
sl@0
|
1095 |
TEST2(TheDb.Open(KTestDbName), KErrNone);
|
sl@0
|
1096 |
|
sl@0
|
1097 |
RSqlStatement stmt;
|
sl@0
|
1098 |
err = stmt.Prepare(TheDb, _L8("SELECT * FROM A"));
|
sl@0
|
1099 |
TEST2(err, KErrNone);
|
sl@0
|
1100 |
err = stmt.Next();
|
sl@0
|
1101 |
TEST2(err, KSqlAtRow);
|
sl@0
|
1102 |
TPtrC8 data;
|
sl@0
|
1103 |
err = stmt.ColumnBinary(1, data);
|
sl@0
|
1104 |
TEST2(err, KErrNone);
|
sl@0
|
1105 |
TEST2(data.Length(), KBlobSize);
|
sl@0
|
1106 |
for(TInt j=0;j<KBlobSize;++j)
|
sl@0
|
1107 |
{
|
sl@0
|
1108 |
TUint8 d = data[j];
|
sl@0
|
1109 |
TEST2(d, 0xA5);
|
sl@0
|
1110 |
}
|
sl@0
|
1111 |
stmt.Close();
|
sl@0
|
1112 |
|
sl@0
|
1113 |
TheDb.Close();
|
sl@0
|
1114 |
(void)RSqlDatabase::Delete(KTestDbName);
|
sl@0
|
1115 |
}
|
sl@0
|
1116 |
|
sl@0
|
1117 |
void DoBlobReadStreamTestL(TBool aAttachDb, TDes8& aDes)
|
sl@0
|
1118 |
{
|
sl@0
|
1119 |
RSqlBlobReadStream strm;
|
sl@0
|
1120 |
CleanupClosePushL(strm);
|
sl@0
|
1121 |
if(aAttachDb)
|
sl@0
|
1122 |
{
|
sl@0
|
1123 |
strm.OpenL(TheDb, _L("A"), _L("Data"), 1, KAttachDb);
|
sl@0
|
1124 |
}
|
sl@0
|
1125 |
else
|
sl@0
|
1126 |
{
|
sl@0
|
1127 |
strm.OpenL(TheDb, _L("A"), _L("Data"), 1);
|
sl@0
|
1128 |
}
|
sl@0
|
1129 |
|
sl@0
|
1130 |
TBuf8<KBlobSize / KWriteCnt> data;
|
sl@0
|
1131 |
aDes.SetLength(0);
|
sl@0
|
1132 |
|
sl@0
|
1133 |
for(TInt i=0;i<KWriteCnt;++i)
|
sl@0
|
1134 |
{
|
sl@0
|
1135 |
strm.ReadL(data);
|
sl@0
|
1136 |
aDes.Append(data);
|
sl@0
|
1137 |
}
|
sl@0
|
1138 |
|
sl@0
|
1139 |
CleanupStack::PopAndDestroy(&strm);
|
sl@0
|
1140 |
}
|
sl@0
|
1141 |
|
sl@0
|
1142 |
/**
|
sl@0
|
1143 |
@SYMTestCaseID SYSLIB-SQL-UT-4090
|
sl@0
|
1144 |
@SYMTestCaseDesc RSqlBlobReadStream::ReadL(), file I/O error simulation test.
|
sl@0
|
1145 |
The test creates a database and executes RSqlBlobReadStream::ReadL()
|
sl@0
|
1146 |
during a file I/O error simulation. The database should not be corrupted
|
sl@0
|
1147 |
by the call.
|
sl@0
|
1148 |
@SYMTestPriority High
|
sl@0
|
1149 |
@SYMTestActions RSqlBlobReadStream::ReadL(), file I/O error simulation test.
|
sl@0
|
1150 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
1151 |
@SYMREQ REQ5792
|
sl@0
|
1152 |
REQ10410
|
sl@0
|
1153 |
REQ10411
|
sl@0
|
1154 |
*/
|
sl@0
|
1155 |
void BlobReadStreamTest(TBool aAttachDb)
|
sl@0
|
1156 |
{
|
sl@0
|
1157 |
(void)RSqlDatabase::Delete(KTestDbName);
|
sl@0
|
1158 |
TInt err = TheDb.Create(KTestDbName);
|
sl@0
|
1159 |
TEST2(err, KErrNone);
|
sl@0
|
1160 |
err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER,Data BLOB)"));
|
sl@0
|
1161 |
TEST2(err, 1);
|
sl@0
|
1162 |
TBuf8<100> sql;
|
sl@0
|
1163 |
sql.Format(_L8("INSERT INTO A VALUES(1, zeroblob(%d))"), KBlobSize);
|
sl@0
|
1164 |
err = TheDb.Exec(sql);
|
sl@0
|
1165 |
TEST2(err, 1);
|
sl@0
|
1166 |
TRAP(err, DoBlobWriteStreamTestL(EFalse));
|
sl@0
|
1167 |
TEST2(err, KErrNone);
|
sl@0
|
1168 |
TheDb.Close();
|
sl@0
|
1169 |
|
sl@0
|
1170 |
HBufC8* buf = HBufC8::New(KBlobSize);
|
sl@0
|
1171 |
TEST(buf != NULL);
|
sl@0
|
1172 |
TPtr8 bufptr = buf->Des();
|
sl@0
|
1173 |
|
sl@0
|
1174 |
err = KErrCorrupt;
|
sl@0
|
1175 |
for(TInt cnt=0;err<KErrNone;++cnt)
|
sl@0
|
1176 |
{
|
sl@0
|
1177 |
TheTest.Printf(_L("%d \r"), cnt);
|
sl@0
|
1178 |
TEST2(TheDb.Open(KTestDbName), KErrNone);
|
sl@0
|
1179 |
if(aAttachDb)
|
sl@0
|
1180 |
{
|
sl@0
|
1181 |
TEST2(TheDb.Attach(KTestDbName, KAttachDb), KErrNone);
|
sl@0
|
1182 |
}
|
sl@0
|
1183 |
(void)TheFs.SetErrorCondition(KErrCorrupt, cnt);
|
sl@0
|
1184 |
TRAP(err, DoBlobReadStreamTestL(aAttachDb, bufptr));
|
sl@0
|
1185 |
(void)TheFs.SetErrorCondition(KErrNone);
|
sl@0
|
1186 |
if(aAttachDb)
|
sl@0
|
1187 |
{
|
sl@0
|
1188 |
TEST2(TheDb.Detach(KAttachDb), KErrNone);
|
sl@0
|
1189 |
}
|
sl@0
|
1190 |
TheDb.Close();
|
sl@0
|
1191 |
}
|
sl@0
|
1192 |
TheTest.Printf(_L("\r\n"));
|
sl@0
|
1193 |
|
sl@0
|
1194 |
TEST2(bufptr.Length(), KBlobSize);
|
sl@0
|
1195 |
for(TInt j=0;j<KBlobSize;++j)
|
sl@0
|
1196 |
{
|
sl@0
|
1197 |
TUint8 d = bufptr[j];
|
sl@0
|
1198 |
TEST2(d, 0xA5);
|
sl@0
|
1199 |
}
|
sl@0
|
1200 |
|
sl@0
|
1201 |
delete buf;
|
sl@0
|
1202 |
|
sl@0
|
1203 |
(void)RSqlDatabase::Delete(KTestDbName);
|
sl@0
|
1204 |
}
|
sl@0
|
1205 |
|
sl@0
|
1206 |
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
1207 |
|
sl@0
|
1208 |
void DoTests()
|
sl@0
|
1209 |
{
|
sl@0
|
1210 |
TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3419 Alter database during file I/O error "));
|
sl@0
|
1211 |
AlterDatabaseTest();
|
sl@0
|
1212 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3420 Alter database during file I/O error (using statement object) "));
|
sl@0
|
1213 |
AlterDatabaseTest2();
|
sl@0
|
1214 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3421 Open database during file I/O error "));
|
sl@0
|
1215 |
OpenDatabaseTest();
|
sl@0
|
1216 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3434 Create database during file I/O error "));
|
sl@0
|
1217 |
CreateDatabaseTest();
|
sl@0
|
1218 |
TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-UT-4189 Attach database during file I/O error "));
|
sl@0
|
1219 |
AttachDatabaseTest();
|
sl@0
|
1220 |
TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-UT-4190 Delete database during file I/O error "));
|
sl@0
|
1221 |
DeleteDatabaseTest();
|
sl@0
|
1222 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3462 Select record test during file I/O error "));
|
sl@0
|
1223 |
SelectRecordTest();
|
sl@0
|
1224 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3463 Insert record test during file I/O error "));
|
sl@0
|
1225 |
InsertRecordTest();
|
sl@0
|
1226 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3516 Removable Media robustness test "));
|
sl@0
|
1227 |
RemovableMediaRobustnessTest();
|
sl@0
|
1228 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4044 Database size test during file I/O error"));
|
sl@0
|
1229 |
SizeTest();
|
sl@0
|
1230 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4045 Compact database test during file I/O error"));
|
sl@0
|
1231 |
CompactTest();
|
sl@0
|
1232 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4089 RSqlBlobWriteStream::WriteL() test during file I/O error"));
|
sl@0
|
1233 |
BlobWriteStreamTest(EFalse);
|
sl@0
|
1234 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4089 RSqlBlobWriteStream::WriteL()+attached database test during file I/O error"));
|
sl@0
|
1235 |
BlobWriteStreamTest(ETrue);
|
sl@0
|
1236 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4090 RSqlBlobReadStream::ReadL() test during file I/O error"));
|
sl@0
|
1237 |
BlobReadStreamTest(EFalse);
|
sl@0
|
1238 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4090 RSqlBlobReadStream::ReadL()+attached database test during file I/O error"));
|
sl@0
|
1239 |
BlobReadStreamTest(ETrue);
|
sl@0
|
1240 |
}
|
sl@0
|
1241 |
|
sl@0
|
1242 |
TInt E32Main()
|
sl@0
|
1243 |
{
|
sl@0
|
1244 |
TheTest.Title();
|
sl@0
|
1245 |
|
sl@0
|
1246 |
CTrapCleanup* tc = CTrapCleanup::New();
|
sl@0
|
1247 |
|
sl@0
|
1248 |
__UHEAP_MARK;
|
sl@0
|
1249 |
|
sl@0
|
1250 |
SetupTestEnv();
|
sl@0
|
1251 |
DoTests();
|
sl@0
|
1252 |
DestroyTestEnv();
|
sl@0
|
1253 |
|
sl@0
|
1254 |
__UHEAP_MARKEND;
|
sl@0
|
1255 |
|
sl@0
|
1256 |
TheTest.End();
|
sl@0
|
1257 |
TheTest.Close();
|
sl@0
|
1258 |
|
sl@0
|
1259 |
delete tc;
|
sl@0
|
1260 |
|
sl@0
|
1261 |
User::Heap().Check();
|
sl@0
|
1262 |
return KErrNone;
|
sl@0
|
1263 |
}
|