Update contrib.
2 * Copyright (c) 2007-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.
27 #include <semaphore.h>
30 #include "sqliteTestUtl.h"
32 static sqlite3* TheDb = 0;
33 static sqlite3* TheDb2 = 0;
34 static sqlite3_stmt* TheStmt = 0;
35 static sqlite3_stmt* TheStmt2 = 0;
36 const char* const TheTestDirName = "c:\\test";
37 const char* const TheTestDbName = "c:\\test\\a1.db";
39 const int KTestThreadCount = 2;
40 static int TheInsertRecCnt[KTestThreadCount] = {0, 0};
41 static int TheLockErrCnt[KTestThreadCount] = {0, 0};
42 const char* const KThreadNames[KTestThreadCount] = {"THRD1", "THRD2"};
43 static sem_t TheSemaphores[KTestThreadCount];
45 #define UNUSED_ARG(a) (a) = (a)
47 /* ///////////////////////////////////////////////////////////////////////////////////// */
49 /* The standard C library does not have abs() function with a double argument */
50 static double dabs(double arg)
52 return arg < 0.0 ? -arg : arg;
55 /* ///////////////////////////////////////////////////////////////////////////////////// */
57 static void TestEnvDestroy()
61 (void)sqlite3_finalize(TheStmt2);
66 (void)sqlite3_finalize(TheStmt);
71 (void)sqlite3_close(TheDb2);
76 (void)sqlite3_close(TheDb);
79 (void)remove(TheTestDbName);
82 /* ///////////////////////////////////////////////////////////////////////////////////// */
83 /* Test macros and functions */
85 static void Check1(int aValue, int aLine)
91 const char* errmsg = sqlite3_errmsg(TheDb);
92 PrintS("*** DB1: SQLITE error message: %s\r\n", errmsg);
96 const char* errmsg = sqlite3_errmsg(TheDb2);
97 PrintS("*** DB2: SQLITE error message: %s\r\n", errmsg);
99 PrintI("*** Test check failed! Line=%d\r\n", aLine);
105 static void Check2(int aValue, int aExpected, int aLine)
107 if(aValue != aExpected)
111 const char* errmsg = sqlite3_errmsg(TheDb);
112 PrintS("*** DB1: SQLITE error message: %s\r\n", errmsg);
116 const char* errmsg = sqlite3_errmsg(TheDb2);
117 PrintS("*** DB2: SQLITE error message: %s\r\n", errmsg);
119 PrintIII("*** Test check failed! Line=%d. Expected error: %d, got: %d\r\n", aLine, aExpected, aValue);
125 static void Check64(sqlite_int64 aValue, sqlite_int64 aExpected, int aLine)
127 if(aValue != aExpected)
131 const char* errmsg = sqlite3_errmsg(TheDb);
132 PrintS("*** DB1: SQLITE error message: %s\r\n", errmsg);
136 const char* errmsg = sqlite3_errmsg(TheDb2);
137 PrintS("*** DB2: SQLITE error message: %s\r\n", errmsg);
139 PrintII64I64("*** Test check failed! Line=%ld. Expected error: %ld, got: %d\r\n", aLine, aExpected, aValue);
144 #define TEST(arg) Check1((arg), __LINE__)
145 #define TEST2(aValue, aExpected) Check2(aValue, aExpected, __LINE__)
146 #define TEST64(aValue, aExpected) Check64(aValue, aExpected, __LINE__)
148 /* ///////////////////////////////////////////////////////////////////////////////////// */
150 static void TestEnvCreate()
153 (void)remove(TheTestDbName);
154 err = mkdir(TheTestDirName, S_IREAD | S_IWRITE);
159 TEST(err == 0 || err == EEXIST);
161 //Creating the private data cage directory here to suppress a capability warning
165 /* ///////////////////////////////////////////////////////////////////////////////////// */
168 static int exec_callback(void* udata, int argc, char** argv, char** colname)
177 static int authorizer_callback(void* udata, int optype, const char* name1, const char* name2, const char* name, const char* viewname)
184 UNUSED_ARG(viewname);
188 static int commit_hook(void* udata)
194 static void rollback_hook(void* udata)
199 static void update_hook(void* udata, int type, char const* dbname, char const* tblname, sqlite_int64 rowid)
208 /* ///////////////////////////////////////////////////////////////////////////////////// */
211 @SYMTestCaseID SYSLIB-SQLITE3-UT-4001
212 @SYMTestCaseDesc sqlite3_exec() tests.
213 List of called SQLITE3 functions:
217 - sqlite3_last_insert_rowid;
219 - sqlite3_total_changes;
220 - sqlite3_get_autocommit;
221 @SYMTestPriority High
222 @SYMTestActions sqlite3_exec() tests.
223 @SYMTestExpectedResults Test must not fail
226 static void TestExec()
229 sqlite_int64 lastrowid;
234 err = sqlite3_exec(TheDb, "CREATE TABLE A(F1 INTEGER, F2 BIGINT, F3 REAL, F4 TEXT, F5 BLOB)", &exec_callback, 0, 0);
235 TEST2(err, SQLITE_OK);
237 err = sqlite3_exec(TheDb, "INSERT INTO A VALUES(1, 1234567891234, 56.12, 'TEXT', x'313233343536')", &exec_callback, 0, 0);
238 TEST2(err, SQLITE_OK);
240 err = sqlite3_errcode(TheDb);
241 TEST2(err, SQLITE_OK);
243 (void)sqlite3_errmsg(TheDb);
245 lastrowid = sqlite3_last_insert_rowid(TheDb);
246 TEST(lastrowid > 0LL);
248 val = sqlite3_changes(TheDb);
251 val = sqlite3_total_changes(TheDb);
254 val = sqlite3_get_autocommit(TheDb);
258 /* ///////////////////////////////////////////////////////////////////////////////////// */
260 static void DoTestStatement()
265 const unsigned char* textval;
266 const unsigned short* textval16;
267 const unsigned char* blob;
268 const char *coltype, *colname;
269 const unsigned short *coltype16, *colname16;
275 val = sqlite3_column_count(TheStmt);
278 db = sqlite3_db_handle(TheStmt);
279 TEST2((unsigned int)db, (unsigned int)TheDb);
281 err = sqlite3_step(TheStmt);
282 TEST2(err, SQLITE_ROW);
284 #ifdef SQLITE_ENABLE_COLUMN_METADATA
285 sqlite3_column_database_name(TheStmt, 0);
286 sqlite3_column_database_name16(TheStmt, 1);
287 sqlite3_column_table_name(TheStmt, 2);
288 sqlite3_column_table_name16(TheStmt, 3);
289 sqlite3_column_origin_name(TheStmt, 4);
290 sqlite3_column_origin_name16(TheStmt, 0);
293 coltype = sqlite3_column_decltype(TheStmt, 0);
294 TEST2(strcmp(coltype, "INTEGER"), 0);
296 coltype16 = (const unsigned short*)sqlite3_column_decltype16(TheStmt, 2);
297 TEST2(wcscmp(coltype16, L"REAL"), 0);
299 colname = sqlite3_column_name(TheStmt, 1);
300 TEST2(strcmp(colname, "F2"), 0);
302 colname16 = (const unsigned short *)sqlite3_column_name16(TheStmt, 4);
303 TEST2(wcscmp(colname16, L"F5"), 0);
305 val = sqlite3_column_int(TheStmt, 0);
308 val64 = sqlite3_column_int64(TheStmt, 1);
309 TEST64(val64, 1234567891234LL);
311 dblval = sqlite3_column_double(TheStmt, 2);
312 TEST(dabs(dblval - 56.12) < 0.00001);
314 textval = sqlite3_column_text(TheStmt, 3);
315 TEST2(strcmp((const char*)textval, "TEXT"), 0);
317 textval16 = sqlite3_column_text16(TheStmt, 3);
318 TEST2(wcscmp(textval16, L"TEXT"), 0);
320 blob = (const unsigned char*)sqlite3_column_blob(TheStmt, 4);
321 TEST2(memcmp(blob, "123456", 6), 0);
323 err = sqlite3_step(TheStmt);
324 TEST2(err, SQLITE_DONE);
327 /* ///////////////////////////////////////////////////////////////////////////////////// */
330 @SYMTestCaseID SYSLIB-SQLITE3-UT-4002
331 @SYMTestCaseDesc Statement handle SQLITE3 tests.
332 List of called SQLITE3 functions:
334 - sqlite3_complete16;
337 - sqlite3_column_count;
340 - sqlite3_column_decltype;
341 - sqlite3_column_decltype16;
342 - sqlite3_column_name;
343 - sqlite3_column_name16;
344 - sqlite3_column_int;
345 - sqlite3_column_int64;
346 - sqlite3_column_double;
347 - sqlite3_column_text;
348 - sqlite3_column_text16;
349 - sqlite3_column_blob;
350 @SYMTestPriority High
351 @SYMTestActions Statement handle SQLITE3 tests.
352 @SYMTestExpectedResults Test must not fail
355 static void TestStatement1()
357 const char* tail = 0;
363 err = sqlite3_complete("SELECT * FROM A;");
366 err = sqlite3_complete16(L"SELECT * FROM A;");
369 err = sqlite3_prepare(TheDb, "SELECT * FROM A", -1, &TheStmt, &tail);
370 TEST2(err, SQLITE_OK);
371 TEST((unsigned int)TheStmt);
372 TEST(!tail || strlen(tail) == 0);
376 err = sqlite3_finalize(TheStmt);
377 TEST2(err, SQLITE_OK);
381 /* ///////////////////////////////////////////////////////////////////////////////////// */
384 @SYMTestCaseID SYSLIB-SQLITE3-UT-4003
385 @SYMTestCaseDesc Statement handle SQLITE3 tests.
386 List of called SQLITE3 functions:
390 - sqlite3_bind_int64;
391 - sqlite3_bind_double;
393 @SYMTestPriority High
394 @SYMTestActions Statement handle SQLITE3 tests.
395 @SYMTestExpectedResults Test must not fail
398 static void TestStatement2()
400 const char* tail = 0;
406 err = sqlite3_prepare(TheDb, "SELECT * FROM A WHERE F1=? AND F2=? AND F3<? AND F4=?", -1, &TheStmt, &tail);
407 TEST2(err, SQLITE_OK);
408 TEST((unsigned int)TheStmt);
409 TEST(!tail || strlen(tail) == 0);
411 err = sqlite3_bind_int(TheStmt, 1, 1);
412 TEST2(err, SQLITE_OK);
414 err = sqlite3_bind_int64(TheStmt, 2, 1234567891234LL);
415 TEST2(err, SQLITE_OK);
417 err = sqlite3_bind_double(TheStmt, 3, 70.0);
418 TEST2(err, SQLITE_OK);
420 err = sqlite3_bind_text(TheStmt, 4, "TEXT", -1, SQLITE_STATIC);
421 TEST2(err, SQLITE_OK);
425 err = sqlite3_finalize(TheStmt);
426 TEST2(err, SQLITE_OK);
430 /* ///////////////////////////////////////////////////////////////////////////////////// */
433 @SYMTestCaseID PDS-SQLITE3-UT-4038
434 @SYMTestCaseDesc Database handle SQLITE3 tests.
435 List of called SQLITE3 functions:
437 - sqlite3_file_control;
440 - sqlite3_randomness;
441 @SYMTestPriority High
442 @SYMTestActions Database handle SQLITE3 tests.
443 @SYMTestExpectedResults Test must not fail
446 static void TestSqliteApi2()
452 sqlite3_stmt* next = 0;
454 unsigned char buf[10];
458 err = sqlite3_db_status(TheDb, SQLITE_DBSTATUS_LOOKASIDE_USED, &used, &high, 0);
459 TEST2(err, SQLITE_OK);
460 PrintI("Lookaside slots: %d\r\n", used);
461 PrintI("Max used lookaside slots: %d\r\n", high);
463 err = sqlite3_file_control(TheDb, "main", SQLITE_FCNTL_LOCKSTATE, &lock);
464 TEST2(err, SQLITE_OK);
465 TEST2(lock, SQLITE_LOCK_NONE);
467 limit = sqlite3_limit(TheDb, SQLITE_LIMIT_LENGTH, -1);
470 next = sqlite3_next_stmt(TheDb, 0);
473 memset(buf, 0, sizeof(buf));
474 sqlite3_randomness(8, buf);
476 memset(buf, 0, sizeof(buf));
477 sqlite3_randomness(7, buf);
479 memset(buf, 0, sizeof(buf));
480 sqlite3_randomness(3, buf);
484 /* ///////////////////////////////////////////////////////////////////////////////////// */
487 @SYMTestCaseID PDS-SQLITE3-UT-4039
488 @SYMTestCaseDesc SQLITE3 - blob API tests.
489 List of called SQLITE3 functions:
490 - sqlite3_bind_zeroblob;
491 - sqlite3_blob_bytes;
492 - sqlite3_blob_close;
495 - sqlite3_blob_write;
497 @SYMTestPriority High
498 @SYMTestActions SQLITE3 - blob API tests.
499 @SYMTestExpectedResults Test must not fail
502 static void TestSqliteBlobApi()
505 const char* tail = 0;
506 sqlite3_blob* blob = 0;
508 const char KBlobData[] = "ABCDEFGH";
510 const int KBlobLen = strlen(KBlobData);
511 const char* sql2 = 0;
512 const char KSqlFmt[] = "UPDATE BlobTbl SET B=:Prm WHERE ROWID=1";
517 /* Create the table, insert one record with a blob */
519 err = sqlite3_exec(TheDb, "CREATE TABLE BlobTbl(I INTEGER PRIMARY KEY, B BLOB)", 0, 0, 0);
520 TEST2(err, SQLITE_OK);
522 sprintf(sql, "INSERT INTO BlobTbl VALUES(1, zeroblob(%d))", KBlobLen);
523 err = sqlite3_exec(TheDb, sql, 0, 0, 0);
524 TEST2(err, SQLITE_OK);
526 err = sqlite3_prepare_v2(TheDb, KSqlFmt, -1, &TheStmt, &tail);
527 TEST2(err, SQLITE_OK);
530 sql2 = sqlite3_sql(TheStmt);
532 err = strcmp(sql2, KSqlFmt);
535 err = sqlite3_bind_zeroblob(TheStmt, 1, KBlobLen);
536 TEST2(err, SQLITE_OK);
538 err = sqlite3_step(TheStmt);
539 TEST2(err, SQLITE_DONE);
541 err = sqlite3_finalize(TheStmt);
542 TEST2(err, SQLITE_OK);
545 /* Open the blob and write to it */
547 err = sqlite3_blob_open(TheDb, "main", "BlobTbl", "B", 1, 1, &blob);
548 TEST2(err, SQLITE_OK);
551 bytes = sqlite3_blob_bytes(blob);
552 TEST2(bytes, KBlobLen);
554 err = sqlite3_blob_write(blob, KBlobData, KBlobLen, 0);
555 TEST2(err, SQLITE_OK);
557 err = sqlite3_blob_close(blob);
558 TEST2(err, SQLITE_OK);
561 /* Open the blob and read from it */
563 err = sqlite3_blob_open(TheDb, "main", "BlobTbl", "B", 1, 1, &blob);
564 TEST2(err, SQLITE_OK);
567 bytes = sqlite3_blob_bytes(blob);
568 TEST2(bytes, KBlobLen);
570 err = sqlite3_blob_read(blob, sql, KBlobLen, 0);
571 TEST2(err, SQLITE_OK);
574 err = sqlite3_blob_close(blob);
575 TEST2(err, SQLITE_OK);
578 err = strcmp(sql, KBlobData);
581 err = sqlite3_exec(TheDb, "DROP TABLE BlobTbl", 0, 0, 0);
582 TEST2(err, SQLITE_OK);
585 /* ///////////////////////////////////////////////////////////////////////////////////// */
588 @SYMTestCaseID PDS-SQLITE3-UT-4040
589 @SYMTestCaseDesc SQLITE3 - mutex API tests.
590 List of called SQLITE3 functions:
591 - sqlite3_mutex_alloc;
592 - sqlite3_mutex_enter;
593 - sqlite3_mutex_free;
594 - sqlite3_mutex_held;
595 - sqlite3_mutex_leave;
596 - sqlite3_mutex_notheld;
598 @SYMTestPriority High
599 @SYMTestActions SQLITE3 - mutex API tests.
600 @SYMTestExpectedResults Test must not fail
603 static void TestSqliteMutexApi()
605 sqlite3_mutex* mtx = 0;
611 for(type=SQLITE_MUTEX_FAST;type<=SQLITE_MUTEX_STATIC_LRU2;++type)
613 mtx = sqlite3_mutex_alloc(type);
616 err = sqlite3_mutex_try(mtx);
617 TEST(err == SQLITE_BUSY || err == SQLITE_OK);
619 sqlite3_mutex_enter(mtx);
621 sqlite3_mutex_leave(mtx);
623 if(type <= SQLITE_MUTEX_RECURSIVE)
625 sqlite3_mutex_free(mtx);
631 /* ///////////////////////////////////////////////////////////////////////////////////// */
634 @SYMTestCaseID SYSLIB-SQLITE3-UT-4004
635 @SYMTestCaseDesc Database handle SQLITE3 tests.
636 List of called SQLITE3 functions:
638 - sqlite3_initialize;
639 - sqlite3_threadsafe;
643 - sqlite3_libversion;
644 - sqlite3_libversion_number;
645 - sqlite3_set_authorizer;
646 - sqlite3_commit_hook;
647 - sqlite3_rollback_hook;
648 - sqlite3_update_hook;
651 @SYMTestPriority High
652 @SYMTestActions Database handle SQLITE3 tests.
653 @SYMTestExpectedResults Test must not fail
656 static void TestSqliteApi()
659 const char* libverstr = 0;
663 sqlite3_vfs* vfs = 0;
667 TestStart("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4004: Test \"sqlite3_config()\"");
668 err = sqlite3_config(SQLITE_CONFIG_MEMSTATUS, 0);
669 TEST2(err, SQLITE_OK);
671 TestNext("Test \"sqlite3_initialize()\"");
672 err = sqlite3_initialize();
673 TEST2(err, SQLITE_OK);
675 TestNext("Test \"sqlite3_threadsafe()\"");
676 threadSafe = sqlite3_threadsafe();
677 PrintI("SQLITE_THREADSAFE=%d\r\n", threadSafe);
679 vfs = sqlite3_vfs_find(0);
681 PrintS("Vfs name=\"%s\"\r\n", vfs->zName);
683 err = sqlite3_open(TheTestDbName, &TheDb);
684 TEST2(err, SQLITE_OK);
687 err = sqlite3_db_config(TheDb, SQLITE_DBCONFIG_LOOKASIDE, 0, 128, 100);
688 TEST2(err, SQLITE_OK);
690 libverstr = sqlite3_libversion();
691 libvernum = sqlite3_libversion_number();
692 PrintSI("SQLITE version: \"%s\", Number: %d\r\n", libverstr, libvernum);
694 err = sqlite3_set_authorizer(TheDb, &authorizer_callback, 0);
695 TEST2(err, SQLITE_OK);
697 prev = sqlite3_commit_hook(TheDb, &commit_hook, 0);
699 prev = sqlite3_rollback_hook(TheDb, &rollback_hook, 0);
701 prev = sqlite3_update_hook(TheDb, &update_hook, 0);
704 TestNext("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4001: Test \"sqlite3\" handle API");
706 TestNext("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4002: Test \"sqlite3_stmt\" handle API-1");
708 TestNext("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4003: Test \"sqlite3_stmt\" handle API-2");
710 TestNext("@SYMTestCaseID:PDS-SQLITE3-UT-4038: Test more sqlite3 API");
712 TestNext("@SYMTestCaseID:PDS-SQLITE3-UT-4039: Test blob API");
714 TestNext("@SYMTestCaseID:PDS-SQLITE3-UT-4040: Test mutex API");
715 TestSqliteMutexApi();
717 err = sqlite3_close(TheDb);
718 TEST2(err, SQLITE_OK);
721 TestNext("Test \"sqlite3_shutdown()\"");
722 err = sqlite3_shutdown();
723 TEST2(err, SQLITE_OK);
725 err = remove(TheTestDbName);
729 static void CreateTestDb()
733 err = sqlite3_open(TheTestDbName, &TheDb);
734 TEST2(err, SQLITE_OK);
737 err = sqlite3_exec(TheDb, "CREATE TABLE A(F1 INTEGER, F2 BIGINT, F3 REAL, F4 TEXT, F5 BLOB)", &exec_callback, 0, 0);
738 TEST2(err, SQLITE_OK);
740 err = sqlite3_exec(TheDb, "INSERT INTO A VALUES(1, 1234567891234, 56.12, 'TEXT', x'313233343536')", &exec_callback, 0, 0);
741 TEST2(err, SQLITE_OK);
743 err = sqlite3_close(TheDb);
744 TEST2(err, SQLITE_OK);
749 @SYMTestCaseID SYSLIB-SQLITE3-UT-4005
750 @SYMTestCaseDesc Two database connections in the same thread - "read operations" test.
751 The test creates two connections to the same database in the same thread.
752 Both connections prepare a SELECT statement and call sqlite3_step() each
753 thus testing that the file locking in the OS porting layer works properly
754 (the SQLite library permits multiple connections to read from the database simultaneously,
755 using a shared file locking mode).
756 List of called SQLITE3 functions:
762 @SYMTestPriority High
763 @SYMTestActions Two database connections in the same thread - "read operations" test.
764 @SYMTestExpectedResults Test must not fail
767 static void TwoReadersTest()
770 const char* tail = 0;
772 TestNext("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4005: Test two readers");
776 err = sqlite3_open(TheTestDbName, &TheDb);
777 TEST2(err, SQLITE_OK);
780 err = sqlite3_open(TheTestDbName, &TheDb2);
781 TEST2(err, SQLITE_OK);
785 err = sqlite3_prepare(TheDb, "SELECT * FROM A", -1, &TheStmt, &tail);
786 TEST2(err, SQLITE_OK);
787 TEST((unsigned int)TheStmt);
788 TEST(!tail || strlen(tail) == 0);
790 err = sqlite3_prepare(TheDb2, "SELECT * FROM A", -1, &TheStmt2, &tail);
791 TEST2(err, SQLITE_OK);
792 TEST((unsigned int)TheStmt2);
793 TEST(!tail || strlen(tail) == 0);
795 err = sqlite3_step(TheStmt);
796 TEST2(err, SQLITE_ROW);
798 err = sqlite3_step(TheStmt2);
799 TEST2(err, SQLITE_ROW);
803 (void)sqlite3_finalize(TheStmt2);
806 (void)sqlite3_finalize(TheStmt);
809 err = sqlite3_close(TheDb2);
810 TEST2(err, SQLITE_OK);
813 err = sqlite3_close(TheDb);
814 TEST2(err, SQLITE_OK);
817 (void)remove(TheTestDbName);
820 /* ///////////////////////////////////////////////////////////////////////////////////// */
823 @SYMTestCaseID SYSLIB-SQLITE3-UT-4006
824 @SYMTestCaseDesc Two database connections in the same thread - "write operations" test.
825 The test creates two connections to the same database in the same thread.
826 Both connections attempt to execute INSERT statements using an explicit transaction
827 thus testing that the file locking in the OS porting layer works properly
828 (the SQLite library permits only one connection at a time to write to the database).
829 List of called SQLITE3 functions:
835 - Two connections to the same database created;
836 - Both connections begin a deferred transaction;
837 - The first connection executes an INSERT statement. The database file should be locked
838 for a writing by this connection;
839 - The second connection attempts to execute an INSERT statement too. The operation should fail,
840 because the database file has been locked by the first connection;
841 - The first connection completes the transaction executing a ROLLBACK statement;
842 - The second connection makes second attempt to execute the INSERT statement. The execution should
843 complete without errors;
844 @SYMTestPriority High
845 @SYMTestActions Two database connections in the same thread - "write operations" test.
846 @SYMTestExpectedResults Test must not fail
849 static void TwoWritersTest()
854 TestNext("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4006: Test two writers");
858 err = sqlite3_open(TheTestDbName, &TheDb);
859 TEST2(err, SQLITE_OK);
862 err = sqlite3_open(TheTestDbName, &TheDb2);
863 TEST2(err, SQLITE_OK);
867 Print("Two database connections, begin a transaction in each of them.\r\n");
868 err = sqlite3_exec(TheDb, "BEGIN", 0, 0, 0);
869 TEST2(err, SQLITE_OK);
871 err = sqlite3_exec(TheDb2, "BEGIN", 0, 0, 0);
872 TEST2(err, SQLITE_OK);
874 Print("Connection 1. Execute an \"INSERT\" statement. Success.\r\n");
875 err = sqlite3_exec(TheDb, "INSERT INTO A VALUES(0,0,0.0,'',x'00')", 0, 0, &errmsg);
878 PrintSI("Err msg: %s. Err: %d.\r\n", errmsg, err);
879 sqlite3_free(errmsg);
882 TEST2(err, SQLITE_OK);
884 Print("Connection 2. Execute an \"INSERT\" statement. Failure. The database is locked.\r\n");
885 err = sqlite3_exec(TheDb2, "INSERT INTO A VALUES(0,0,0.0,'',x'00')", 0, 0, &errmsg);
888 PrintSI("*** %s. Err: %d.\r\n", errmsg, err);
889 sqlite3_free(errmsg);
892 TEST2(err, SQLITE_BUSY);
894 Print("Connection 1. Rollback. The database is unlocked.\r\n");
895 err = sqlite3_exec(TheDb, "ROLLBACK", 0, 0, 0);
896 TEST2(err, SQLITE_OK);
898 Print("Connection 2. Execute an \"INSERT\" statement. Success.\r\n");
899 err = sqlite3_exec(TheDb2, "INSERT INTO A VALUES(0,0,0.0,'',x'00')", 0, 0, &errmsg);
902 PrintSI("*** %s. Err: %d.\r\n", errmsg, err);
903 sqlite3_free(errmsg);
906 TEST2(err, SQLITE_OK);
908 err = sqlite3_exec(TheDb2, "ROLLBACK", 0, 0, 0);
909 TEST2(err, SQLITE_OK);
911 Print("Close database connections.\r\n");
914 err = sqlite3_close(TheDb2);
915 TEST2(err, SQLITE_OK);
918 err = sqlite3_close(TheDb);
919 TEST2(err, SQLITE_OK);
922 (void)remove(TheTestDbName);
925 /* ///////////////////////////////////////////////////////////////////////////////////// */
927 static void* ThreadFunc(void* pname)
929 int records = 0, err, i;
933 const int KRecordsCount = 500;
934 const int KCommitRecordsCount = 2;
936 for(i=0;i<KTestThreadCount;++i)
938 if(strcmp(pname, KThreadNames[i]) == 0)
945 srand((unsigned)&ThreadFunc);
947 PrintS("Thread \"%s\" - begin\r\n", (char*)pname);
948 err = sqlite3_open(TheTestDbName, &db);
949 TEST2(err, SQLITE_OK);
952 while(records < KRecordsCount)
954 if((records % 10) == 0)
956 PrintSI("Thread \"%s\", %d records.\r\n", (char*)pname, records);
958 err = sqlite3_exec(db, "BEGIN", 0, 0, &errmsg);
961 err = sqlite3_exec(db, "INSERT INTO A VALUES(0,0,0.0,'',x'00')", 0, 0, &errmsg);
964 err = sqlite3_exec(db, "INSERT INTO A VALUES(0,0,0.0,'',x'00')", 0, 0, &errmsg);
967 err = sqlite3_exec(db, "COMMIT", 0, 0, &errmsg);
971 TEST(err == SQLITE_OK || err == SQLITE_BUSY);
974 TheInsertRecCnt[threadIdx] += KCommitRecordsCount;
975 records += KCommitRecordsCount;
977 else if(err == SQLITE_BUSY)
979 ++TheLockErrCnt[threadIdx];
980 (void)sqlite3_exec(db, "ROLLBACK", 0, 0, 0);
984 strcpy(fmt, "Thread \"");
985 strcat(fmt, (char*)pname);
986 strcat(fmt, "\". Err msg: %s. Err: %d.\r\n");
987 PrintSI(fmt, errmsg, err);
988 sqlite3_free(errmsg);
991 usleep((rand() % 3000) + 500);
995 err = sqlite3_close(db);
996 TEST2(err, SQLITE_OK);
998 PrintS("Thread \"%s\" - end\r\n", (char*)pname);
999 return &TheInsertRecCnt[threadIdx];
1003 @SYMTestCaseID SYSLIB-SQLITE3-UT-4007
1004 @SYMTestCaseDesc Two database connections from different threads - "write operations" test.
1005 The test creates two connections to the same database from two different threads.
1006 Both connections attempt to execute INSERT statements using an explicit transaction
1007 thus testing that the file locking in the OS porting layer works properly
1008 (the SQLite library permits only one connection at a time to write to the database).
1009 The threads do not use any thread synchronisation objects (mutexes, critical sections, etc...).
1010 List of called SQLITE3 functions:
1016 - Two threads created;
1017 - Each thread opens a connection to the same database;
1018 - No thread synchronisation is used;
1019 - Each database connection attempts to insert records in a loop using an explicit transaction;
1020 - If the database file is currently locked by the other database connection, the INSERT operation
1021 should fail with SQLITE_BUSY error. Otherwise the operation should complete successfully.
1022 @SYMTestPriority High
1023 @SYMTestActions Two database connections from different threads - "write operations" test.
1024 @SYMTestExpectedResults Test must not fail
1027 static void ThreadsTest()
1029 pthread_t threadIds[KTestThreadCount];
1032 TestNext("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4007: Test two writers in two threads");
1036 for(i=0;i<KTestThreadCount;++i)
1038 err = pthread_create(&threadIds[i], 0, &ThreadFunc, (void*)KThreadNames[i]);
1042 for(i=0;i<KTestThreadCount;++i)
1044 (void)pthread_join(threadIds[i], 0);
1045 PrintIII("Thread %d records written: %d, \"db locked\" errors: %d\r\n", i + 1, TheInsertRecCnt[i], TheLockErrCnt[i]);
1048 Print("Test two writers in two threads - end\r\n");
1049 (void)remove(TheTestDbName);
1052 /* ///////////////////////////////////////////////////////////////////////////////////// */
1054 static void* ThreadFunc1(void* parg)
1060 PrintS("Thread \"%s\" - begin\r\n", KThreadNames[0]);
1062 err = sqlite3_open(TheTestDbName, &db);
1063 TEST2(err, SQLITE_OK);
1066 (void)sem_wait(&TheSemaphores[0]);/* Wait for a notification from the main thread to begin */
1068 err = sqlite3_exec(db, "BEGIN", 0, 0, 0);
1069 TEST2(err, SQLITE_OK);
1071 err = sqlite3_exec(db, "INSERT INTO A VALUES(0,0,0.0,'',x'00')", 0, 0, 0);
1072 TEST2(err, SQLITE_OK);
1074 (void)sem_post(&TheSemaphores[1]);/* The database is locked now. Notify thread 2 to attempt an INSERT operation */
1075 (void)sem_wait(&TheSemaphores[0]);/* Wait for a notification from thread 2 to continue with the COMMIT operation */
1077 err = sqlite3_exec(db, "COMMIT", 0, 0, 0);
1078 TEST2(err, SQLITE_OK);
1080 (void)sem_post(&TheSemaphores[1]);/* The database is unlocked. Notify thread 2 to attempt the INSERT operation again */
1082 err = sqlite3_close(db);
1083 TEST2(err, SQLITE_OK);
1085 PrintS("Thread \"%s\" - end\r\n", KThreadNames[0]);
1089 static void* ThreadFunc2(void* parg)
1095 PrintS("Thread \"%s\" - begin\r\n", KThreadNames[1]);
1097 err = sqlite3_open(TheTestDbName, &db);
1098 TEST2(err, SQLITE_OK);
1101 (void)sem_wait(&TheSemaphores[1]);/* Wait for a notification from thread 1 to attempt an INSERT operation */
1103 err = sqlite3_exec(db, "INSERT INTO A VALUES(0,0,0.0,'',x'00')", 0, 0, 0);
1104 TEST2(err, SQLITE_BUSY);
1106 (void)sem_post(&TheSemaphores[0]);/* The database is locked. Notify thread 1 to commit and unlock the database */
1107 (void)sem_wait(&TheSemaphores[1]);/* Wait for a notification from thread 1 to attempt the INSERT operation again */
1109 err = sqlite3_exec(db, "INSERT INTO A VALUES(0,0,0.0,'',x'00')", 0, 0, 0);
1110 TEST2(err, SQLITE_OK);
1112 err = sqlite3_close(db);
1113 TEST2(err, SQLITE_OK);
1115 PrintS("Thread \"%s\" - end\r\n", KThreadNames[1]);
1120 @SYMTestCaseID SYSLIB-SQLITE3-UT-4008
1121 @SYMTestCaseDesc Two database connections from different threads - synchronised "write operations" test.
1122 The test creates two connections to the same database from two different threads.
1123 Both connections attempt to execute INSERT statements using an explicit transaction
1124 thus testing that the file locking in the OS porting layer works properly
1125 (the SQLite library permits only one connection at a time to write to the database).
1126 The threads use semaphores in order to synchronise the INSERT statements execution.
1127 List of called SQLITE3 functions:
1133 - Two threads created;
1134 - Each thread opens a connection to the same database;
1135 - The first thread begins an explicit transaction and inserts one record to the database.
1136 The database file is locked. The first thread notifies the second thread and blocks
1137 waiting for a notification from the second thread;
1138 - The second thread attempts to execute an INSERT statement. Since the database file is locked
1139 by the first thread the INSERT statement execution fails with SQLITE_BUSY. The second thread
1140 sends a notification to the first thread to continue and blocks waiting for a notification;
1141 - The first thread commits the transaction thus unlocking the database file. A notification is
1142 sent to the second thread;
1143 - The second thread makes second attempt to INSERT a record and this time the operation should
1144 complete successfully;
1145 @SYMTestPriority High
1146 @SYMTestActions Two database connections from different threads - synchronised "write operations" test.
1147 @SYMTestExpectedResults Test must not fail
1150 static void TwoSyncThreadsTest()
1152 const int KTestThreadCount = 2;
1154 pthread_t threadIds[KTestThreadCount] = {0};
1155 thread_begin_routine threadFuncs[KTestThreadCount] = {&ThreadFunc1, &ThreadFunc2};
1157 TestNext("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4008: Test two writers in two synchronized threads");
1161 for(i=0;i<KTestThreadCount;++i)
1163 err = sem_init(&TheSemaphores[i], 0, 0);
1167 for(i=0;i<KTestThreadCount;++i)
1169 err = pthread_create(&threadIds[i], 0, threadFuncs[i], 0);
1173 (void)sem_post(&TheSemaphores[0]);/* Notify thread 1 to begin */
1175 for(i=0;i<KTestThreadCount;++i)
1177 (void)pthread_join(threadIds[i], 0);
1180 (void)remove(TheTestDbName);
1182 for(i=0;i<KTestThreadCount;++i)
1184 err = sem_destroy(&TheSemaphores[i]);
1190 @SYMTestCaseID SYSLIB-SQLITE3-UT-4009
1191 @SYMTestCaseDesc Two database connections "RFileBuf64" test.
1192 This test verifies that the file buffer used by the SQLITE OS porting layer works properly.
1193 Test steps (in time order):
1194 1) Two connections to the same database are created.
1195 2) The first connection creates a table and executes a couple of INSERT statements.
1196 3) The second connection prepares a SELECT statement against the table, created in (2)
1197 Now, if the file buffer in the OS porting layer does not work as expected, step (3) fails,
1198 because at step (1) the database size is 0 and that is what the file buffer, used by the second
1199 connection, "knows". The "prepare SQL statement" call will fail with a "no such table" error.
1200 But if the file buffer works properly, the buffer will be flushed during the "lock file" operation
1201 inside the OS porting layer and reloaded with the database data later.
1202 @SYMTestPriority High
1203 @SYMTestActions Two database connections "RFileBuf64" test.
1204 @SYMTestExpectedResults Test must not fail
1207 static void TwoConnectionsTest(void)
1210 const char* tail = 0;
1211 const char* errmsg = 0;
1213 TestNext("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4009: Two database connections test (OS porting layer, RFileBuf64 related)");
1214 (void)remove(TheTestDbName);
1217 err = sqlite3_open(TheTestDbName, &TheDb);
1218 TEST2(err, SQLITE_OK);
1222 err = sqlite3_open(TheTestDbName, &TheDb2);
1223 TEST2(err, SQLITE_OK);
1226 err = sqlite3_exec(TheDb, "CREATE TABLE t1(x);INSERT INTO t1 VALUES(1);INSERT INTO t1 VALUES(2);SELECT * FROM t1", 0, 0, 0);
1227 TEST2(err, SQLITE_OK);
1230 err = sqlite3_prepare(TheDb2, "SELECT * FROM t1", -1, &TheStmt, &tail);
1231 if(err != SQLITE_OK)
1233 errmsg = sqlite3_errmsg(TheDb2);
1234 PrintSI("*** Stmt prepare err msg: \"%s\". Error: %d\r\n", errmsg, err);
1236 TEST2(err, SQLITE_OK);
1237 TEST((unsigned int)TheStmt);
1238 TEST(!tail || strlen(tail) == 0);
1240 err = sqlite3_step(TheStmt);
1241 TEST2(err, SQLITE_ROW);
1243 err = sqlite3_finalize(TheStmt);
1244 TEST2(err, SQLITE_OK);
1247 err = sqlite3_close(TheDb2);
1248 TEST2(err, SQLITE_OK);
1251 err = sqlite3_close(TheDb);
1252 TEST2(err, SQLITE_OK);
1254 (void)remove(TheTestDbName);
1257 static void UdfInsertFunc(sqlite3_context* aCtx, int aCnt, sqlite3_value** aValues)
1260 const char* tail = 0;
1265 db = sqlite3_context_db_handle(aCtx);/* to test that sqlite3_context_db_handle() can be called */
1269 err = sqlite3_prepare(TheDb, "INSERT INTO t1(x) VALUES(:Val)", -1, &TheStmt, &tail);
1270 if(err == SQLITE_OK)
1272 err = sqlite3_bind_value(TheStmt, 1, aValues[0]);
1273 if(err == SQLITE_OK)
1275 err = sqlite3_step(TheStmt);
1278 (void)sqlite3_finalize(TheStmt);
1281 sqlite3_result_int(aCtx, err);
1285 @SYMTestCaseID SYSLIB-SQLITE3-UT-4027
1286 @SYMTestCaseDesc sqlite3_bind_value() and sqlite3_column_value() test.
1287 List of covered SQLITE3 functions:
1288 - sqlite3_bind_value();
1289 - sqlite3_column_value();
1291 - The test creates and calls a user defined function - UdfInsertFunc().
1292 - The user defined function prepares and executes an INSERT statement,
1293 where the sqlite3_bind_value() call is used to bind the passed from the caller
1294 integer column value.
1295 - After the user defined function call completes, the test prepares a SELECT
1296 statement to verify the just inserted column value using sqlite3_column_int()
1297 @SYMTestPriority High
1298 @SYMTestActions sqlite3_bind_value() and sqlite3_column_int() test.
1299 @SYMTestExpectedResults Test must not fail
1302 static void UdfTest()
1306 const char* tail = 0;
1307 const int KTestColumnValue = 11234;
1310 TestNext("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4027: User defined function test");
1312 (void)remove(TheTestDbName);
1314 err = sqlite3_open(TheTestDbName, &TheDb);
1315 TEST2(err, SQLITE_OK);
1318 err = sqlite3_exec(TheDb, "CREATE TABLE t1(x INTEGER)", 0, 0, 0);
1319 TEST2(err, SQLITE_OK);
1321 err = sqlite3_create_function(TheDb, "UdfInsert", 1, SQLITE_UTF8, NULL, &UdfInsertFunc, NULL, NULL);
1322 TEST2(err, SQLITE_OK);
1324 //Execute an INSERT statement via UDF
1326 sprintf(sqlBuf, "SELECT UdfInsert(%d)", KTestColumnValue);
1327 err = sqlite3_prepare(TheDb, sqlBuf, -1, &TheStmt2, &tail);
1328 TEST2(err, SQLITE_OK);
1329 err = sqlite3_step(TheStmt2);
1330 TEST2(err, SQLITE_ROW);
1331 val = sqlite3_column_int(TheStmt2, 0);
1332 TEST2(val, SQLITE_DONE);
1333 (void)sqlite3_finalize(TheStmt2);
1336 //Verify the inserted column value
1338 err = sqlite3_prepare(TheDb, "SELECT x FROM t1", -1, &TheStmt2, &tail);
1339 TEST2(err, SQLITE_OK);
1340 err = sqlite3_step(TheStmt2);
1341 TEST2(err, SQLITE_ROW);
1342 val = sqlite3_column_int(TheStmt2,0);
1343 TEST2(val, KTestColumnValue);
1344 (void)sqlite3_finalize(TheStmt2);
1347 err = sqlite3_close(TheDb);
1348 TEST2(err, SQLITE_OK);
1350 (void)remove(TheTestDbName);
1353 /* ///////////////////////////////////////////////////////////////////////////////////// */
1355 int main(int argc, void** argv)
1360 TestOpen("t_sqliteapi test");
1371 TwoSyncThreadsTest();
1372 TwoConnectionsTest();