sl@0
|
1 |
// Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
#include <e32test.h>
|
sl@0
|
16 |
#include <e32math.h>
|
sl@0
|
17 |
#include <bautils.h>
|
sl@0
|
18 |
#include <sqldb.h>
|
sl@0
|
19 |
#include <f32file64.h>
|
sl@0
|
20 |
#include <hal.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
23 |
|
sl@0
|
24 |
RTest TheTest(_L("t_sqldb64 test"));
|
sl@0
|
25 |
RFs TheFs;
|
sl@0
|
26 |
RSqlDatabase TheDb;
|
sl@0
|
27 |
RSqlStatement TheStmt;
|
sl@0
|
28 |
|
sl@0
|
29 |
_LIT(KTestDbName1, "\\test\\t_sqldb64_1.db");
|
sl@0
|
30 |
|
sl@0
|
31 |
const TInt64 K1Mb = 1024LL * 1024LL;
|
sl@0
|
32 |
const TInt64 K1Gb = 1024LL * K1Mb;
|
sl@0
|
33 |
const TInt64 K4Gb = 4LL * K1Gb;
|
sl@0
|
34 |
|
sl@0
|
35 |
TInt64 TheLastInsertedRowid = -1LL;
|
sl@0
|
36 |
|
sl@0
|
37 |
struct TTestDriveInfo
|
sl@0
|
38 |
{
|
sl@0
|
39 |
TInt iSizeMb;
|
sl@0
|
40 |
TBool iWritable;
|
sl@0
|
41 |
};
|
sl@0
|
42 |
|
sl@0
|
43 |
TTestDriveInfo TheDriveInfo[KMaxDrives];
|
sl@0
|
44 |
TInt TheBiggestDriveNo = -1;
|
sl@0
|
45 |
TFileName TheDbName;
|
sl@0
|
46 |
|
sl@0
|
47 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
48 |
|
sl@0
|
49 |
void DeleteTestFiles()
|
sl@0
|
50 |
{
|
sl@0
|
51 |
TheStmt.Close();
|
sl@0
|
52 |
TheDb.Close();
|
sl@0
|
53 |
(void)RSqlDatabase::Delete(TheDbName);
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
57 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
58 |
//Test macros and functions
|
sl@0
|
59 |
void Check(TInt aValue, TInt aLine)
|
sl@0
|
60 |
{
|
sl@0
|
61 |
if(!aValue)
|
sl@0
|
62 |
{
|
sl@0
|
63 |
DeleteTestFiles();
|
sl@0
|
64 |
TheTest(EFalse, aLine);
|
sl@0
|
65 |
}
|
sl@0
|
66 |
}
|
sl@0
|
67 |
void Check(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
68 |
{
|
sl@0
|
69 |
if(aValue != aExpected)
|
sl@0
|
70 |
{
|
sl@0
|
71 |
DeleteTestFiles();
|
sl@0
|
72 |
RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
|
sl@0
|
73 |
TheTest(EFalse, aLine);
|
sl@0
|
74 |
}
|
sl@0
|
75 |
}
|
sl@0
|
76 |
#define TEST(arg) ::Check((arg), __LINE__)
|
sl@0
|
77 |
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
|
sl@0
|
78 |
|
sl@0
|
79 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
80 |
|
sl@0
|
81 |
void CreateTestEnv()
|
sl@0
|
82 |
{
|
sl@0
|
83 |
TInt err = TheFs.Connect();
|
sl@0
|
84 |
TEST2(err, KErrNone);
|
sl@0
|
85 |
}
|
sl@0
|
86 |
|
sl@0
|
87 |
void SqlTimerPrint(const TDesC& aText, TUint32 aStartTicks, TUint32 aEndTicks)
|
sl@0
|
88 |
{
|
sl@0
|
89 |
static TInt freq = 0;
|
sl@0
|
90 |
if(freq == 0)
|
sl@0
|
91 |
{
|
sl@0
|
92 |
TEST2(HAL::Get(HAL::EFastCounterFrequency, freq), KErrNone);
|
sl@0
|
93 |
}
|
sl@0
|
94 |
TInt64 diffTicks = (TInt64)aEndTicks - (TInt64)aStartTicks;
|
sl@0
|
95 |
if(diffTicks < 0)
|
sl@0
|
96 |
{
|
sl@0
|
97 |
diffTicks = KMaxTUint32 + diffTicks + 1;
|
sl@0
|
98 |
}
|
sl@0
|
99 |
const TInt KMicroSecIn1Sec = 1000000;
|
sl@0
|
100 |
TInt32 us = (diffTicks * KMicroSecIn1Sec) / freq;
|
sl@0
|
101 |
TheTest.Printf(_L("#### %S. Execution time: %d us\r\n"), &aText, us);
|
sl@0
|
102 |
}
|
sl@0
|
103 |
|
sl@0
|
104 |
TUint32 SqlTimerTicks()
|
sl@0
|
105 |
{
|
sl@0
|
106 |
return User::FastCounter();
|
sl@0
|
107 |
}
|
sl@0
|
108 |
|
sl@0
|
109 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
110 |
|
sl@0
|
111 |
/**
|
sl@0
|
112 |
@SYMTestCaseID PDS-SQL-CT-4129
|
sl@0
|
113 |
@SYMTestCaseDesc Creation of a database bigger than 4Gb (KMaxTUint).
|
sl@0
|
114 |
The test creates a test database with a table and inserts records into the table
|
sl@0
|
115 |
until the database size gets bigger than 4Gb (KMaxTUint). The purpose of the test is to verify
|
sl@0
|
116 |
that it is possible to create and manipulate 64-bit databases.
|
sl@0
|
117 |
@SYMTestActions Creation of a database bigger than 4Gb (KMaxTUint).
|
sl@0
|
118 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
119 |
@SYMTestPriority Medium
|
sl@0
|
120 |
@SYMREQ REQ12104
|
sl@0
|
121 |
REQ12105
|
sl@0
|
122 |
*/
|
sl@0
|
123 |
void CreateBigDbTest(const TDesC& aDbName, TInt64 aDbSize)
|
sl@0
|
124 |
{
|
sl@0
|
125 |
__ASSERT_ALWAYS(aDbSize > 0LL, User::Invariant());
|
sl@0
|
126 |
(void)RSqlDatabase::Delete(aDbName);
|
sl@0
|
127 |
_LIT8(KConfig, "encoding=\"UTF-8\"");
|
sl@0
|
128 |
TInt err = TheDb.Create(aDbName, &KConfig);
|
sl@0
|
129 |
TEST2(err, KErrNone);
|
sl@0
|
130 |
//
|
sl@0
|
131 |
err = TheDb.Exec(_L8("CREATE TABLE A(Id INTEGER PRIMARY KEY AUTOINCREMENT, Data BLOB)"));
|
sl@0
|
132 |
TEST2(err, 1);
|
sl@0
|
133 |
TInt64 fsize = 0;
|
sl@0
|
134 |
TheTest.Printf(_L("==File size:"));
|
sl@0
|
135 |
while(fsize < aDbSize)
|
sl@0
|
136 |
{
|
sl@0
|
137 |
const TInt KRecCnt = 1000;
|
sl@0
|
138 |
//Insert KRecCnt records in a transaction
|
sl@0
|
139 |
err = TheDb.Exec(_L8("BEGIN"));
|
sl@0
|
140 |
if(err < 0)
|
sl@0
|
141 |
{
|
sl@0
|
142 |
TheTest.Printf(_L("==='BEGIN' has failed with err %d\r\n"), err);
|
sl@0
|
143 |
}
|
sl@0
|
144 |
TEST(err >= 0);
|
sl@0
|
145 |
err = TheStmt.Prepare(TheDb, _L8("INSERT INTO A(Data) VALUES(zeroblob(32768))"));//32Kb big blob
|
sl@0
|
146 |
TEST2(err, KErrNone);
|
sl@0
|
147 |
for(TInt i=0;i<KRecCnt;++i)
|
sl@0
|
148 |
{
|
sl@0
|
149 |
err = TheStmt.Exec();
|
sl@0
|
150 |
TEST2(err, 1);
|
sl@0
|
151 |
err = TheStmt.Reset();
|
sl@0
|
152 |
TEST2(err, KErrNone);
|
sl@0
|
153 |
}
|
sl@0
|
154 |
TheStmt.Close();
|
sl@0
|
155 |
err = TheDb.Exec(_L8("COMMIT"));
|
sl@0
|
156 |
if(err < 0)
|
sl@0
|
157 |
{
|
sl@0
|
158 |
TheTest.Printf(_L("==='COMMIT' has failed with err %d\r\n"), err);
|
sl@0
|
159 |
}
|
sl@0
|
160 |
TEST(err >= 0);
|
sl@0
|
161 |
TheLastInsertedRowid = TheDb.LastInsertedRowId();
|
sl@0
|
162 |
TEST(TheLastInsertedRowid > 0LL);
|
sl@0
|
163 |
//Check and print the file size
|
sl@0
|
164 |
TheDb.Close();
|
sl@0
|
165 |
RFile64 file;
|
sl@0
|
166 |
err = file.Open(TheFs, aDbName, EFileRead | EFileWrite);
|
sl@0
|
167 |
TEST2(err, KErrNone);
|
sl@0
|
168 |
err = file.Size(fsize);
|
sl@0
|
169 |
TEST2(err, KErrNone);
|
sl@0
|
170 |
file.Close();
|
sl@0
|
171 |
TheTest.Printf(_L(" %ldMb"), fsize / K1Mb);
|
sl@0
|
172 |
err = TheDb.Open(aDbName);
|
sl@0
|
173 |
TEST2(err, KErrNone);
|
sl@0
|
174 |
}
|
sl@0
|
175 |
TheTest.Printf(_L("\r\n"));
|
sl@0
|
176 |
//
|
sl@0
|
177 |
TheDb.Close();
|
sl@0
|
178 |
}
|
sl@0
|
179 |
|
sl@0
|
180 |
/**
|
sl@0
|
181 |
@SYMTestCaseID PDS-SQL-CT-4130
|
sl@0
|
182 |
@SYMTestCaseDesc SQL operations on a 64-bit database.
|
sl@0
|
183 |
The test uses the database created in test case PDS-SQL-UT-4129.
|
sl@0
|
184 |
Simple INSERT, UPDATE, DELETE and SELECT statements are executed on the database.
|
sl@0
|
185 |
The data in the test SQL statements is such that the manipulated records are beyond the 4Gb
|
sl@0
|
186 |
file offset. Some other of the test SQL statements will perform sequential scan of the whole
|
sl@0
|
187 |
database from offset 0 to the end of the database file.
|
sl@0
|
188 |
The purpose of the test is to verify that there are no problem if the database offset is 64-bit.
|
sl@0
|
189 |
@SYMTestActions SQL operations on a 64-bit database.
|
sl@0
|
190 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
191 |
@SYMTestPriority Medium
|
sl@0
|
192 |
@SYMREQ REQ12104
|
sl@0
|
193 |
REQ12105
|
sl@0
|
194 |
*/
|
sl@0
|
195 |
void SimpleDbOperationsTestL(const TDesC& aDbName)
|
sl@0
|
196 |
{
|
sl@0
|
197 |
__ASSERT_ALWAYS(TheLastInsertedRowid > 0LL, User::Invariant());
|
sl@0
|
198 |
TInt err = TheDb.Open(aDbName);
|
sl@0
|
199 |
TEST2(err, KErrNone);
|
sl@0
|
200 |
//SELECT-1
|
sl@0
|
201 |
TUint32 start = SqlTimerTicks();
|
sl@0
|
202 |
err = TheStmt.Prepare(TheDb, _L8("SELECT Id FROM A WHERE ROWID = :Prm"));
|
sl@0
|
203 |
TEST2(err, KErrNone);
|
sl@0
|
204 |
err = TheStmt.BindInt64(0, TheLastInsertedRowid - 1LL);
|
sl@0
|
205 |
TEST2(err, KErrNone);
|
sl@0
|
206 |
err = TheStmt.Next();
|
sl@0
|
207 |
TEST2(err, KSqlAtRow);
|
sl@0
|
208 |
TInt64 id = TheStmt.ColumnInt64(0);
|
sl@0
|
209 |
TheTest.Printf(_L("==Id=%ld\r\n"), id);
|
sl@0
|
210 |
TheStmt.Close();
|
sl@0
|
211 |
TUint32 end = SqlTimerTicks();
|
sl@0
|
212 |
SqlTimerPrint(_L("SELECT-1"), start, end);
|
sl@0
|
213 |
//INSERT
|
sl@0
|
214 |
start = SqlTimerTicks();
|
sl@0
|
215 |
err = TheDb.Exec(_L("INSERT INTO A(Data) VALUES('123456')"));
|
sl@0
|
216 |
TEST2(err, 1);
|
sl@0
|
217 |
end = SqlTimerTicks();
|
sl@0
|
218 |
SqlTimerPrint(_L("INSERT"), start, end);
|
sl@0
|
219 |
//UPDATE
|
sl@0
|
220 |
start = SqlTimerTicks();
|
sl@0
|
221 |
TBuf<100> sql;
|
sl@0
|
222 |
sql.Format(_L("UPDATE A SET Data='56789' WHERE Id=%ld"), id);
|
sl@0
|
223 |
err = TheDb.Exec(sql);
|
sl@0
|
224 |
TEST2(err, 1);
|
sl@0
|
225 |
end = SqlTimerTicks();
|
sl@0
|
226 |
SqlTimerPrint(_L("UPDATE"), start, end);
|
sl@0
|
227 |
//SELECT-2
|
sl@0
|
228 |
start = SqlTimerTicks();
|
sl@0
|
229 |
TSqlScalarFullSelectQuery scalarQuery(TheDb);
|
sl@0
|
230 |
sql.Format(_L("SELECT Data FROM A WHERE ID = %ld"), id);
|
sl@0
|
231 |
TBuf<32> buf;
|
sl@0
|
232 |
err = scalarQuery.SelectTextL(sql, buf);
|
sl@0
|
233 |
TEST2(err, KErrNone);
|
sl@0
|
234 |
err = buf.Compare(_L("56789"));
|
sl@0
|
235 |
TEST2(err, 0);
|
sl@0
|
236 |
end = SqlTimerTicks();
|
sl@0
|
237 |
SqlTimerPrint(_L("SELECT-2"), start, end);
|
sl@0
|
238 |
//SELECT-3
|
sl@0
|
239 |
start = SqlTimerTicks();
|
sl@0
|
240 |
sql.Format(_L("SELECT COUNT(*) FROM A"));
|
sl@0
|
241 |
TInt recCnt = scalarQuery.SelectIntL(sql);
|
sl@0
|
242 |
TheTest.Printf(_L("==Records count: %d\r\n"), recCnt);
|
sl@0
|
243 |
end = SqlTimerTicks();
|
sl@0
|
244 |
SqlTimerPrint(_L("SELECT-3"), start, end);
|
sl@0
|
245 |
TEST(recCnt > 0);
|
sl@0
|
246 |
//SELECT-4
|
sl@0
|
247 |
start = SqlTimerTicks();
|
sl@0
|
248 |
sql.Format(_L("SELECT MAX(ROWID) FROM A"));
|
sl@0
|
249 |
TInt rowid = scalarQuery.SelectIntL(sql);
|
sl@0
|
250 |
TheTest.Printf(_L("==MAX(ROWID): %d\r\n"), rowid);
|
sl@0
|
251 |
end = SqlTimerTicks();
|
sl@0
|
252 |
SqlTimerPrint(_L("SELECT-4"), start, end);
|
sl@0
|
253 |
TEST(rowid > 0);
|
sl@0
|
254 |
//DELETE
|
sl@0
|
255 |
start = SqlTimerTicks();
|
sl@0
|
256 |
sql.Format(_L("DELETE FROM A WHERE ID = %ld"), id);
|
sl@0
|
257 |
err = TheDb.Exec(sql);
|
sl@0
|
258 |
TEST2(err, 1);
|
sl@0
|
259 |
end = SqlTimerTicks();
|
sl@0
|
260 |
SqlTimerPrint(_L("DELETE"), start, end);
|
sl@0
|
261 |
//
|
sl@0
|
262 |
TheDb.Close();
|
sl@0
|
263 |
}
|
sl@0
|
264 |
|
sl@0
|
265 |
/**
|
sl@0
|
266 |
@SYMTestCaseID PDS-SQL-CT-4145
|
sl@0
|
267 |
@SYMTestCaseDesc RSqlDatabase::Size() on a 64-bit database.
|
sl@0
|
268 |
The test uses the database created in test case PDS-SQL-UT-4129, opens the database
|
sl@0
|
269 |
and calls the Size() methods. The first Size() call should fail with KErrTooBig error,
|
sl@0
|
270 |
because the database size is over 2Gb and cannot fit in the 32-bit integer result of the call.
|
sl@0
|
271 |
The second call of the overloaded Size() method should correctly report the database size.
|
sl@0
|
272 |
@SYMTestActions RSqlDatabase::Size() on a 64-bit database.
|
sl@0
|
273 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
274 |
@SYMTestPriority Medium
|
sl@0
|
275 |
@SYMREQ REQ12105
|
sl@0
|
276 |
*/
|
sl@0
|
277 |
void SizeTest(const TDesC& aDbName)
|
sl@0
|
278 |
{
|
sl@0
|
279 |
__ASSERT_ALWAYS(TheLastInsertedRowid > 0LL, User::Invariant());
|
sl@0
|
280 |
TInt err = TheDb.Open(aDbName);
|
sl@0
|
281 |
TEST2(err, KErrNone);
|
sl@0
|
282 |
//Size-1
|
sl@0
|
283 |
TInt size = TheDb.Size();
|
sl@0
|
284 |
TEST2(size, KErrTooBig);
|
sl@0
|
285 |
//Size-2
|
sl@0
|
286 |
RSqlDatabase::TSize size2;
|
sl@0
|
287 |
err = TheDb.Size(size2);
|
sl@0
|
288 |
TEST2(err, KErrNone);
|
sl@0
|
289 |
TEST(size2.iSize > K4Gb);
|
sl@0
|
290 |
//
|
sl@0
|
291 |
TheDb.Close();
|
sl@0
|
292 |
}
|
sl@0
|
293 |
|
sl@0
|
294 |
/**
|
sl@0
|
295 |
@SYMTestCaseID PDS-SQL-CT-4146
|
sl@0
|
296 |
@SYMTestCaseDesc Background compaction on a 64-bit database.
|
sl@0
|
297 |
The test uses the database created in test case PDS-SQL-UT-4129 and opens the database.
|
sl@0
|
298 |
Iteration 1:
|
sl@0
|
299 |
The test executes a DELETE sql statement that deletes couple of records. The freed disk space
|
sl@0
|
300 |
is big enough to kick-off the background compaction. The test waits couple of seconds and then
|
sl@0
|
301 |
checks the database size and free space to verify that the background compaction really compacted
|
sl@0
|
302 |
the database.
|
sl@0
|
303 |
Iteration 2:
|
sl@0
|
304 |
Iteration 2 is the same as iteration 1, but the freed database space is such that the following
|
sl@0
|
305 |
background compaction will shrink the database size to be less than 4Gb.
|
sl@0
|
306 |
After iteration 2 the test performs an INSERT transaction and increases the database size to be
|
sl@0
|
307 |
bigger than 4Gb.
|
sl@0
|
308 |
@SYMTestActions Background compaction on a 64-bit database.
|
sl@0
|
309 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
310 |
@SYMTestPriority Medium
|
sl@0
|
311 |
@SYMREQ REQ12105
|
sl@0
|
312 |
*/
|
sl@0
|
313 |
void BackgroundCompactionTest(const TDesC& aDbName)
|
sl@0
|
314 |
{
|
sl@0
|
315 |
__ASSERT_ALWAYS(TheLastInsertedRowid > 0LL, User::Invariant());
|
sl@0
|
316 |
TInt err = TheDb.Open(aDbName);
|
sl@0
|
317 |
TEST2(err, KErrNone);
|
sl@0
|
318 |
const TInt64 KDelRecCnt[2] = {10LL, 2400LL};
|
sl@0
|
319 |
for(TInt i=0;i<2;++i)
|
sl@0
|
320 |
{
|
sl@0
|
321 |
TheTest.Printf(_L("=========== Iteration %d ===========\r\n"), i + 1);
|
sl@0
|
322 |
//Size-1
|
sl@0
|
323 |
RSqlDatabase::TSize size;
|
sl@0
|
324 |
err = TheDb.Size(size);
|
sl@0
|
325 |
TEST2(err, KErrNone);
|
sl@0
|
326 |
TEST(size.iSize > K4Gb);
|
sl@0
|
327 |
TheTest.Printf(_L(" ==Before DELETE, database size=%ldKb\r\n"), size.iSize / 1024LL);
|
sl@0
|
328 |
//Delete records
|
sl@0
|
329 |
TBuf<100> sql;
|
sl@0
|
330 |
sql.Format(_L("DELETE FROM A WHERE ROWID > %ld AND ROWID < %ld"), TheLastInsertedRowid - KDelRecCnt[i], TheLastInsertedRowid);
|
sl@0
|
331 |
err = TheDb.Exec(sql);
|
sl@0
|
332 |
TEST(err > 0);
|
sl@0
|
333 |
//Size-2
|
sl@0
|
334 |
err = TheDb.Size(size);
|
sl@0
|
335 |
TEST2(err, KErrNone);
|
sl@0
|
336 |
TEST(size.iSize > K4Gb);
|
sl@0
|
337 |
TEST(size.iFree > (50 * 1024));
|
sl@0
|
338 |
TheTest.Printf(_L(" ==After DELETE, database size=%ldKb, free space=%ldKb\r\n"), size.iSize / 1024LL, size.iFree / 1024LL);
|
sl@0
|
339 |
//Wait some time (to allow the background compaction to run)
|
sl@0
|
340 |
const TInt KOneSecond = 1000000;
|
sl@0
|
341 |
const TInt KMaxWaitTime = 300 * KOneSecond;//300 sec == 5 min
|
sl@0
|
342 |
TInt waitTime = 0;
|
sl@0
|
343 |
while(waitTime < KMaxWaitTime)
|
sl@0
|
344 |
{
|
sl@0
|
345 |
const TInt KWaitStep = 5 * KOneSecond;
|
sl@0
|
346 |
User::After(KWaitStep);
|
sl@0
|
347 |
//Check the size
|
sl@0
|
348 |
err = TheDb.Size(size);
|
sl@0
|
349 |
TEST2(err, KErrNone);
|
sl@0
|
350 |
if(size.iFree == 0)
|
sl@0
|
351 |
{
|
sl@0
|
352 |
break;
|
sl@0
|
353 |
}
|
sl@0
|
354 |
waitTime += KWaitStep;
|
sl@0
|
355 |
TheTest.Printf(_L(" ==After %3d sec, database size=%ldKb, free space=%ldKb\r\n"), waitTime / KOneSecond, size.iSize / 1024LL, size.iFree / 1024LL);
|
sl@0
|
356 |
}
|
sl@0
|
357 |
if(i == 0)
|
sl@0
|
358 |
{
|
sl@0
|
359 |
TEST(size.iSize > K4Gb);
|
sl@0
|
360 |
}
|
sl@0
|
361 |
else
|
sl@0
|
362 |
{
|
sl@0
|
363 |
TEST(size.iSize < K4Gb);
|
sl@0
|
364 |
}
|
sl@0
|
365 |
TEST2(size.iFree, 0);
|
sl@0
|
366 |
//Records count
|
sl@0
|
367 |
sql.Format(_L("SELECT COUNT(*) FROM A"));
|
sl@0
|
368 |
TSqlScalarFullSelectQuery q(TheDb);
|
sl@0
|
369 |
TInt recCnt = -1;
|
sl@0
|
370 |
TRAP(err, recCnt = q.SelectIntL(sql));
|
sl@0
|
371 |
TEST2(err, KErrNone);
|
sl@0
|
372 |
TheTest.Printf(_L(" ==Records count: %d\r\n"), recCnt);
|
sl@0
|
373 |
TEST(recCnt > 0);
|
sl@0
|
374 |
}
|
sl@0
|
375 |
TheTest.Printf(_L("==Increase the database size above 4Gb\r\n"));
|
sl@0
|
376 |
//Insert KRecCnt records in a transaction
|
sl@0
|
377 |
const TInt KRecCnt = 2500;
|
sl@0
|
378 |
err = TheDb.Exec(_L8("BEGIN"));
|
sl@0
|
379 |
TEST(err >= 0);
|
sl@0
|
380 |
err = TheStmt.Prepare(TheDb, _L8("INSERT INTO A(Data) VALUES(zeroblob(32768))"));//32Kb big blob
|
sl@0
|
381 |
TEST2(err, KErrNone);
|
sl@0
|
382 |
for(TInt i=0;i<KRecCnt;++i)
|
sl@0
|
383 |
{
|
sl@0
|
384 |
err = TheStmt.Exec();
|
sl@0
|
385 |
TEST2(err, 1);
|
sl@0
|
386 |
err = TheStmt.Reset();
|
sl@0
|
387 |
TEST2(err, KErrNone);
|
sl@0
|
388 |
}
|
sl@0
|
389 |
TheStmt.Close();
|
sl@0
|
390 |
err = TheDb.Exec(_L8("COMMIT"));
|
sl@0
|
391 |
TEST(err >= 0);
|
sl@0
|
392 |
//Size
|
sl@0
|
393 |
RSqlDatabase::TSize size2;
|
sl@0
|
394 |
err = TheDb.Size(size2);
|
sl@0
|
395 |
TEST2(err, KErrNone);
|
sl@0
|
396 |
TEST(size2.iSize > K4Gb);
|
sl@0
|
397 |
TheTest.Printf(_L(" ==Database size=%ldKb\r\n"), size2.iSize / 1024LL);
|
sl@0
|
398 |
//
|
sl@0
|
399 |
TheDb.Close();
|
sl@0
|
400 |
}
|
sl@0
|
401 |
|
sl@0
|
402 |
/**
|
sl@0
|
403 |
@SYMTestCaseID PDS-SQL-CT-4131
|
sl@0
|
404 |
@SYMTestCaseDesc Deleting database bigger than 4Gb (KMaxTUint).
|
sl@0
|
405 |
The test deletes the database created in test case PDS-SQL-UT-4129.
|
sl@0
|
406 |
@SYMTestActions Deleting database bigger than 4Gb (KMaxTUint).
|
sl@0
|
407 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
408 |
@SYMTestPriority Medium
|
sl@0
|
409 |
@SYMREQ REQ12104
|
sl@0
|
410 |
REQ12105
|
sl@0
|
411 |
*/
|
sl@0
|
412 |
void DeleteBigDbTest()
|
sl@0
|
413 |
{
|
sl@0
|
414 |
TInt err = RSqlDatabase::Delete(TheDbName);
|
sl@0
|
415 |
TEST2(err, KErrNone);
|
sl@0
|
416 |
}
|
sl@0
|
417 |
|
sl@0
|
418 |
void CollectDriveInfo()
|
sl@0
|
419 |
{
|
sl@0
|
420 |
TheTest.Printf(_L("==================\r\n"));
|
sl@0
|
421 |
_LIT(KType1, "Not present");
|
sl@0
|
422 |
_LIT(KType2, "Unknown");
|
sl@0
|
423 |
_LIT(KType3, "Floppy");
|
sl@0
|
424 |
_LIT(KType4, "Hard disk");
|
sl@0
|
425 |
_LIT(KType5, "CD ROM");
|
sl@0
|
426 |
_LIT(KType6, "RAM disk");
|
sl@0
|
427 |
_LIT(KType7, "Flash");
|
sl@0
|
428 |
_LIT(KType8, "ROM drive");
|
sl@0
|
429 |
_LIT(KType9, "Remote drive");
|
sl@0
|
430 |
_LIT(KType10,"NAND flash");
|
sl@0
|
431 |
_LIT(KType11,"Rotating media");
|
sl@0
|
432 |
|
sl@0
|
433 |
Mem::FillZ(TheDriveInfo, sizeof(TheDriveInfo));
|
sl@0
|
434 |
TheBiggestDriveNo = 0;
|
sl@0
|
435 |
|
sl@0
|
436 |
for(TInt drive=EDriveA;drive<=EDriveZ;++drive)
|
sl@0
|
437 |
{
|
sl@0
|
438 |
TDriveInfo driveInfo;
|
sl@0
|
439 |
TInt err = TheFs.Drive(driveInfo, drive);
|
sl@0
|
440 |
if(err == KErrNone)
|
sl@0
|
441 |
{
|
sl@0
|
442 |
TVolumeInfo vinfo;
|
sl@0
|
443 |
err = TheFs.Volume(vinfo, drive);
|
sl@0
|
444 |
if(err == KErrNone)
|
sl@0
|
445 |
{
|
sl@0
|
446 |
TVolumeIOParamInfo vparam;
|
sl@0
|
447 |
err = TheFs.VolumeIOParam(drive, vparam);
|
sl@0
|
448 |
TEST2(err, KErrNone);
|
sl@0
|
449 |
TBuf8<128> vinfoex8;
|
sl@0
|
450 |
err = TheFs.QueryVolumeInfoExt(drive, EFileSystemSubType, vinfoex8);
|
sl@0
|
451 |
TEST2(err, KErrNone);
|
sl@0
|
452 |
TPtrC vinfoex((const TUint16*)(vinfoex8.Ptr() + 8), vinfoex8[0]);
|
sl@0
|
453 |
TPtrC KMediaTypeNames[] = {KType1(), KType2(), KType3(), KType4(), KType5(), KType6(), KType7(), KType8(), KType9(), KType10(), KType11()};
|
sl@0
|
454 |
TInt sizeMb = vinfo.iSize / K1Mb;
|
sl@0
|
455 |
TheTest.Printf(_L("Drive: %C:, Type: %16.16S, File System: %8.8S, Size: %d Mb.\r\n"), 'A' + drive, &KMediaTypeNames[driveInfo.iType], &vinfoex, sizeMb);
|
sl@0
|
456 |
TheTest.Printf(_L(" Block size=%d, Cluster size=%d, Read buffer size=%d.\r\n"), vparam.iBlockSize, vparam.iClusterSize, vparam.iRecReadBufSize);
|
sl@0
|
457 |
TheDriveInfo[drive].iSizeMb = sizeMb;
|
sl@0
|
458 |
if(driveInfo.iType == EMediaRam || driveInfo.iType == EMediaHardDisk || driveInfo.iType == EMediaFlash || driveInfo.iType == EMediaNANDFlash)
|
sl@0
|
459 |
{
|
sl@0
|
460 |
TheDriveInfo[drive].iWritable = ETrue;
|
sl@0
|
461 |
if(sizeMb > TheDriveInfo[TheBiggestDriveNo].iSizeMb)
|
sl@0
|
462 |
{
|
sl@0
|
463 |
TheBiggestDriveNo = drive;
|
sl@0
|
464 |
}
|
sl@0
|
465 |
}
|
sl@0
|
466 |
}
|
sl@0
|
467 |
else
|
sl@0
|
468 |
{
|
sl@0
|
469 |
TheTest.Printf(_L("Drive %C. RFs::Volume() has failed with err=%d.\r\n"), 'A' + drive, err);
|
sl@0
|
470 |
}
|
sl@0
|
471 |
}
|
sl@0
|
472 |
else
|
sl@0
|
473 |
{
|
sl@0
|
474 |
TheTest.Printf(_L("Drive %C. RFs::Drive() has failed with err=%d.\r\n"), 'A' + drive, err);
|
sl@0
|
475 |
}
|
sl@0
|
476 |
}
|
sl@0
|
477 |
|
sl@0
|
478 |
TheTest.Printf(_L("The biggest R/W drive is: %C, Size: %d Mb\r\n"), 'A' + TheBiggestDriveNo, TheDriveInfo[TheBiggestDriveNo].iSizeMb);
|
sl@0
|
479 |
TDriveUnit drvUnit(TheBiggestDriveNo);
|
sl@0
|
480 |
TDriveName drvName = drvUnit.Name();
|
sl@0
|
481 |
TParse parse;
|
sl@0
|
482 |
parse.Set(KTestDbName1, &drvName, NULL);
|
sl@0
|
483 |
TheDbName.Copy(parse.FullName());
|
sl@0
|
484 |
|
sl@0
|
485 |
TRAPD(err, BaflUtils::EnsurePathExistsL(TheFs, TheDbName));
|
sl@0
|
486 |
TEST(err == KErrNone || err == KErrAlreadyExists);
|
sl@0
|
487 |
|
sl@0
|
488 |
TheTest.Printf(_L("==================\r\n"));
|
sl@0
|
489 |
}
|
sl@0
|
490 |
|
sl@0
|
491 |
void DoTestsL()
|
sl@0
|
492 |
{
|
sl@0
|
493 |
TheTest.Start(_L("Collect drive information"));
|
sl@0
|
494 |
CollectDriveInfo();
|
sl@0
|
495 |
|
sl@0
|
496 |
TInt64 maxDrvSize = TheDriveInfo[TheBiggestDriveNo].iSizeMb * K1Mb;
|
sl@0
|
497 |
if(maxDrvSize <= K4Gb)
|
sl@0
|
498 |
{
|
sl@0
|
499 |
TheTest.Printf(_L("There is no drive bigger than 4Gb. The tests won't be executed.\r\n"));
|
sl@0
|
500 |
return;
|
sl@0
|
501 |
}
|
sl@0
|
502 |
|
sl@0
|
503 |
TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4129 Create database, bigger than 4Gb"));
|
sl@0
|
504 |
CreateBigDbTest(TheDbName, K4Gb + 64 * K1Mb);
|
sl@0
|
505 |
|
sl@0
|
506 |
TheTest.Next (_L(" @SYMTestCaseID:PDS-SQL-CT-4130 64-bit database - simple operations test"));
|
sl@0
|
507 |
SimpleDbOperationsTestL(TheDbName);
|
sl@0
|
508 |
|
sl@0
|
509 |
TheTest.Next (_L(" @SYMTestCaseID:PDS-SQL-CT-4145 64-bit database - Size() test"));
|
sl@0
|
510 |
SizeTest(TheDbName);
|
sl@0
|
511 |
|
sl@0
|
512 |
TheTest.Next (_L(" @SYMTestCaseID:PDS-SQL-CT-4146 64-bit database - background compaction test"));
|
sl@0
|
513 |
BackgroundCompactionTest(TheDbName);
|
sl@0
|
514 |
|
sl@0
|
515 |
TheTest.Next (_L(" @SYMTestCaseID:PDS-SQL-CT-4131 Delete 64-bit database test"));
|
sl@0
|
516 |
DeleteBigDbTest();
|
sl@0
|
517 |
}
|
sl@0
|
518 |
|
sl@0
|
519 |
TInt E32Main()
|
sl@0
|
520 |
{
|
sl@0
|
521 |
TheTest.Title();
|
sl@0
|
522 |
|
sl@0
|
523 |
CTrapCleanup* tc = CTrapCleanup::New();
|
sl@0
|
524 |
TheTest(tc != NULL);
|
sl@0
|
525 |
|
sl@0
|
526 |
__UHEAP_MARK;
|
sl@0
|
527 |
|
sl@0
|
528 |
CreateTestEnv();
|
sl@0
|
529 |
DeleteTestFiles();
|
sl@0
|
530 |
TRAPD(err, DoTestsL());
|
sl@0
|
531 |
DeleteTestFiles();
|
sl@0
|
532 |
TheFs.Close();
|
sl@0
|
533 |
TEST2(err, KErrNone);
|
sl@0
|
534 |
|
sl@0
|
535 |
__UHEAP_MARKEND;
|
sl@0
|
536 |
|
sl@0
|
537 |
TheTest.End();
|
sl@0
|
538 |
TheTest.Close();
|
sl@0
|
539 |
|
sl@0
|
540 |
delete tc;
|
sl@0
|
541 |
|
sl@0
|
542 |
User::Heap().Check();
|
sl@0
|
543 |
return KErrNone;
|
sl@0
|
544 |
}
|