Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
21 #include "sqliteTestUtl.h"
22 #include "t_sqliteperf.h"
24 ///////////////////////////////////////////////////////////////////////////////////////
26 const char* const KTestName = "t_sqliteperf test";
28 _LIT(KTestDir, "c:\\test\\");
29 _LIT(KTestDbName, "c:\\test\\t_sqliteperf.db");
30 _LIT8(KTestDbName8, "c:\\test\\t_sqliteperf.db\x0");
32 _LIT(KSqlSrvName, "sqlsrv.exe");
34 static RSqlDatabase TheDb;
36 const TInt KInsertRecCnt = 1000;
37 const TInt KUpdateRecCnt = KInsertRecCnt / 10;
38 const TInt KDeleteRecCnt = KInsertRecCnt / 10;
39 const TInt KSelectRecCnt = KInsertRecCnt / 10;
41 static TInt TheUpdateRecIds[KUpdateRecCnt] = {0};
42 static TInt TheDeleteRecIds[KDeleteRecCnt] = {0};
43 static TInt TheSelectRecIds[KSelectRecCnt] = {0};
45 static TInt TheInsertRecId = 0;
46 static TInt TheUpdateRecId = 0;
47 static TInt TheDeleteRecId = 0;
48 static TInt TheSelectRecId = 0;
50 const char KMultiInsertSql[] = "INSERT INTO Tbl VALUES(:Id, 9234567890, 99.998, 'TEXT VALUE', x'AABBCCDDEEFF')";
51 const char KMultiUpdateSql[] = "UPDATE Tbl SET D=11.113 WHERE I IN";
52 const char KMultiDeleteSql[] = "DELETE FROM Tbl WHERE I IN";
53 const char KMultiSelectSql[] = "SELECT I64,D,T,B FROM Tbl WHERE I IN";
55 const char KSingleInsertSql[] = "INSERT INTO Tbl VALUES(%d, 9234567890, 99.998, 'TEXT VALUE', x'AABBCCDDEEFF')";
56 const char KSingleUpdateSql[] = "UPDATE Tbl SET D=11.113 WHERE I=";
57 const char KSingleDeleteSql[] = "DELETE FROM Tbl WHERE I=";
58 const char KSingleSelectSql[] = "SELECT I64,D,T,B FROM Tbl WHERE I=";
60 //This buffer is used for SQL statement formatting. 2000 bytes should be enough as a buffer max length.
61 static TBuf8<2000> TheSqlBuf;
62 //This buffer is used for printf related formatting. 500 characters should be enough.
63 static TBuf<500> ThePrintBuf;
65 #define UNUSED_VAR(a) (a) = (a)
66 #define UNUSED_PTR(a) a.Set(a)
68 ///////////////////////////////////////////////////////////////////////////////////////
70 extern "C" const char* TestDbName(void)
72 return (const char*)KTestDbName8().Ptr();
75 static void DeleteTestFiles()
78 (void)RSqlDatabase::Delete(KTestDbName);
81 ///////////////////////////////////////////////////////////////////////////////////////
82 //Test macros and functions
83 static void Check(TInt aValue, TInt aLine)
88 TestTestLine(EFalse, aLine);
91 static void Check(TInt aValue, TInt aExpected, TInt aLine)
93 if(aValue != aExpected)
96 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
97 TestTestLine(EFalse, aLine);
100 #define TEST(arg) ::Check((arg), __LINE__)
101 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
103 ///////////////////////////////////////////////////////////////////////////////////////
105 static TInt KillProcess(const TDesC& aProcessName)
108 //RDebug::Print(_L("Find and kill \"%S\" process.\n"), &aProcessName);
109 TBuf<64> pattern(aProcessName);
110 TInt length = pattern.Length();
112 TFindProcess procFinder(pattern);
114 while (procFinder.Next(name) == KErrNone)
116 if (name.Length() > length)
117 {//If found name is a string containing aProcessName string.
118 TChar c(name[length]);
119 if (c.IsAlphaDigit() ||
123 // If the found name is other valid application name
124 // starting with aProcessName string.
125 //RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
130 if (proc.Open(name) == KErrNone)
133 //RDebug::Print(_L("\"%S\" process killed.\n"), &name);
140 static TInt TheCounterFreq = -10000000;
141 const TInt KMicroSecIn1Sec = 1000000;
143 //Prints aFastCount parameter (converted to us)
144 static TInt FcDiff2Us(TUint32 aFastCount)
146 double v = ((double)aFastCount * KMicroSecIn1Sec) / (double)TheCounterFreq;
151 static void GetFastCounterFrequency()
153 TEST2(HAL::Get(HAL::EFastCounterFrequency, TheCounterFreq), KErrNone);
154 TBuf8<32> printString;
155 printString.Format(_L8("Counter frequency=%d\r\n"), TheCounterFreq);
156 TestPrintf((const char*)printString.PtrZ());
159 extern "C" unsigned int FastCounterValue(void)
161 return User::FastCounter();
164 //The performance test case results are stored in the ThePerfTestResult array.
165 static TUint32 ThePerfTestResult[EPerfTestModeCnt][EPerfTestTypeCnt];
167 extern "C" void StorePerfTestResult(TPerfTestMode aMode, TPerfTestType aType, unsigned int aResult)
169 ThePerfTestResult[aMode][aType] = aResult;
172 static void PrintPerfTestResults()
174 TBuf8<256> printString;
175 TInt r1 = FcDiff2Us(ThePerfTestResult[EPerfTestSqlMode] [EPerfTestMultiInsert]);
176 TInt r2 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteSqlMode] [EPerfTestMultiInsert]);
177 TInt r3 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteDefaultMode][EPerfTestMultiInsert]);
178 TInt r4 = (TInt)((Abs(r2 - r1) * 100.0) / r1);
179 TInt r5 = (TInt)((Abs(r3 - r1) * 100.0) / r1);
180 TestPrintf("### SQL SQLITE-SQL SQLITE-DEFAULT\r\n");
181 printString.Format(_L8("###Multi Insert: %8dus %8dus %8dus %8d%%%% %8d%%%%\r\n"), r1, r2, r3, r2 > r1 ? -r4 : +r4, r3 > r1 ? -r5 : +r5);
182 TestPrintf((const char*)printString.PtrZ());
184 r1 = FcDiff2Us(ThePerfTestResult[EPerfTestSqlMode] [EPerfTestMultiUpdate]);
185 r2 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteSqlMode] [EPerfTestMultiUpdate]);
186 r3 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteDefaultMode][EPerfTestMultiUpdate]);
187 r4 = (TInt)((Abs(r2 - r1) * 100.0) / r1);
188 r5 = (TInt)((Abs(r3 - r1) * 100.0) / r1);
189 printString.Format(_L8("###Multi Update: %8dus %8dus %8dus %8d%%%% %8d%%%%\r\n"), r1, r2, r3, r2 > r1 ? -r4 : +r4, r3 > r1 ? -r5 : +r5);
190 TestPrintf((const char*)printString.PtrZ());
192 r1 = FcDiff2Us(ThePerfTestResult[EPerfTestSqlMode] [EPerfTestMultiDelete]);
193 r2 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteSqlMode] [EPerfTestMultiDelete]);
194 r3 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteDefaultMode][EPerfTestMultiDelete]);
195 r4 = (TInt)((Abs(r2 - r1) * 100.0) / r1);
196 r5 = (TInt)((Abs(r3 - r1) * 100.0) / r1);
197 printString.Format(_L8("###Multi Delete: %8dus %8dus %8dus %8d%%%% %8d%%%%\r\n"), r1, r2, r3, r2 > r1 ? -r4 : +r4, r3 > r1 ? -r5 : +r5);
198 TestPrintf((const char*)printString.PtrZ());
200 r1 = FcDiff2Us(ThePerfTestResult[EPerfTestSqlMode] [EPerfTestMultiSelect]);
201 r2 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteSqlMode] [EPerfTestMultiSelect]);
202 r3 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteDefaultMode][EPerfTestMultiSelect]);
203 r4 = (TInt)((Abs(r2 - r1) * 100.0) / r1);
204 r5 = (TInt)((Abs(r3 - r1) * 100.0) / r1);
205 printString.Format(_L8("###Multi Select: %8dus %8dus %8dus %8d%%%% %8d%%%%\r\n"), r1, r2, r3, r2 > r1 ? -r4 : +r4, r3 > r1 ? -r5 : +r5);
206 TestPrintf((const char*)printString.PtrZ());
208 r1 = FcDiff2Us(ThePerfTestResult[EPerfTestSqlMode] [EPerfTestSingleInsert]);
209 r2 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteSqlMode] [EPerfTestSingleInsert]);
210 r3 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteDefaultMode][EPerfTestSingleInsert]);
211 r4 = (TInt)((Abs(r2 - r1) * 100.0) / r1);
212 r5 = (TInt)((Abs(r3 - r1) * 100.0) / r1);
213 printString.Format(_L8("##Single Insert: %8dus %8dus %8dus %8d%%%% %8d%%%%\r\n"), r1, r2, r3, r2 > r1 ? -r4 : +r4, r3 > r1 ? -r5 : +r5);
214 TestPrintf((const char*)printString.PtrZ());
216 r1 = FcDiff2Us(ThePerfTestResult[EPerfTestSqlMode] [EPerfTestSingleUpdate]);
217 r2 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteSqlMode] [EPerfTestSingleUpdate]);
218 r3 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteDefaultMode][EPerfTestSingleUpdate]);
219 r4 = (TInt)((Abs(r2 - r1) * 100.0) / r1);
220 r5 = (TInt)((Abs(r3 - r1) * 100.0) / r1);
221 printString.Format(_L8("##Single Update: %8dus %8dus %8dus %8d%%%% %8d%%%%\r\n"), r1, r2, r3, r2 > r1 ? -r4 : +r4, r3 > r1 ? -r5 : +r5);
222 TestPrintf((const char*)printString.PtrZ());
224 r1 = FcDiff2Us(ThePerfTestResult[EPerfTestSqlMode] [EPerfTestSingleDelete]);
225 r2 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteSqlMode] [EPerfTestSingleDelete]);
226 r3 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteDefaultMode][EPerfTestSingleDelete]);
227 r4 = (TInt)((Abs(r2 - r1) * 100.0) / r1);
228 r5 = (TInt)((Abs(r3 - r1) * 100.0) / r1);
229 printString.Format(_L8("##Single Delete: %8dus %8dus %8dus %8d%%%% %8d%%%%\r\n"), r1, r2, r3, r2 > r1 ? -r4 : +r4, r3 > r1 ? -r5 : +r5);
230 TestPrintf((const char*)printString.PtrZ());
232 r1 = FcDiff2Us(ThePerfTestResult[EPerfTestSqlMode] [EPerfTestSingleSelect]);
233 r2 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteSqlMode] [EPerfTestSingleSelect]);
234 r3 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteDefaultMode][EPerfTestSingleSelect]);
235 r4 = (TInt)((Abs(r2 - r1) * 100.0) / r1);
236 r5 = (TInt)((Abs(r3 - r1) * 100.0) / r1);
237 printString.Format(_L8("##Single Select: %8dus %8dus %8dus %8d%%%% %8d%%%%\r\n"), r1, r2, r3, r2 > r1 ? -r4 : +r4, r3 > r1 ? -r5 : +r5);
238 TestPrintf((const char*)printString.PtrZ());
241 ///////////////////////////////////////////////////////////////////////////////////////
243 static void CreateTestDir()
246 TInt err = fs.Connect();
247 TEST2(err, KErrNone);
249 err = fs.MkDir(KTestDir);
250 TEST(err == KErrNone || err == KErrAlreadyExists);
252 err = fs.CreatePrivatePath(EDriveC);
253 TEST(err == KErrNone || err == KErrAlreadyExists);
258 ///////////////////////////////////////////////////////////////////////////////////////
260 static void CreateTestDatabase()
262 RSqlDatabase::Delete(KTestDbName);
264 _LIT8(KConfigStr, "encoding=\"UTF-8\"");
265 TInt err = TheDb.Create(KTestDbName, &KConfigStr);
266 TEST2(err, KErrNone);
268 err = TheDb.Exec(_L8("CREATE TABLE Tbl(I INTEGER PRIMARY KEY, I64 BIGINT, D DOUBLE, T TEXT, B BINARY)"));
274 ///////////////////////////////////////////////////////////////////////////////////////
275 //////////////////// SQL server tests ///////////////////////////
276 ///////////////////////////////////////////////////////////////////////////////////////
279 @SYMTestCaseID SYSLIB-SQLITE3-UT-4010
280 @SYMTestCaseDesc SQL server multi-insert performance test.
281 The test inserts 1000 records in a single transaction and stores
282 the execution time for later use (comparison and printing).
283 @SYMTestPriority High
284 @SYMTestActions SQL server multi-insert performance test.
285 @SYMTestExpectedResults Test must not fail
288 static void SqlServerMultiInsertTest(const char aInsertSql[], TInt aInsertRecCnt)
290 TestNext(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4010 ");
291 (void)KillProcess(KSqlSrvName);
293 TInt err = TheDb.Open(KTestDbName);
294 TEST2(err, KErrNone);
297 err = stmt.Prepare(TheDb, TPtrC8((const TUint8*)aInsertSql));
298 TEST2(err, KErrNone);
300 TUint32 fc = FastCounterValue();
301 err = TheDb.Exec(_L8("BEGIN"));
304 for(TInt i=0;i<aInsertRecCnt;++i)
306 err = stmt.BindInt(0, i + 1);
307 TEST2(err, KErrNone);
311 TEST2(err, KErrNone);
314 err = TheDb.Exec(_L8("COMMIT"));
316 StorePerfTestResult(EPerfTestSqlMode, EPerfTestMultiInsert, FastCounterValue() - fc);
322 static void FormatSqlStmt(TDes8& aSqlBuf, const char aSql[], TInt aRecIds[], TInt aRecCnt)
324 aSqlBuf.Copy(TPtrC8((const TUint8*)aSql));
325 aSqlBuf.Append(_L8("("));
326 for(TInt i=0;i<aRecCnt;++i)
328 aSqlBuf.AppendNum((TInt64)aRecIds[i]);
329 aSqlBuf.Append(_L8(","));
331 aSqlBuf.SetLength(aSqlBuf.Length() - 1);
332 aSqlBuf.Append(_L8(")"));
336 @SYMTestCaseID SYSLIB-SQLITE3-UT-4011
337 @SYMTestCaseDesc SQL server multi-update performance test.
338 The test updates 100 randomly chosen records and stores
339 the execution time for later use (comparison and printing).
340 @SYMTestPriority High
341 @SYMTestActions SQL server multi-update performance test.
342 @SYMTestExpectedResults Test must not fail
345 static void SqlServerMultiUpdateTest(const char aUpdateSql[], TInt aUpdateRecIds[], TInt aUpdateRecCnt)
347 TestNext(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4011 ");
348 (void)KillProcess(KSqlSrvName);
350 TInt err = TheDb.Open(KTestDbName);
351 TEST2(err, KErrNone);
353 FormatSqlStmt(TheSqlBuf, aUpdateSql, aUpdateRecIds, aUpdateRecCnt);
355 TUint32 fc = FastCounterValue();
356 err = TheDb.Exec(TheSqlBuf);
357 StorePerfTestResult(EPerfTestSqlMode, EPerfTestMultiUpdate, FastCounterValue() - fc);
358 TEST2(err, aUpdateRecCnt);
364 @SYMTestCaseID SYSLIB-SQLITE3-UT-4012
365 @SYMTestCaseDesc SQL server multi-delete performance test.
366 The test deletes 100 randomly chosen records and stores
367 the execution time for later use (comparison and printing).
368 @SYMTestPriority High
369 @SYMTestActions SQL server multi-delete performance test.
370 @SYMTestExpectedResults Test must not fail
373 static void SqlServerMultiDeleteTest(const char aDeleteSql[], TInt aDeleteRecIds[], TInt aDeleteRecCnt)
375 TestNext(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4012 ");
376 (void)KillProcess(KSqlSrvName);
378 TInt err = TheDb.Open(KTestDbName);
379 TEST2(err, KErrNone);
381 FormatSqlStmt(TheSqlBuf, aDeleteSql, aDeleteRecIds, aDeleteRecCnt);
383 TUint32 fc = FastCounterValue();
384 err = TheDb.Exec(TheSqlBuf);
385 StorePerfTestResult(EPerfTestSqlMode, EPerfTestMultiDelete, FastCounterValue() - fc);
386 TEST2(err, aDeleteRecCnt);
392 @SYMTestCaseID SYSLIB-SQLITE3-UT-4013
393 @SYMTestCaseDesc SQL server multi-select performance test.
394 The test selects 100 randomly chosen records and stores
395 the execution time for later use (comparison and printing).
396 @SYMTestPriority High
397 @SYMTestActions SQL server multi-select performance test.
398 @SYMTestExpectedResults Test must not fail
401 static void SqlServerMultiSelectTest(const char aSelectSql[], TInt aSelectRecIds[], TInt aSelectRecCnt)
403 TestNext(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4013 ");
404 (void)KillProcess(KSqlSrvName);
406 TInt err = TheDb.Open(KTestDbName);
407 TEST2(err, KErrNone);
409 FormatSqlStmt(TheSqlBuf, aSelectSql, aSelectRecIds, aSelectRecCnt);
412 err = stmt.Prepare(TheDb, TheSqlBuf);
413 TEST2(err, KErrNone);
415 TUint32 fc = FastCounterValue();
416 while((err = stmt.Next()) == KSqlAtRow)
418 TInt64 i64 = stmt.ColumnInt64(0);
420 TReal d = stmt.ColumnReal(1);
423 err = stmt.ColumnText(2, t);
424 TEST2(err, KErrNone);
427 err = stmt.ColumnBinary(3, b);
428 TEST2(err, KErrNone);
432 StorePerfTestResult(EPerfTestSqlMode, EPerfTestMultiSelect, FastCounterValue() - fc);
433 TEST2(err, KSqlAtEnd);
434 TEST2(recCnt, aSelectRecCnt);
441 @SYMTestCaseID SYSLIB-SQLITE3-UT-4014
442 @SYMTestCaseDesc SQL server single-insert performance test.
443 The test inserts one record and stores
444 the execution time for later use (comparison and printing).
445 @SYMTestPriority High
446 @SYMTestActions SQL server single-insert performance test.
447 @SYMTestExpectedResults Test must not fail
450 static void SqlServerSingleInsertTest(const char aSingleInsertSql[], TInt aInsertRecId)
452 TestNext(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4014 ");
453 (void)KillProcess(KSqlSrvName);
455 TInt err = TheDb.Open(KTestDbName);
456 TEST2(err, KErrNone);
458 TheSqlBuf.Format(TPtrC8((const TUint8*)aSingleInsertSql), aInsertRecId);
459 TUint32 fc = FastCounterValue();
460 err = TheDb.Exec(TheSqlBuf);
461 StorePerfTestResult(EPerfTestSqlMode, EPerfTestSingleInsert, FastCounterValue() - fc);
468 @SYMTestCaseID SYSLIB-SQLITE3-UT-4015
469 @SYMTestCaseDesc SQL server single-update performance test.
470 The test updates one randomly chosen record and stores
471 the execution time for later use (comparison and printing).
472 @SYMTestPriority High
473 @SYMTestActions SQL server single-update performance test.
474 @SYMTestExpectedResults Test must not fail
477 static void SqlServerSingleUpdateTest(const char aSingleUpdateSql[], TInt aUpdateRecId)
479 TestNext(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4015 ");
480 (void)KillProcess(KSqlSrvName);
482 TInt err = TheDb.Open(KTestDbName);
483 TEST2(err, KErrNone);
485 TheSqlBuf.Copy(TPtrC8((const TUint8*)aSingleUpdateSql));
486 TheSqlBuf.AppendNum((TInt64)aUpdateRecId);
487 TUint32 fc = FastCounterValue();
488 err = TheDb.Exec(TheSqlBuf);
489 StorePerfTestResult(EPerfTestSqlMode, EPerfTestSingleUpdate, FastCounterValue() - fc);
496 @SYMTestCaseID SYSLIB-SQLITE3-UT-4016
497 @SYMTestCaseDesc SQL server single-delete performance test.
498 The test deletes one randomly chosen record and stores
499 the execution time for later use (comparison and printing).
500 @SYMTestPriority High
501 @SYMTestActions SQL server single-delete performance test.
502 @SYMTestExpectedResults Test must not fail
505 static void SqlServerSingleDeleteTest(const char aSingleDeleteSql[], TInt aDeleteRecId)
507 TestNext(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4016 ");
508 (void)KillProcess(KSqlSrvName);
510 TInt err = TheDb.Open(KTestDbName);
511 TEST2(err, KErrNone);
513 TheSqlBuf.Copy(TPtrC8((const TUint8*)aSingleDeleteSql));
514 TheSqlBuf.AppendNum((TInt64)aDeleteRecId);
515 TUint32 fc = FastCounterValue();
516 err = TheDb.Exec(TheSqlBuf);
517 StorePerfTestResult(EPerfTestSqlMode, EPerfTestSingleDelete, FastCounterValue() - fc);
524 @SYMTestCaseID SYSLIB-SQLITE3-UT-4017
525 @SYMTestCaseDesc SQL server single-select performance test.
526 The test selects one randomly chosen record and stores
527 the execution time for later use (comparison and printing).
528 @SYMTestPriority High
529 @SYMTestActions SQL server single-select performance test.
530 @SYMTestExpectedResults Test must not fail
533 static void SqlServerSingleSelectTest(const char aSingleSelectSql[], TInt aSelectRecId)
535 TestNext(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4017 ");
536 (void)KillProcess(KSqlSrvName);
538 TInt err = TheDb.Open(KTestDbName);
539 TEST2(err, KErrNone);
541 TheSqlBuf.Copy(TPtrC8((const TUint8*)aSingleSelectSql));
542 TheSqlBuf.AppendNum((TInt64)aSelectRecId);
545 err = stmt.Prepare(TheDb, TheSqlBuf);
546 TEST2(err, KErrNone);
548 TUint32 fc = FastCounterValue();
549 while((err = stmt.Next()) == KSqlAtRow)
551 TInt64 i64 = stmt.ColumnInt64(0);
553 TReal d = stmt.ColumnReal(1);
556 err = stmt.ColumnText(2, t);
557 TEST2(err, KErrNone);
560 err = stmt.ColumnBinary(3, b);
561 TEST2(err, KErrNone);
565 StorePerfTestResult(EPerfTestSqlMode, EPerfTestSingleSelect, FastCounterValue() - fc);
566 TEST2(err, KSqlAtEnd);
573 ///////////////////////////////////////////////////////////////////////////////////////
574 ///////////////////////////////////////////////////////////////////////////////////////
575 ///////////////////////////////////////////////////////////////////////////////////////
577 static void DoSqlServerTests()
579 TestNext("SQL: Create the test database");
580 CreateTestDatabase();
584 msgbuf.Format(_L8("SQL: insert %d records in a single transaction"), KInsertRecCnt);
585 TestNext((const char*)msgbuf.PtrZ());
586 SqlServerMultiInsertTest(KMultiInsertSql, KInsertRecCnt);
588 msgbuf.Format(_L8("SQL: update %d records in a single transaction"), KUpdateRecCnt);
589 TestNext((const char*)msgbuf.PtrZ());
590 SqlServerMultiUpdateTest(KMultiUpdateSql, TheUpdateRecIds, KUpdateRecCnt);
592 msgbuf.Format(_L8("SQL: delete %d records in a single transaction"), KDeleteRecCnt);
593 TestNext((const char*)msgbuf.PtrZ());
594 SqlServerMultiDeleteTest(KMultiDeleteSql, TheDeleteRecIds, KDeleteRecCnt);
596 msgbuf.Format(_L8("SQL: select %d records"), KSelectRecCnt);
598 TestNext((const char*)msgbuf.PtrZ());
599 SqlServerMultiSelectTest(KMultiSelectSql, TheSelectRecIds, KSelectRecCnt);
601 TestNext("SQL: insert a single record");
602 SqlServerSingleInsertTest(KSingleInsertSql, TheInsertRecId);
604 TestNext("SQL: update a single record");
605 SqlServerSingleUpdateTest(KSingleUpdateSql, TheUpdateRecId);
607 TestNext("SQL: delete a single record");
608 SqlServerSingleDeleteTest(KSingleDeleteSql, TheDeleteRecId);
610 TestNext("SQL: select a single record");
611 SqlServerSingleSelectTest(KSingleSelectSql, TheSelectRecId);
613 (void)RSqlDatabase::Delete(KTestDbName);
616 static void DoSqliteLibraryTests(TPerfTestMode aPerfTestMode)
618 TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
620 SqliteInitialize(aPerfTestMode);
622 TestNext("SQLite: Create the test database");
623 CreateTestDatabase();
626 _LIT8(KSqliteConfigSql, "\"SQL\"");
627 _LIT8(KSqliteConfigDefault, "\"Default\"");
629 msgbuf.Format(_L8("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4018: SQLite, configuration: %S: insert %d records in a single transaction"),
630 aPerfTestMode == EPerfTestSqliteSqlMode ? &KSqliteConfigSql : &KSqliteConfigDefault, KInsertRecCnt);
631 TestNext((const char*)msgbuf.PtrZ());
632 SqliteMultiInsertTest(aPerfTestMode, KMultiInsertSql, KInsertRecCnt);
634 msgbuf.Format(_L8("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4019: SQLite, configuration: %S: update %d records in a single transaction"),
635 aPerfTestMode == EPerfTestSqliteSqlMode ? &KSqliteConfigSql : &KSqliteConfigDefault, KUpdateRecCnt);
636 TestNext((const char*)msgbuf.PtrZ());
637 SqliteMultiUpdateTest(aPerfTestMode, KMultiUpdateSql, TheUpdateRecIds, KUpdateRecCnt);
639 msgbuf.Format(_L8("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4020: SQLite, configuration: %S: delete %d records in a single transaction"),
640 aPerfTestMode == EPerfTestSqliteSqlMode ? &KSqliteConfigSql : &KSqliteConfigDefault, KDeleteRecCnt);
641 TestNext((const char*)msgbuf.PtrZ());
642 SqliteMultiDeleteTest(aPerfTestMode, KMultiDeleteSql, TheDeleteRecIds, KDeleteRecCnt);
644 msgbuf.Format(_L8("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4021: SQLite, configuration: %S: select %d records"),
645 aPerfTestMode == EPerfTestSqliteSqlMode ? &KSqliteConfigSql : &KSqliteConfigDefault, KSelectRecCnt);
646 TestNext((const char*)msgbuf.PtrZ());
647 SqliteMultiSelectTest(aPerfTestMode, KMultiSelectSql, TheSelectRecIds, KSelectRecCnt);
649 msgbuf.Format(_L8("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4022: SQLite, configuration: %S: insert a single record"),
650 aPerfTestMode == EPerfTestSqliteSqlMode ? &KSqliteConfigSql : &KSqliteConfigDefault);
651 TestNext((const char*)msgbuf.PtrZ());
652 SqliteSingleInsertTest(aPerfTestMode, KSingleInsertSql, TheInsertRecId);
654 msgbuf.Format(_L8("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4023: SQLite, configuration: %S: update a single record"),
655 aPerfTestMode == EPerfTestSqliteSqlMode ? &KSqliteConfigSql : &KSqliteConfigDefault);
656 TestNext((const char*)msgbuf.PtrZ());
657 SqliteSingleUpdateTest(aPerfTestMode, KSingleUpdateSql, TheUpdateRecId);
659 msgbuf.Format(_L8("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4024: SQLite, configuration: %S: delete a single record"),
660 aPerfTestMode == EPerfTestSqliteSqlMode ? &KSqliteConfigSql : &KSqliteConfigDefault);
661 TestNext((const char*)msgbuf.PtrZ());
662 SqliteSingleDeleteTest(aPerfTestMode, KSingleDeleteSql, TheDeleteRecId);
664 msgbuf.Format(_L8("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4025: SQLite, configuration: %S: select a single record"),
665 aPerfTestMode == EPerfTestSqliteSqlMode ? &KSqliteConfigSql : &KSqliteConfigDefault);
666 TestNext((const char*)msgbuf.PtrZ());
667 SqliteSingleSelectTest(aPerfTestMode, KSingleSelectSql, TheSelectRecId);
669 (void)RSqlDatabase::Delete(KTestDbName);
671 SqliteFinalize(aPerfTestMode);
674 static TBool IdIn(TInt aId, const TInt aData[], TInt aDataSize)
677 TEST(aDataSize >= 0);
678 for(TInt i=0;i<aDataSize;++i)
689 static void VerifyGeneratedRecIds()
693 for(i=0;i<KUpdateRecCnt;++i)
695 TEST(TheUpdateRecIds[i] > 0 && TheUpdateRecIds[i] <= KInsertRecCnt);
696 TEST(!IdIn(TheUpdateRecIds[i], TheUpdateRecIds, i));
697 TEST(!IdIn(TheUpdateRecIds[i], TheDeleteRecIds, KDeleteRecCnt));
698 TEST(!IdIn(TheUpdateRecIds[i], TheSelectRecIds, KSelectRecCnt));
701 for(i=0;i<KDeleteRecCnt;++i)
703 TEST(TheDeleteRecIds[i] > 0 && TheDeleteRecIds[i] <= KInsertRecCnt);
704 TEST(!IdIn(TheDeleteRecIds[i], TheDeleteRecIds, i));
705 TEST(!IdIn(TheDeleteRecIds[i], TheUpdateRecIds, KUpdateRecCnt));
706 TEST(!IdIn(TheDeleteRecIds[i], TheSelectRecIds, KSelectRecCnt));
709 for(i=0;i<KSelectRecCnt;++i)
711 TEST(TheSelectRecIds[i] > 0 && TheSelectRecIds[i] <= KInsertRecCnt);
712 TEST(!IdIn(TheSelectRecIds[i], TheSelectRecIds, i));
713 TEST(!IdIn(TheSelectRecIds[i], TheUpdateRecIds, KUpdateRecCnt));
714 TEST(!IdIn(TheSelectRecIds[i], TheDeleteRecIds, KDeleteRecCnt));
717 TEST(TheInsertRecId > 0);
719 TEST(TheUpdateRecId > 0 && TheUpdateRecId <= KInsertRecCnt);
720 TEST(!IdIn(TheUpdateRecId, TheUpdateRecIds, KUpdateRecCnt));
721 TEST(!IdIn(TheUpdateRecId, TheDeleteRecIds, KDeleteRecCnt));
722 TEST(!IdIn(TheUpdateRecId, TheSelectRecIds, KSelectRecCnt));
724 TEST(TheDeleteRecId > 0 && TheDeleteRecId <= KInsertRecCnt);
725 TEST(!IdIn(TheDeleteRecId, TheUpdateRecIds, KUpdateRecCnt));
726 TEST(!IdIn(TheDeleteRecId, TheDeleteRecIds, KDeleteRecCnt));
727 TEST(!IdIn(TheDeleteRecId, TheSelectRecIds, KSelectRecCnt));
729 TEST(TheSelectRecId > 0 && TheSelectRecId <= KInsertRecCnt);
730 TEST(!IdIn(TheSelectRecId, TheUpdateRecIds, KUpdateRecCnt));
731 TEST(!IdIn(TheSelectRecId, TheDeleteRecIds, KDeleteRecCnt));
732 TEST(!IdIn(TheSelectRecId, TheSelectRecIds, KSelectRecCnt));
735 static void GenerateTestRecIds()
739 TInt64 seed = now.Int64();
743 for(i=0;i<KUpdateRecCnt;)
745 TInt id = Math::Rand(seed) % KInsertRecCnt;
746 if(id > 0 && !IdIn(id, TheUpdateRecIds, i))
748 TheUpdateRecIds[i++] = id;
752 for(i=0;i<KDeleteRecCnt;)
754 TInt id = Math::Rand(seed) % KInsertRecCnt;
755 if(id > 0 && !IdIn(id, TheDeleteRecIds, i) && !IdIn(id, TheUpdateRecIds, KUpdateRecCnt))
757 TheDeleteRecIds[i++] = id;
761 for(i=0;i<KSelectRecCnt;)
763 TInt id = Math::Rand(seed) % KInsertRecCnt;
764 if(id > 0 && !IdIn(id, TheSelectRecIds, i) && !IdIn(id, TheUpdateRecIds, KUpdateRecCnt) &&
765 !IdIn(id, TheDeleteRecIds, KDeleteRecCnt))
767 TheSelectRecIds[i++] = id;
771 TheInsertRecId = KInsertRecCnt + 1;
775 TInt id = Math::Rand(seed) % KInsertRecCnt;
776 if(id > 0 && !IdIn(id, TheUpdateRecIds, KUpdateRecCnt) && !IdIn(id, TheDeleteRecIds, KDeleteRecCnt) &&
777 !IdIn(id, TheSelectRecIds, KSelectRecCnt))
786 TInt id = Math::Rand(seed) % KInsertRecCnt;
787 if(id > 0 && id != TheUpdateRecId && !IdIn(id, TheUpdateRecIds, KUpdateRecCnt) &&
788 !IdIn(id, TheDeleteRecIds, KDeleteRecCnt) && !IdIn(id, TheSelectRecIds, KSelectRecCnt))
797 TInt id = Math::Rand(seed) % KInsertRecCnt;
798 if(id > 0 && id != TheUpdateRecId && id != TheDeleteRecId && !IdIn(id, TheUpdateRecIds, KUpdateRecCnt) &&
799 !IdIn(id, TheDeleteRecIds, KDeleteRecCnt) &&
800 !IdIn(id, TheSelectRecIds, KSelectRecCnt))
808 static void DoTests()
810 TestStart("Get fast counter frequency");
811 GetFastCounterFrequency();
813 TestNext("Generate test record ids");
814 GenerateTestRecIds();
816 TestNext("Verify generated test record ids");
817 VerifyGeneratedRecIds();
820 (void)KillProcess(KSqlSrvName);
822 DoSqliteLibraryTests(EPerfTestSqliteDefaultMode);
824 DoSqliteLibraryTests(EPerfTestSqliteSqlMode);
826 PrintPerfTestResults();
834 CTrapCleanup* tc = CTrapCleanup::New();
850 User::Heap().Check();