Update contrib.
2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
28 #include "t_sqliteperf.h"
30 static sqlite3* TheDb2 = 0;
32 static char TheSqlBuf2[2000];
34 #define UNUSED_VAR(a) (a) = (a)
36 /* ///////////////////////////////////////////////////////////////////////////////////// */
38 static void TestCleanup()
42 sqlite3_close(TheDb2);
45 (void)remove(TestDbName());
48 /* ///////////////////////////////////////////////////////////////////////////////////// */
49 /* Test macros and functions */
51 static void Check1(int aValue, int aLine)
57 const char* errmsg = sqlite3_errmsg(TheDb2);
58 PrintS("*** SQLITE error message: %s\r\n", errmsg);
61 PrintI("*** Test check failed! Line=%d\r\n", aLine);
65 static void Check2(int aValue, int aExpected, int aLine)
67 if(aValue != aExpected)
71 const char* errmsg = sqlite3_errmsg(TheDb2);
72 PrintS("*** SQLITE error message: %s\r\n", errmsg);
75 PrintIII("*** Test check failed! Line=%d. Expected error: %d, got: %d\r\n", aLine, aExpected, aValue);
79 #define TEST(arg) Check1((arg), __LINE__)
80 #define TEST2(aValue, aExpected) Check2(aValue, aExpected, __LINE__)
82 /* ///////////////////////////////////////////////////////////////////////////////////// */
84 //"PRAGMA cache_size=1024" and "PRAGMA locking_mode=EXCLUSIVE" statements executed only if
85 //aPerfTestMode is EPerfTestSqliteMode (to match the Symbian SQL build time settings of SQLite)
86 static void ExecSqliteConfig(TPerfTestMode aPerfTestMode)
88 TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
89 if(aPerfTestMode == EPerfTestSqliteSqlMode)
92 err = sqlite3_exec(TheDb2, "PRAGMA cache_size=1024", 0, 0, 0);
93 TEST2(err, SQLITE_OK);
94 err = sqlite3_exec(TheDb2, "PRAGMA locking_mode=EXCLUSIVE", 0, 0, 0);
95 TEST2(err, SQLITE_OK);
96 err = sqlite3_exec(TheDb2, "PRAGMA auto_vacuum=incremental", 0, 0, 0);
97 TEST2(err, SQLITE_OK);
98 err = sqlite3_exec(TheDb2, "PRAGMA journal_mode=PERSIST", 0, 0, 0);
99 TEST2(err, SQLITE_OK);
100 err = sqlite3_exec(TheDb2, "PRAGMA journal_size_limit=2048000", 0, 0, 0);
101 TEST2(err, SQLITE_OK);
105 /* ///////////////////////////////////////////////////////////////////////////////////// */
108 @SYMTestCaseID SYSLIB-SQLITE3-UT-4018
109 @SYMTestCaseDesc SQLite library multi-insert performance test.
110 The test inserts 1000 records in a single transaction and stores
111 the execution time for later use (comparison and printing).
112 The results of this test case will be compared against the results of
113 the SYSLIB-SQLITE3-UT-4010 test case - "SQL server multi-insert performance test".
114 @SYMTestPriority High
115 @SYMTestActions SQLite library multi-insert performance test.
116 @SYMTestExpectedResults Test must not fail
119 void SqliteMultiInsertTest(TPerfTestMode aPerfTestMode, const char aInsertSql[], int aInsertRecCnt)
123 const char* tail = 0;
124 sqlite3_stmt* stmt = 0;
127 TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
129 err = sqlite3_open(TestDbName(), &TheDb2);
130 TEST2(err, SQLITE_OK);
131 ExecSqliteConfig(aPerfTestMode);
133 err = sqlite3_prepare(TheDb2, aInsertSql, -1, &stmt, &tail);
134 TEST2(err, SQLITE_OK);
136 fc = FastCounterValue();
137 err = sqlite3_exec(TheDb2, "BEGIN", 0, 0, 0);
138 TEST2(err, SQLITE_OK);
140 for(i=0;i<aInsertRecCnt;++i)
142 err = sqlite3_bind_int(stmt, 1, i + 1);
143 TEST2(err, SQLITE_OK);
145 err = sqlite3_step(stmt);
146 TEST2(err, SQLITE_DONE);
148 err = sqlite3_reset(stmt);
149 TEST2(err, SQLITE_OK);
152 err = sqlite3_exec(TheDb2, "COMMIT", 0, 0, 0);
153 TEST2(err, SQLITE_OK);
154 StorePerfTestResult(aPerfTestMode, EPerfTestMultiInsert, FastCounterValue() - fc);
156 sqlite3_finalize(stmt);
157 sqlite3_close(TheDb2);
161 static void FormatSqlStmt(char* aSqlBuf, const char aSql[], int aRecIds[], int aRecCnt)
164 strcpy(aSqlBuf, aSql);
165 strcat(aSqlBuf, "(");
166 for(i=0;i<aRecCnt;++i)
169 sprintf(tmp, "%d", aRecIds[i]);
170 strcat(aSqlBuf, tmp);
171 strcat(aSqlBuf, ",");
173 aSqlBuf[strlen(aSqlBuf) - 1] = ')';
177 @SYMTestCaseID SYSLIB-SQLITE3-UT-4019
178 @SYMTestCaseDesc SQLite library multi-update performance test.
179 The test updates 100 records and stores
180 the execution time for later use (comparison and printing).
181 The IDs of the updated records are exactly the same as the IDs of the updated
182 records, used by SYSLIB-SQLITE3-UT-4011 test case.
183 The results of this test case will be compared against the results of
184 the SYSLIB-SQLITE3-UT-4011 test case - "SQL server multi-update performance test".
185 @SYMTestPriority High
186 @SYMTestActions SQLite library multi-update performance test.
187 @SYMTestExpectedResults Test must not fail
190 void SqliteMultiUpdateTest(TPerfTestMode aPerfTestMode, const char aUpdateSql[], int aUpdateRecIds[], int aUpdateRecCnt)
195 TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
197 err = sqlite3_open(TestDbName(), &TheDb2);
198 TEST2(err, SQLITE_OK);
199 ExecSqliteConfig(aPerfTestMode);
201 FormatSqlStmt(TheSqlBuf2, aUpdateSql, aUpdateRecIds, aUpdateRecCnt);
203 fc = FastCounterValue();
204 err = sqlite3_exec(TheDb2, TheSqlBuf2, 0, 0, 0);
205 StorePerfTestResult(aPerfTestMode, EPerfTestMultiUpdate, FastCounterValue() - fc);
206 TEST2(err, SQLITE_OK);
208 sqlite3_close(TheDb2);
213 @SYMTestCaseID SYSLIB-SQLITE3-UT-4020
214 @SYMTestCaseDesc SQLite library multi-delete performance test.
215 The test deletes 100 records and stores
216 the execution time for later use (comparison and printing).
217 The IDs of the deleted records are exactly the same as the IDs of the deleted
218 records, used by SYSLIB-SQLITE3-UT-4012 test case.
219 The results of this test case will be compared against the results of
220 the SYSLIB-SQLITE3-UT-4012 test case - "SQL server multi-delete performance test".
221 @SYMTestPriority High
222 @SYMTestActions SQLite library multi-delete performance test.
223 @SYMTestExpectedResults Test must not fail
226 void SqliteMultiDeleteTest(TPerfTestMode aPerfTestMode, const char aDeleteSql[], int aDeleteRecIds[], int aDeleteRecCnt)
231 TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
233 err = sqlite3_open(TestDbName(), &TheDb2);
234 TEST2(err, SQLITE_OK);
235 ExecSqliteConfig(aPerfTestMode);
237 FormatSqlStmt(TheSqlBuf2, aDeleteSql, aDeleteRecIds, aDeleteRecCnt);
239 fc = FastCounterValue();
240 err = sqlite3_exec(TheDb2, TheSqlBuf2, 0, 0, 0);
241 StorePerfTestResult(aPerfTestMode, EPerfTestMultiDelete, FastCounterValue() - fc);
242 TEST2(err, SQLITE_OK);
244 sqlite3_close(TheDb2);
249 @SYMTestCaseID SYSLIB-SQLITE3-UT-4021
250 @SYMTestCaseDesc SQLite library multi-select performance test.
251 The test selects 100 records and stores
252 the execution time for later use (comparison and printing).
253 The IDs of the selected records are exactly the same as the IDs of the selected
254 records, used by SYSLIB-SQLITE3-UT-4013 test case.
255 The results of this test case will be compared against the results of
256 the SYSLIB-SQLITE3-UT-4013 test case - "SQL server multi-select performance test".
257 @SYMTestPriority High
258 @SYMTestActions SQLite library multi-select performance test.
259 @SYMTestExpectedResults Test must not fail
262 void SqliteMultiSelectTest(TPerfTestMode aPerfTestMode, const char aSelectSql[], int aSelectRecIds[], int aSelectRecCnt)
265 const char* tail = 0;
266 sqlite3_stmt* stmt = 0;
270 TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
272 err = sqlite3_open(TestDbName(), &TheDb2);
273 TEST2(err, SQLITE_OK);
274 ExecSqliteConfig(aPerfTestMode);
276 FormatSqlStmt(TheSqlBuf2, aSelectSql, aSelectRecIds, aSelectRecCnt);
278 err = sqlite3_prepare(TheDb2, TheSqlBuf2, -1, &stmt, &tail);
279 TEST2(err, SQLITE_OK);
281 fc = FastCounterValue();
282 while((err = sqlite3_step(stmt)) == SQLITE_ROW)
286 const unsigned short* t;
287 const unsigned char* b;
289 i64 = sqlite3_column_int64(stmt, 0);
291 d = sqlite3_column_double(stmt, 1);
293 t = (const unsigned short*)sqlite3_column_text16(stmt, 2);
295 b = (const unsigned char*)sqlite3_column_blob(stmt, 3);
299 StorePerfTestResult(aPerfTestMode, EPerfTestMultiSelect, FastCounterValue() - fc);
300 TEST2(err, SQLITE_DONE);
301 TEST2(recCnt, aSelectRecCnt);
303 sqlite3_finalize(stmt);
304 sqlite3_close(TheDb2);
309 @SYMTestCaseID SYSLIB-SQLITE3-UT-4022
310 @SYMTestCaseDesc SQLite library single-insert performance test.
311 The test inserts one record and stores
312 the execution time for later use (comparison and printing).
313 The ID of the inserted record is exactly the same as the ID of the inserted
314 record, used by SYSLIB-SQLITE3-UT-4014 test case.
315 The results of this test case will be compared against the results of
316 the SYSLIB-SQLITE3-UT-4014 test case - "SQL server single-insert performance test".
317 @SYMTestPriority High
318 @SYMTestActions SQLite library single-insert performance test.
319 @SYMTestExpectedResults Test must not fail
322 void SqliteSingleInsertTest(TPerfTestMode aPerfTestMode, const char aSingleInsertSql[], TInt aInsertRecId)
327 TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
329 err = sqlite3_open(TestDbName(), &TheDb2);
330 TEST2(err, SQLITE_OK);
331 ExecSqliteConfig(aPerfTestMode);
333 sprintf(TheSqlBuf2, aSingleInsertSql, aInsertRecId);
334 fc = FastCounterValue();
335 err = sqlite3_exec(TheDb2, TheSqlBuf2, 0, 0, 0);
336 StorePerfTestResult(aPerfTestMode, EPerfTestSingleInsert, FastCounterValue() - fc);
337 TEST2(err, SQLITE_OK);
339 sqlite3_close(TheDb2);
344 @SYMTestCaseID SYSLIB-SQLITE3-UT-4023
345 @SYMTestCaseDesc SQLite library single-update performance test.
346 The test updates one record and stores
347 the execution time for later use (comparison and printing).
348 The ID of the updated record is exactly the same as the ID of the updated
349 record, used by SYSLIB-SQLITE3-UT-4015 test case.
350 The results of this test case will be compared against the results of
351 the SYSLIB-SQLITE3-UT-4015 test case - "SQL server single-update performance test".
352 @SYMTestPriority High
353 @SYMTestActions SQLite library single-update performance test.
354 @SYMTestExpectedResults Test must not fail
357 void SqliteSingleUpdateTest(TPerfTestMode aPerfTestMode, const char aSingleUpdateSql[], TInt aUpdateRecId)
363 TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
365 err = sqlite3_open(TestDbName(), &TheDb2);
366 TEST2(err, SQLITE_OK);
367 ExecSqliteConfig(aPerfTestMode);
369 sprintf(tmp, "%d", aUpdateRecId);
370 strcpy(TheSqlBuf2, aSingleUpdateSql);
371 strcat(TheSqlBuf2, tmp);
372 fc = FastCounterValue();
373 err = sqlite3_exec(TheDb2, TheSqlBuf2, 0, 0, 0);
374 StorePerfTestResult(aPerfTestMode, EPerfTestSingleUpdate, FastCounterValue() - fc);
375 TEST2(err, SQLITE_OK);
377 sqlite3_close(TheDb2);
382 @SYMTestCaseID SYSLIB-SQLITE3-UT-4024
383 @SYMTestCaseDesc SQLite library single-delete performance test.
384 The test deletes one record and stores
385 the execution time for later use (comparison and printing).
386 The ID of the deleted record is exactly the same as the ID of the deleted
387 record, used by SYSLIB-SQLITE3-UT-4016 test case.
388 The results of this test case will be compared against the results of
389 the SYSLIB-SQLITE3-UT-4016 test case - "SQL server single-delete performance test".
390 @SYMTestPriority High
391 @SYMTestActions SQLite library single-delete performance test.
392 @SYMTestExpectedResults Test must not fail
395 void SqliteSingleDeleteTest(TPerfTestMode aPerfTestMode, const char aSingleDeleteSql[], TInt aDeleteRecId)
401 TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
403 err = sqlite3_open(TestDbName(), &TheDb2);
404 TEST2(err, SQLITE_OK);
405 ExecSqliteConfig(aPerfTestMode);
407 sprintf(tmp, "%d", aDeleteRecId);
408 strcpy(TheSqlBuf2, aSingleDeleteSql);
409 strcat(TheSqlBuf2, tmp);
410 fc = FastCounterValue();
411 err = sqlite3_exec(TheDb2, TheSqlBuf2, 0, 0, 0);
412 StorePerfTestResult(aPerfTestMode, EPerfTestSingleDelete, FastCounterValue() - fc);
413 TEST2(err, SQLITE_OK);
415 sqlite3_close(TheDb2);
420 @SYMTestCaseID SYSLIB-SQLITE3-UT-4025
421 @SYMTestCaseDesc SQLite library single-select performance test.
422 The test selects one record and stores
423 the execution time for later use (comparison and printing).
424 The ID of the selected record is exactly the same as the ID of the selected
425 record, used by SYSLIB-SQLITE3-UT-4017 test case.
426 The results of this test case will be compared against the results of
427 the SYSLIB-SQLITE3-UT-4017 test case - "SQL server single-select performance test".
428 @SYMTestPriority High
429 @SYMTestActions SQLite library single-select performance test.
430 @SYMTestExpectedResults Test must not fail
433 void SqliteSingleSelectTest(TPerfTestMode aPerfTestMode, const char aSingleSelectSql[], TInt aSelectRecId)
436 const char* tail = 0;
437 sqlite3_stmt* stmt = 0;
442 TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
444 err = sqlite3_open(TestDbName(), &TheDb2);
445 TEST2(err, SQLITE_OK);
446 ExecSqliteConfig(aPerfTestMode);
448 sprintf(tmp, "%d", aSelectRecId);
449 strcpy(TheSqlBuf2, aSingleSelectSql);
450 strcat(TheSqlBuf2, tmp);
452 err = sqlite3_prepare(TheDb2, TheSqlBuf2, -1, &stmt, &tail);
453 TEST2(err, SQLITE_OK);
455 fc = FastCounterValue();
456 while((err = sqlite3_step(stmt)) == SQLITE_ROW)
460 const unsigned short* t;
461 const unsigned char* b;
463 i64 = sqlite3_column_int64(stmt, 0);
465 d = sqlite3_column_double(stmt, 1);
467 t = (const unsigned short*)sqlite3_column_text16(stmt, 2);
469 b = (const unsigned char*)sqlite3_column_blob(stmt, 3);
473 StorePerfTestResult(aPerfTestMode, EPerfTestSingleSelect, FastCounterValue() - fc);
474 TEST2(err, SQLITE_DONE);
477 sqlite3_finalize(stmt);
478 sqlite3_close(TheDb2);
482 void SqliteInitialize(TPerfTestMode aMode)
484 if(aMode == EPerfTestSqliteSqlMode)
486 const TInt KSqliteLookAsideCellSize = 128;
487 const TInt KSqliteLookAsideCellCount = 512;
489 err = sqlite3_config(SQLITE_CONFIG_LOOKASIDE, KSqliteLookAsideCellSize, KSqliteLookAsideCellCount);
490 TEST2(err, SQLITE_OK);
491 sqlite3_soft_heap_limit(1024 * 1024);
492 err = sqlite3_enable_shared_cache(1);
493 TEST2(err, SQLITE_OK);
497 void SqliteFinalize(TPerfTestMode aMode)
499 if(aMode == EPerfTestSqliteSqlMode)
501 (void)sqlite3_enable_shared_cache(0);
502 sqlite3_soft_heap_limit(0);