sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <stdio.h>
|
sl@0
|
21 |
#include <stdlib.h>
|
sl@0
|
22 |
#include <string.h>
|
sl@0
|
23 |
#include <wchar.h>
|
sl@0
|
24 |
#include <errno.h>
|
sl@0
|
25 |
#include <sys/stat.h>
|
sl@0
|
26 |
#include <pthread.h>
|
sl@0
|
27 |
#include <semaphore.h>
|
sl@0
|
28 |
#include <unistd.h>
|
sl@0
|
29 |
#include <sqlite3.h>
|
sl@0
|
30 |
#include "sqliteTestUtl.h"
|
sl@0
|
31 |
|
sl@0
|
32 |
static sqlite3* TheDb = 0;
|
sl@0
|
33 |
static sqlite3* TheDb2 = 0;
|
sl@0
|
34 |
static sqlite3_stmt* TheStmt = 0;
|
sl@0
|
35 |
static sqlite3_stmt* TheStmt2 = 0;
|
sl@0
|
36 |
const char* const TheTestDirName = "c:\\test";
|
sl@0
|
37 |
const char* const TheTestDbName = "c:\\test\\a1.db";
|
sl@0
|
38 |
|
sl@0
|
39 |
const int KTestThreadCount = 2;
|
sl@0
|
40 |
static int TheInsertRecCnt[KTestThreadCount] = {0, 0};
|
sl@0
|
41 |
static int TheLockErrCnt[KTestThreadCount] = {0, 0};
|
sl@0
|
42 |
const char* const KThreadNames[KTestThreadCount] = {"THRD1", "THRD2"};
|
sl@0
|
43 |
static sem_t TheSemaphores[KTestThreadCount];
|
sl@0
|
44 |
|
sl@0
|
45 |
#define UNUSED_ARG(a) (a) = (a)
|
sl@0
|
46 |
|
sl@0
|
47 |
/* ///////////////////////////////////////////////////////////////////////////////////// */
|
sl@0
|
48 |
|
sl@0
|
49 |
/* The standard C library does not have abs() function with a double argument */
|
sl@0
|
50 |
static double dabs(double arg)
|
sl@0
|
51 |
{
|
sl@0
|
52 |
return arg < 0.0 ? -arg : arg;
|
sl@0
|
53 |
}
|
sl@0
|
54 |
|
sl@0
|
55 |
/* ///////////////////////////////////////////////////////////////////////////////////// */
|
sl@0
|
56 |
|
sl@0
|
57 |
static void TestEnvDestroy()
|
sl@0
|
58 |
{
|
sl@0
|
59 |
if(TheStmt2)
|
sl@0
|
60 |
{
|
sl@0
|
61 |
(void)sqlite3_finalize(TheStmt2);
|
sl@0
|
62 |
TheStmt2 = 0;
|
sl@0
|
63 |
}
|
sl@0
|
64 |
if(TheStmt)
|
sl@0
|
65 |
{
|
sl@0
|
66 |
(void)sqlite3_finalize(TheStmt);
|
sl@0
|
67 |
TheStmt = 0;
|
sl@0
|
68 |
}
|
sl@0
|
69 |
if(TheDb2)
|
sl@0
|
70 |
{
|
sl@0
|
71 |
(void)sqlite3_close(TheDb2);
|
sl@0
|
72 |
TheDb2 = 0;
|
sl@0
|
73 |
}
|
sl@0
|
74 |
if(TheDb)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
(void)sqlite3_close(TheDb);
|
sl@0
|
77 |
TheDb = 0;
|
sl@0
|
78 |
}
|
sl@0
|
79 |
(void)remove(TheTestDbName);
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
/* ///////////////////////////////////////////////////////////////////////////////////// */
|
sl@0
|
83 |
/* Test macros and functions */
|
sl@0
|
84 |
|
sl@0
|
85 |
static void Check1(int aValue, int aLine)
|
sl@0
|
86 |
{
|
sl@0
|
87 |
if(!aValue)
|
sl@0
|
88 |
{
|
sl@0
|
89 |
if(TheDb)
|
sl@0
|
90 |
{
|
sl@0
|
91 |
const char* errmsg = sqlite3_errmsg(TheDb);
|
sl@0
|
92 |
PrintS("*** DB1: SQLITE error message: %s\r\n", errmsg);
|
sl@0
|
93 |
}
|
sl@0
|
94 |
if(TheDb2)
|
sl@0
|
95 |
{
|
sl@0
|
96 |
const char* errmsg = sqlite3_errmsg(TheDb2);
|
sl@0
|
97 |
PrintS("*** DB2: SQLITE error message: %s\r\n", errmsg);
|
sl@0
|
98 |
}
|
sl@0
|
99 |
PrintI("*** Test check failed! Line=%d\r\n", aLine);
|
sl@0
|
100 |
TestEnvDestroy();
|
sl@0
|
101 |
TestAbort(aLine);
|
sl@0
|
102 |
}
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
static void Check2(int aValue, int aExpected, int aLine)
|
sl@0
|
106 |
{
|
sl@0
|
107 |
if(aValue != aExpected)
|
sl@0
|
108 |
{
|
sl@0
|
109 |
if(TheDb)
|
sl@0
|
110 |
{
|
sl@0
|
111 |
const char* errmsg = sqlite3_errmsg(TheDb);
|
sl@0
|
112 |
PrintS("*** DB1: SQLITE error message: %s\r\n", errmsg);
|
sl@0
|
113 |
}
|
sl@0
|
114 |
if(TheDb2)
|
sl@0
|
115 |
{
|
sl@0
|
116 |
const char* errmsg = sqlite3_errmsg(TheDb2);
|
sl@0
|
117 |
PrintS("*** DB2: SQLITE error message: %s\r\n", errmsg);
|
sl@0
|
118 |
}
|
sl@0
|
119 |
PrintIII("*** Test check failed! Line=%d. Expected error: %d, got: %d\r\n", aLine, aExpected, aValue);
|
sl@0
|
120 |
TestEnvDestroy();
|
sl@0
|
121 |
TestAbort(aLine);
|
sl@0
|
122 |
}
|
sl@0
|
123 |
}
|
sl@0
|
124 |
|
sl@0
|
125 |
static void Check64(sqlite_int64 aValue, sqlite_int64 aExpected, int aLine)
|
sl@0
|
126 |
{
|
sl@0
|
127 |
if(aValue != aExpected)
|
sl@0
|
128 |
{
|
sl@0
|
129 |
if(TheDb)
|
sl@0
|
130 |
{
|
sl@0
|
131 |
const char* errmsg = sqlite3_errmsg(TheDb);
|
sl@0
|
132 |
PrintS("*** DB1: SQLITE error message: %s\r\n", errmsg);
|
sl@0
|
133 |
}
|
sl@0
|
134 |
if(TheDb2)
|
sl@0
|
135 |
{
|
sl@0
|
136 |
const char* errmsg = sqlite3_errmsg(TheDb2);
|
sl@0
|
137 |
PrintS("*** DB2: SQLITE error message: %s\r\n", errmsg);
|
sl@0
|
138 |
}
|
sl@0
|
139 |
PrintII64I64("*** Test check failed! Line=%ld. Expected error: %ld, got: %d\r\n", aLine, aExpected, aValue);
|
sl@0
|
140 |
TestEnvDestroy();
|
sl@0
|
141 |
TestAbort(aLine);
|
sl@0
|
142 |
}
|
sl@0
|
143 |
}
|
sl@0
|
144 |
#define TEST(arg) Check1((arg), __LINE__)
|
sl@0
|
145 |
#define TEST2(aValue, aExpected) Check2(aValue, aExpected, __LINE__)
|
sl@0
|
146 |
#define TEST64(aValue, aExpected) Check64(aValue, aExpected, __LINE__)
|
sl@0
|
147 |
|
sl@0
|
148 |
/* ///////////////////////////////////////////////////////////////////////////////////// */
|
sl@0
|
149 |
|
sl@0
|
150 |
static void TestEnvCreate()
|
sl@0
|
151 |
{
|
sl@0
|
152 |
int err;
|
sl@0
|
153 |
(void)remove(TheTestDbName);
|
sl@0
|
154 |
err = mkdir(TheTestDirName, S_IREAD | S_IWRITE);
|
sl@0
|
155 |
if(err != 0)
|
sl@0
|
156 |
{
|
sl@0
|
157 |
err = errno;
|
sl@0
|
158 |
}
|
sl@0
|
159 |
TEST(err == 0 || err == EEXIST);
|
sl@0
|
160 |
|
sl@0
|
161 |
//Creating the private data cage directory here to suppress a capability warning
|
sl@0
|
162 |
CreatePrivateDir();
|
sl@0
|
163 |
}
|
sl@0
|
164 |
|
sl@0
|
165 |
/* ///////////////////////////////////////////////////////////////////////////////////// */
|
sl@0
|
166 |
/* Callbacks */
|
sl@0
|
167 |
|
sl@0
|
168 |
static int exec_callback(void* udata, int argc, char** argv, char** colname)
|
sl@0
|
169 |
{
|
sl@0
|
170 |
UNUSED_ARG(udata);
|
sl@0
|
171 |
UNUSED_ARG(argc);
|
sl@0
|
172 |
UNUSED_ARG(argv);
|
sl@0
|
173 |
UNUSED_ARG(colname);
|
sl@0
|
174 |
return 0;
|
sl@0
|
175 |
}
|
sl@0
|
176 |
|
sl@0
|
177 |
static int authorizer_callback(void* udata, int optype, const char* name1, const char* name2, const char* name, const char* viewname)
|
sl@0
|
178 |
{
|
sl@0
|
179 |
UNUSED_ARG(udata);
|
sl@0
|
180 |
UNUSED_ARG(optype);
|
sl@0
|
181 |
UNUSED_ARG(name1);
|
sl@0
|
182 |
UNUSED_ARG(name2);
|
sl@0
|
183 |
UNUSED_ARG(name);
|
sl@0
|
184 |
UNUSED_ARG(viewname);
|
sl@0
|
185 |
return SQLITE_OK;
|
sl@0
|
186 |
}
|
sl@0
|
187 |
|
sl@0
|
188 |
static int commit_hook(void* udata)
|
sl@0
|
189 |
{
|
sl@0
|
190 |
UNUSED_ARG(udata);
|
sl@0
|
191 |
return SQLITE_OK;
|
sl@0
|
192 |
}
|
sl@0
|
193 |
|
sl@0
|
194 |
static void rollback_hook(void* udata)
|
sl@0
|
195 |
{
|
sl@0
|
196 |
UNUSED_ARG(udata);
|
sl@0
|
197 |
}
|
sl@0
|
198 |
|
sl@0
|
199 |
static void update_hook(void* udata, int type, char const* dbname, char const* tblname, sqlite_int64 rowid)
|
sl@0
|
200 |
{
|
sl@0
|
201 |
UNUSED_ARG(udata);
|
sl@0
|
202 |
UNUSED_ARG(type);
|
sl@0
|
203 |
UNUSED_ARG(dbname);
|
sl@0
|
204 |
UNUSED_ARG(tblname);
|
sl@0
|
205 |
UNUSED_ARG(rowid);
|
sl@0
|
206 |
}
|
sl@0
|
207 |
|
sl@0
|
208 |
/* ///////////////////////////////////////////////////////////////////////////////////// */
|
sl@0
|
209 |
|
sl@0
|
210 |
/**
|
sl@0
|
211 |
@SYMTestCaseID SYSLIB-SQLITE3-UT-4001
|
sl@0
|
212 |
@SYMTestCaseDesc sqlite3_exec() tests.
|
sl@0
|
213 |
List of called SQLITE3 functions:
|
sl@0
|
214 |
- sqlite3_exec;
|
sl@0
|
215 |
- sqlite3_errcode;
|
sl@0
|
216 |
- sqlite3_errmsg;
|
sl@0
|
217 |
- sqlite3_last_insert_rowid;
|
sl@0
|
218 |
- sqlite3_changes;
|
sl@0
|
219 |
- sqlite3_total_changes;
|
sl@0
|
220 |
- sqlite3_get_autocommit;
|
sl@0
|
221 |
@SYMTestPriority High
|
sl@0
|
222 |
@SYMTestActions sqlite3_exec() tests.
|
sl@0
|
223 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
224 |
@SYMREQ REQ8782
|
sl@0
|
225 |
*/
|
sl@0
|
226 |
static void TestExec()
|
sl@0
|
227 |
{
|
sl@0
|
228 |
int err;
|
sl@0
|
229 |
sqlite_int64 lastrowid;
|
sl@0
|
230 |
int val;
|
sl@0
|
231 |
|
sl@0
|
232 |
TEST(TheDb != 0);
|
sl@0
|
233 |
|
sl@0
|
234 |
err = sqlite3_exec(TheDb, "CREATE TABLE A(F1 INTEGER, F2 BIGINT, F3 REAL, F4 TEXT, F5 BLOB)", &exec_callback, 0, 0);
|
sl@0
|
235 |
TEST2(err, SQLITE_OK);
|
sl@0
|
236 |
|
sl@0
|
237 |
err = sqlite3_exec(TheDb, "INSERT INTO A VALUES(1, 1234567891234, 56.12, 'TEXT', x'313233343536')", &exec_callback, 0, 0);
|
sl@0
|
238 |
TEST2(err, SQLITE_OK);
|
sl@0
|
239 |
|
sl@0
|
240 |
err = sqlite3_errcode(TheDb);
|
sl@0
|
241 |
TEST2(err, SQLITE_OK);
|
sl@0
|
242 |
|
sl@0
|
243 |
(void)sqlite3_errmsg(TheDb);
|
sl@0
|
244 |
|
sl@0
|
245 |
lastrowid = sqlite3_last_insert_rowid(TheDb);
|
sl@0
|
246 |
TEST(lastrowid > 0LL);
|
sl@0
|
247 |
|
sl@0
|
248 |
val = sqlite3_changes(TheDb);
|
sl@0
|
249 |
TEST2(val, 1);
|
sl@0
|
250 |
|
sl@0
|
251 |
val = sqlite3_total_changes(TheDb);
|
sl@0
|
252 |
TEST(val >= 1);
|
sl@0
|
253 |
|
sl@0
|
254 |
val = sqlite3_get_autocommit(TheDb);
|
sl@0
|
255 |
TEST(val != 0);
|
sl@0
|
256 |
}
|
sl@0
|
257 |
|
sl@0
|
258 |
/* ///////////////////////////////////////////////////////////////////////////////////// */
|
sl@0
|
259 |
|
sl@0
|
260 |
static void DoTestStatement()
|
sl@0
|
261 |
{
|
sl@0
|
262 |
int err, val;
|
sl@0
|
263 |
sqlite_int64 val64;
|
sl@0
|
264 |
double dblval;
|
sl@0
|
265 |
const unsigned char* textval;
|
sl@0
|
266 |
const unsigned short* textval16;
|
sl@0
|
267 |
const unsigned char* blob;
|
sl@0
|
268 |
const char *coltype, *colname;
|
sl@0
|
269 |
const unsigned short *coltype16, *colname16;
|
sl@0
|
270 |
sqlite3* db;
|
sl@0
|
271 |
|
sl@0
|
272 |
TEST(TheDb != 0);
|
sl@0
|
273 |
TEST(TheStmt != 0);
|
sl@0
|
274 |
|
sl@0
|
275 |
val = sqlite3_column_count(TheStmt);
|
sl@0
|
276 |
TEST2(val, 5);
|
sl@0
|
277 |
|
sl@0
|
278 |
db = sqlite3_db_handle(TheStmt);
|
sl@0
|
279 |
TEST2((unsigned int)db, (unsigned int)TheDb);
|
sl@0
|
280 |
|
sl@0
|
281 |
err = sqlite3_step(TheStmt);
|
sl@0
|
282 |
TEST2(err, SQLITE_ROW);
|
sl@0
|
283 |
|
sl@0
|
284 |
#ifdef SQLITE_ENABLE_COLUMN_METADATA
|
sl@0
|
285 |
sqlite3_column_database_name(TheStmt, 0);
|
sl@0
|
286 |
sqlite3_column_database_name16(TheStmt, 1);
|
sl@0
|
287 |
sqlite3_column_table_name(TheStmt, 2);
|
sl@0
|
288 |
sqlite3_column_table_name16(TheStmt, 3);
|
sl@0
|
289 |
sqlite3_column_origin_name(TheStmt, 4);
|
sl@0
|
290 |
sqlite3_column_origin_name16(TheStmt, 0);
|
sl@0
|
291 |
#endif
|
sl@0
|
292 |
|
sl@0
|
293 |
coltype = sqlite3_column_decltype(TheStmt, 0);
|
sl@0
|
294 |
TEST2(strcmp(coltype, "INTEGER"), 0);
|
sl@0
|
295 |
|
sl@0
|
296 |
coltype16 = (const unsigned short*)sqlite3_column_decltype16(TheStmt, 2);
|
sl@0
|
297 |
TEST2(wcscmp(coltype16, L"REAL"), 0);
|
sl@0
|
298 |
|
sl@0
|
299 |
colname = sqlite3_column_name(TheStmt, 1);
|
sl@0
|
300 |
TEST2(strcmp(colname, "F2"), 0);
|
sl@0
|
301 |
|
sl@0
|
302 |
colname16 = (const unsigned short *)sqlite3_column_name16(TheStmt, 4);
|
sl@0
|
303 |
TEST2(wcscmp(colname16, L"F5"), 0);
|
sl@0
|
304 |
|
sl@0
|
305 |
val = sqlite3_column_int(TheStmt, 0);
|
sl@0
|
306 |
TEST2(val, 1);
|
sl@0
|
307 |
|
sl@0
|
308 |
val64 = sqlite3_column_int64(TheStmt, 1);
|
sl@0
|
309 |
TEST64(val64, 1234567891234LL);
|
sl@0
|
310 |
|
sl@0
|
311 |
dblval = sqlite3_column_double(TheStmt, 2);
|
sl@0
|
312 |
TEST(dabs(dblval - 56.12) < 0.00001);
|
sl@0
|
313 |
|
sl@0
|
314 |
textval = sqlite3_column_text(TheStmt, 3);
|
sl@0
|
315 |
TEST2(strcmp((const char*)textval, "TEXT"), 0);
|
sl@0
|
316 |
|
sl@0
|
317 |
textval16 = sqlite3_column_text16(TheStmt, 3);
|
sl@0
|
318 |
TEST2(wcscmp(textval16, L"TEXT"), 0);
|
sl@0
|
319 |
|
sl@0
|
320 |
blob = (const unsigned char*)sqlite3_column_blob(TheStmt, 4);
|
sl@0
|
321 |
TEST2(memcmp(blob, "123456", 6), 0);
|
sl@0
|
322 |
|
sl@0
|
323 |
err = sqlite3_step(TheStmt);
|
sl@0
|
324 |
TEST2(err, SQLITE_DONE);
|
sl@0
|
325 |
}
|
sl@0
|
326 |
|
sl@0
|
327 |
/* ///////////////////////////////////////////////////////////////////////////////////// */
|
sl@0
|
328 |
|
sl@0
|
329 |
/**
|
sl@0
|
330 |
@SYMTestCaseID SYSLIB-SQLITE3-UT-4002
|
sl@0
|
331 |
@SYMTestCaseDesc Statement handle SQLITE3 tests.
|
sl@0
|
332 |
List of called SQLITE3 functions:
|
sl@0
|
333 |
- sqlite3_complete;
|
sl@0
|
334 |
- sqlite3_complete16;
|
sl@0
|
335 |
- sqlite3_prepare;
|
sl@0
|
336 |
- sqlite3_finalize;
|
sl@0
|
337 |
- sqlite3_column_count;
|
sl@0
|
338 |
- sqlite3_db_handle;
|
sl@0
|
339 |
- sqlite3_step;
|
sl@0
|
340 |
- sqlite3_column_decltype;
|
sl@0
|
341 |
- sqlite3_column_decltype16;
|
sl@0
|
342 |
- sqlite3_column_name;
|
sl@0
|
343 |
- sqlite3_column_name16;
|
sl@0
|
344 |
- sqlite3_column_int;
|
sl@0
|
345 |
- sqlite3_column_int64;
|
sl@0
|
346 |
- sqlite3_column_double;
|
sl@0
|
347 |
- sqlite3_column_text;
|
sl@0
|
348 |
- sqlite3_column_text16;
|
sl@0
|
349 |
- sqlite3_column_blob;
|
sl@0
|
350 |
@SYMTestPriority High
|
sl@0
|
351 |
@SYMTestActions Statement handle SQLITE3 tests.
|
sl@0
|
352 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
353 |
@SYMREQ REQ8782
|
sl@0
|
354 |
*/
|
sl@0
|
355 |
static void TestStatement1()
|
sl@0
|
356 |
{
|
sl@0
|
357 |
const char* tail = 0;
|
sl@0
|
358 |
int err;
|
sl@0
|
359 |
|
sl@0
|
360 |
TEST(TheDb != 0);
|
sl@0
|
361 |
TEST(!TheStmt);
|
sl@0
|
362 |
|
sl@0
|
363 |
err = sqlite3_complete("SELECT * FROM A;");
|
sl@0
|
364 |
TEST(err != 0);
|
sl@0
|
365 |
|
sl@0
|
366 |
err = sqlite3_complete16(L"SELECT * FROM A;");
|
sl@0
|
367 |
TEST(err != 0);
|
sl@0
|
368 |
|
sl@0
|
369 |
err = sqlite3_prepare(TheDb, "SELECT * FROM A", -1, &TheStmt, &tail);
|
sl@0
|
370 |
TEST2(err, SQLITE_OK);
|
sl@0
|
371 |
TEST((unsigned int)TheStmt);
|
sl@0
|
372 |
TEST(!tail || strlen(tail) == 0);
|
sl@0
|
373 |
|
sl@0
|
374 |
DoTestStatement();
|
sl@0
|
375 |
|
sl@0
|
376 |
err = sqlite3_finalize(TheStmt);
|
sl@0
|
377 |
TEST2(err, SQLITE_OK);
|
sl@0
|
378 |
TheStmt = 0;
|
sl@0
|
379 |
}
|
sl@0
|
380 |
|
sl@0
|
381 |
/* ///////////////////////////////////////////////////////////////////////////////////// */
|
sl@0
|
382 |
|
sl@0
|
383 |
/**
|
sl@0
|
384 |
@SYMTestCaseID SYSLIB-SQLITE3-UT-4003
|
sl@0
|
385 |
@SYMTestCaseDesc Statement handle SQLITE3 tests.
|
sl@0
|
386 |
List of called SQLITE3 functions:
|
sl@0
|
387 |
- sqlite3_prepare;
|
sl@0
|
388 |
- sqlite3_finalize;
|
sl@0
|
389 |
- sqlite3_bind_int;
|
sl@0
|
390 |
- sqlite3_bind_int64;
|
sl@0
|
391 |
- sqlite3_bind_double;
|
sl@0
|
392 |
- sqlite3_bind_text;
|
sl@0
|
393 |
@SYMTestPriority High
|
sl@0
|
394 |
@SYMTestActions Statement handle SQLITE3 tests.
|
sl@0
|
395 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
396 |
@SYMREQ REQ8782
|
sl@0
|
397 |
*/
|
sl@0
|
398 |
static void TestStatement2()
|
sl@0
|
399 |
{
|
sl@0
|
400 |
const char* tail = 0;
|
sl@0
|
401 |
int err;
|
sl@0
|
402 |
|
sl@0
|
403 |
TEST(TheDb != 0);
|
sl@0
|
404 |
TEST(!TheStmt);
|
sl@0
|
405 |
|
sl@0
|
406 |
err = sqlite3_prepare(TheDb, "SELECT * FROM A WHERE F1=? AND F2=? AND F3<? AND F4=?", -1, &TheStmt, &tail);
|
sl@0
|
407 |
TEST2(err, SQLITE_OK);
|
sl@0
|
408 |
TEST((unsigned int)TheStmt);
|
sl@0
|
409 |
TEST(!tail || strlen(tail) == 0);
|
sl@0
|
410 |
|
sl@0
|
411 |
err = sqlite3_bind_int(TheStmt, 1, 1);
|
sl@0
|
412 |
TEST2(err, SQLITE_OK);
|
sl@0
|
413 |
|
sl@0
|
414 |
err = sqlite3_bind_int64(TheStmt, 2, 1234567891234LL);
|
sl@0
|
415 |
TEST2(err, SQLITE_OK);
|
sl@0
|
416 |
|
sl@0
|
417 |
err = sqlite3_bind_double(TheStmt, 3, 70.0);
|
sl@0
|
418 |
TEST2(err, SQLITE_OK);
|
sl@0
|
419 |
|
sl@0
|
420 |
err = sqlite3_bind_text(TheStmt, 4, "TEXT", -1, SQLITE_STATIC);
|
sl@0
|
421 |
TEST2(err, SQLITE_OK);
|
sl@0
|
422 |
|
sl@0
|
423 |
DoTestStatement();
|
sl@0
|
424 |
|
sl@0
|
425 |
err = sqlite3_finalize(TheStmt);
|
sl@0
|
426 |
TEST2(err, SQLITE_OK);
|
sl@0
|
427 |
TheStmt = 0;
|
sl@0
|
428 |
}
|
sl@0
|
429 |
|
sl@0
|
430 |
/* ///////////////////////////////////////////////////////////////////////////////////// */
|
sl@0
|
431 |
|
sl@0
|
432 |
/**
|
sl@0
|
433 |
@SYMTestCaseID PDS-SQLITE3-UT-4038
|
sl@0
|
434 |
@SYMTestCaseDesc Database handle SQLITE3 tests.
|
sl@0
|
435 |
List of called SQLITE3 functions:
|
sl@0
|
436 |
- sqlite3_db_status;
|
sl@0
|
437 |
- sqlite3_file_control;
|
sl@0
|
438 |
- sqlite3_limit;
|
sl@0
|
439 |
- sqlite3_next_stmt;
|
sl@0
|
440 |
- sqlite3_randomness;
|
sl@0
|
441 |
@SYMTestPriority High
|
sl@0
|
442 |
@SYMTestActions Database handle SQLITE3 tests.
|
sl@0
|
443 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
444 |
@SYMREQ REQ10424
|
sl@0
|
445 |
*/
|
sl@0
|
446 |
static void TestSqliteApi2()
|
sl@0
|
447 |
{
|
sl@0
|
448 |
int used = 0;
|
sl@0
|
449 |
int high = 0;
|
sl@0
|
450 |
int lock = -1;
|
sl@0
|
451 |
int limit = 0;
|
sl@0
|
452 |
sqlite3_stmt* next = 0;
|
sl@0
|
453 |
int err;
|
sl@0
|
454 |
unsigned char buf[10];
|
sl@0
|
455 |
|
sl@0
|
456 |
TEST(TheDb != 0);
|
sl@0
|
457 |
|
sl@0
|
458 |
err = sqlite3_db_status(TheDb, SQLITE_DBSTATUS_LOOKASIDE_USED, &used, &high, 0);
|
sl@0
|
459 |
TEST2(err, SQLITE_OK);
|
sl@0
|
460 |
PrintI("Lookaside slots: %d\r\n", used);
|
sl@0
|
461 |
PrintI("Max used lookaside slots: %d\r\n", high);
|
sl@0
|
462 |
|
sl@0
|
463 |
err = sqlite3_file_control(TheDb, "main", SQLITE_FCNTL_LOCKSTATE, &lock);
|
sl@0
|
464 |
TEST2(err, SQLITE_OK);
|
sl@0
|
465 |
TEST2(lock, SQLITE_LOCK_NONE);
|
sl@0
|
466 |
|
sl@0
|
467 |
limit = sqlite3_limit(TheDb, SQLITE_LIMIT_LENGTH, -1);
|
sl@0
|
468 |
TEST(limit > 0);
|
sl@0
|
469 |
|
sl@0
|
470 |
next = sqlite3_next_stmt(TheDb, 0);
|
sl@0
|
471 |
TEST(!next);
|
sl@0
|
472 |
|
sl@0
|
473 |
memset(buf, 0, sizeof(buf));
|
sl@0
|
474 |
sqlite3_randomness(8, buf);
|
sl@0
|
475 |
|
sl@0
|
476 |
memset(buf, 0, sizeof(buf));
|
sl@0
|
477 |
sqlite3_randomness(7, buf);
|
sl@0
|
478 |
|
sl@0
|
479 |
memset(buf, 0, sizeof(buf));
|
sl@0
|
480 |
sqlite3_randomness(3, buf);
|
sl@0
|
481 |
|
sl@0
|
482 |
}
|
sl@0
|
483 |
|
sl@0
|
484 |
/* ///////////////////////////////////////////////////////////////////////////////////// */
|
sl@0
|
485 |
|
sl@0
|
486 |
/**
|
sl@0
|
487 |
@SYMTestCaseID PDS-SQLITE3-UT-4039
|
sl@0
|
488 |
@SYMTestCaseDesc SQLITE3 - blob API tests.
|
sl@0
|
489 |
List of called SQLITE3 functions:
|
sl@0
|
490 |
- sqlite3_bind_zeroblob;
|
sl@0
|
491 |
- sqlite3_blob_bytes;
|
sl@0
|
492 |
- sqlite3_blob_close;
|
sl@0
|
493 |
- sqlite3_blob_open;
|
sl@0
|
494 |
- sqlite3_blob_read;
|
sl@0
|
495 |
- sqlite3_blob_write;
|
sl@0
|
496 |
- sqlite3_sql;
|
sl@0
|
497 |
@SYMTestPriority High
|
sl@0
|
498 |
@SYMTestActions SQLITE3 - blob API tests.
|
sl@0
|
499 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
500 |
@SYMREQ REQ10424
|
sl@0
|
501 |
*/
|
sl@0
|
502 |
static void TestSqliteBlobApi()
|
sl@0
|
503 |
{
|
sl@0
|
504 |
int err;
|
sl@0
|
505 |
const char* tail = 0;
|
sl@0
|
506 |
sqlite3_blob* blob = 0;
|
sl@0
|
507 |
int bytes = 0;
|
sl@0
|
508 |
const char KBlobData[] = "ABCDEFGH";
|
sl@0
|
509 |
char sql[100];
|
sl@0
|
510 |
const int KBlobLen = strlen(KBlobData);
|
sl@0
|
511 |
const char* sql2 = 0;
|
sl@0
|
512 |
const char KSqlFmt[] = "UPDATE BlobTbl SET B=:Prm WHERE ROWID=1";
|
sl@0
|
513 |
|
sl@0
|
514 |
TEST(TheDb != 0);
|
sl@0
|
515 |
TEST(!TheStmt);
|
sl@0
|
516 |
|
sl@0
|
517 |
/* Create the table, insert one record with a blob */
|
sl@0
|
518 |
|
sl@0
|
519 |
err = sqlite3_exec(TheDb, "CREATE TABLE BlobTbl(I INTEGER PRIMARY KEY, B BLOB)", 0, 0, 0);
|
sl@0
|
520 |
TEST2(err, SQLITE_OK);
|
sl@0
|
521 |
|
sl@0
|
522 |
sprintf(sql, "INSERT INTO BlobTbl VALUES(1, zeroblob(%d))", KBlobLen);
|
sl@0
|
523 |
err = sqlite3_exec(TheDb, sql, 0, 0, 0);
|
sl@0
|
524 |
TEST2(err, SQLITE_OK);
|
sl@0
|
525 |
|
sl@0
|
526 |
err = sqlite3_prepare_v2(TheDb, KSqlFmt, -1, &TheStmt, &tail);
|
sl@0
|
527 |
TEST2(err, SQLITE_OK);
|
sl@0
|
528 |
TEST(TheStmt != 0);
|
sl@0
|
529 |
|
sl@0
|
530 |
sql2 = sqlite3_sql(TheStmt);
|
sl@0
|
531 |
TEST(sql2 != NULL);
|
sl@0
|
532 |
err = strcmp(sql2, KSqlFmt);
|
sl@0
|
533 |
TEST2(err, 0);
|
sl@0
|
534 |
|
sl@0
|
535 |
err = sqlite3_bind_zeroblob(TheStmt, 1, KBlobLen);
|
sl@0
|
536 |
TEST2(err, SQLITE_OK);
|
sl@0
|
537 |
|
sl@0
|
538 |
err = sqlite3_step(TheStmt);
|
sl@0
|
539 |
TEST2(err, SQLITE_DONE);
|
sl@0
|
540 |
|
sl@0
|
541 |
err = sqlite3_finalize(TheStmt);
|
sl@0
|
542 |
TEST2(err, SQLITE_OK);
|
sl@0
|
543 |
TheStmt = 0;
|
sl@0
|
544 |
|
sl@0
|
545 |
/* Open the blob and write to it */
|
sl@0
|
546 |
|
sl@0
|
547 |
err = sqlite3_blob_open(TheDb, "main", "BlobTbl", "B", 1, 1, &blob);
|
sl@0
|
548 |
TEST2(err, SQLITE_OK);
|
sl@0
|
549 |
TEST(blob != 0);
|
sl@0
|
550 |
|
sl@0
|
551 |
bytes = sqlite3_blob_bytes(blob);
|
sl@0
|
552 |
TEST2(bytes, KBlobLen);
|
sl@0
|
553 |
|
sl@0
|
554 |
err = sqlite3_blob_write(blob, KBlobData, KBlobLen, 0);
|
sl@0
|
555 |
TEST2(err, SQLITE_OK);
|
sl@0
|
556 |
|
sl@0
|
557 |
err = sqlite3_blob_close(blob);
|
sl@0
|
558 |
TEST2(err, SQLITE_OK);
|
sl@0
|
559 |
blob = 0;
|
sl@0
|
560 |
|
sl@0
|
561 |
/* Open the blob and read from it */
|
sl@0
|
562 |
|
sl@0
|
563 |
err = sqlite3_blob_open(TheDb, "main", "BlobTbl", "B", 1, 1, &blob);
|
sl@0
|
564 |
TEST2(err, SQLITE_OK);
|
sl@0
|
565 |
TEST(blob != 0);
|
sl@0
|
566 |
|
sl@0
|
567 |
bytes = sqlite3_blob_bytes(blob);
|
sl@0
|
568 |
TEST2(bytes, KBlobLen);
|
sl@0
|
569 |
|
sl@0
|
570 |
err = sqlite3_blob_read(blob, sql, KBlobLen, 0);
|
sl@0
|
571 |
TEST2(err, SQLITE_OK);
|
sl@0
|
572 |
sql[bytes] = 0;
|
sl@0
|
573 |
|
sl@0
|
574 |
err = sqlite3_blob_close(blob);
|
sl@0
|
575 |
TEST2(err, SQLITE_OK);
|
sl@0
|
576 |
blob = 0;
|
sl@0
|
577 |
|
sl@0
|
578 |
err = strcmp(sql, KBlobData);
|
sl@0
|
579 |
TEST2(err, 0);
|
sl@0
|
580 |
|
sl@0
|
581 |
err = sqlite3_exec(TheDb, "DROP TABLE BlobTbl", 0, 0, 0);
|
sl@0
|
582 |
TEST2(err, SQLITE_OK);
|
sl@0
|
583 |
}
|
sl@0
|
584 |
|
sl@0
|
585 |
/* ///////////////////////////////////////////////////////////////////////////////////// */
|
sl@0
|
586 |
|
sl@0
|
587 |
/**
|
sl@0
|
588 |
@SYMTestCaseID PDS-SQLITE3-UT-4040
|
sl@0
|
589 |
@SYMTestCaseDesc SQLITE3 - mutex API tests.
|
sl@0
|
590 |
List of called SQLITE3 functions:
|
sl@0
|
591 |
- sqlite3_mutex_alloc;
|
sl@0
|
592 |
- sqlite3_mutex_enter;
|
sl@0
|
593 |
- sqlite3_mutex_free;
|
sl@0
|
594 |
- sqlite3_mutex_held;
|
sl@0
|
595 |
- sqlite3_mutex_leave;
|
sl@0
|
596 |
- sqlite3_mutex_notheld;
|
sl@0
|
597 |
- sqlite3_mutex_try;
|
sl@0
|
598 |
@SYMTestPriority High
|
sl@0
|
599 |
@SYMTestActions SQLITE3 - mutex API tests.
|
sl@0
|
600 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
601 |
@SYMREQ REQ10424
|
sl@0
|
602 |
*/
|
sl@0
|
603 |
static void TestSqliteMutexApi()
|
sl@0
|
604 |
{
|
sl@0
|
605 |
sqlite3_mutex* mtx = 0;
|
sl@0
|
606 |
int err;
|
sl@0
|
607 |
int type;
|
sl@0
|
608 |
|
sl@0
|
609 |
TEST(TheDb != 0);
|
sl@0
|
610 |
|
sl@0
|
611 |
for(type=SQLITE_MUTEX_FAST;type<=SQLITE_MUTEX_STATIC_LRU2;++type)
|
sl@0
|
612 |
{
|
sl@0
|
613 |
mtx = sqlite3_mutex_alloc(type);
|
sl@0
|
614 |
TEST(mtx != NULL);
|
sl@0
|
615 |
|
sl@0
|
616 |
err = sqlite3_mutex_try(mtx);
|
sl@0
|
617 |
TEST(err == SQLITE_BUSY || err == SQLITE_OK);
|
sl@0
|
618 |
|
sl@0
|
619 |
sqlite3_mutex_enter(mtx);
|
sl@0
|
620 |
|
sl@0
|
621 |
sqlite3_mutex_leave(mtx);
|
sl@0
|
622 |
|
sl@0
|
623 |
if(type <= SQLITE_MUTEX_RECURSIVE)
|
sl@0
|
624 |
{
|
sl@0
|
625 |
sqlite3_mutex_free(mtx);
|
sl@0
|
626 |
}
|
sl@0
|
627 |
mtx = 0;
|
sl@0
|
628 |
}
|
sl@0
|
629 |
}
|
sl@0
|
630 |
|
sl@0
|
631 |
/* ///////////////////////////////////////////////////////////////////////////////////// */
|
sl@0
|
632 |
|
sl@0
|
633 |
/**
|
sl@0
|
634 |
@SYMTestCaseID SYSLIB-SQLITE3-UT-4004
|
sl@0
|
635 |
@SYMTestCaseDesc Database handle SQLITE3 tests.
|
sl@0
|
636 |
List of called SQLITE3 functions:
|
sl@0
|
637 |
- sqlite3_config;
|
sl@0
|
638 |
- sqlite3_initialize;
|
sl@0
|
639 |
- sqlite3_threadsafe;
|
sl@0
|
640 |
- sqlite3_vfs_find;
|
sl@0
|
641 |
- sqlite3_open;
|
sl@0
|
642 |
- sqlite3_db_config;
|
sl@0
|
643 |
- sqlite3_libversion;
|
sl@0
|
644 |
- sqlite3_libversion_number;
|
sl@0
|
645 |
- sqlite3_set_authorizer;
|
sl@0
|
646 |
- sqlite3_commit_hook;
|
sl@0
|
647 |
- sqlite3_rollback_hook;
|
sl@0
|
648 |
- sqlite3_update_hook;
|
sl@0
|
649 |
- sqlite3_close;
|
sl@0
|
650 |
- sqlite3_shutdown;
|
sl@0
|
651 |
@SYMTestPriority High
|
sl@0
|
652 |
@SYMTestActions Database handle SQLITE3 tests.
|
sl@0
|
653 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
654 |
@SYMREQ REQ8782
|
sl@0
|
655 |
*/
|
sl@0
|
656 |
static void TestSqliteApi()
|
sl@0
|
657 |
{
|
sl@0
|
658 |
void* prev = 0;
|
sl@0
|
659 |
const char* libverstr = 0;
|
sl@0
|
660 |
int libvernum = 0;
|
sl@0
|
661 |
int err;
|
sl@0
|
662 |
int threadSafe = -1;
|
sl@0
|
663 |
sqlite3_vfs* vfs = 0;
|
sl@0
|
664 |
|
sl@0
|
665 |
TEST(!TheDb);
|
sl@0
|
666 |
|
sl@0
|
667 |
TestStart("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4004: Test \"sqlite3_config()\"");
|
sl@0
|
668 |
err = sqlite3_config(SQLITE_CONFIG_MEMSTATUS, 0);
|
sl@0
|
669 |
TEST2(err, SQLITE_OK);
|
sl@0
|
670 |
|
sl@0
|
671 |
TestNext("Test \"sqlite3_initialize()\"");
|
sl@0
|
672 |
err = sqlite3_initialize();
|
sl@0
|
673 |
TEST2(err, SQLITE_OK);
|
sl@0
|
674 |
|
sl@0
|
675 |
TestNext("Test \"sqlite3_threadsafe()\"");
|
sl@0
|
676 |
threadSafe = sqlite3_threadsafe();
|
sl@0
|
677 |
PrintI("SQLITE_THREADSAFE=%d\r\n", threadSafe);
|
sl@0
|
678 |
|
sl@0
|
679 |
vfs = sqlite3_vfs_find(0);
|
sl@0
|
680 |
TEST(vfs != NULL);
|
sl@0
|
681 |
PrintS("Vfs name=\"%s\"\r\n", vfs->zName);
|
sl@0
|
682 |
|
sl@0
|
683 |
err = sqlite3_open(TheTestDbName, &TheDb);
|
sl@0
|
684 |
TEST2(err, SQLITE_OK);
|
sl@0
|
685 |
TEST(TheDb != 0);
|
sl@0
|
686 |
|
sl@0
|
687 |
err = sqlite3_db_config(TheDb, SQLITE_DBCONFIG_LOOKASIDE, 0, 128, 100);
|
sl@0
|
688 |
TEST2(err, SQLITE_OK);
|
sl@0
|
689 |
|
sl@0
|
690 |
libverstr = sqlite3_libversion();
|
sl@0
|
691 |
libvernum = sqlite3_libversion_number();
|
sl@0
|
692 |
PrintSI("SQLITE version: \"%s\", Number: %d\r\n", libverstr, libvernum);
|
sl@0
|
693 |
|
sl@0
|
694 |
err = sqlite3_set_authorizer(TheDb, &authorizer_callback, 0);
|
sl@0
|
695 |
TEST2(err, SQLITE_OK);
|
sl@0
|
696 |
|
sl@0
|
697 |
prev = sqlite3_commit_hook(TheDb, &commit_hook, 0);
|
sl@0
|
698 |
TEST(!prev);
|
sl@0
|
699 |
prev = sqlite3_rollback_hook(TheDb, &rollback_hook, 0);
|
sl@0
|
700 |
TEST(!prev);
|
sl@0
|
701 |
prev = sqlite3_update_hook(TheDb, &update_hook, 0);
|
sl@0
|
702 |
TEST(!prev);
|
sl@0
|
703 |
|
sl@0
|
704 |
TestNext("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4001: Test \"sqlite3\" handle API");
|
sl@0
|
705 |
TestExec();
|
sl@0
|
706 |
TestNext("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4002: Test \"sqlite3_stmt\" handle API-1");
|
sl@0
|
707 |
TestStatement1();
|
sl@0
|
708 |
TestNext("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4003: Test \"sqlite3_stmt\" handle API-2");
|
sl@0
|
709 |
TestStatement2();
|
sl@0
|
710 |
TestNext("@SYMTestCaseID:PDS-SQLITE3-UT-4038: Test more sqlite3 API");
|
sl@0
|
711 |
TestSqliteApi2();
|
sl@0
|
712 |
TestNext("@SYMTestCaseID:PDS-SQLITE3-UT-4039: Test blob API");
|
sl@0
|
713 |
TestSqliteBlobApi();
|
sl@0
|
714 |
TestNext("@SYMTestCaseID:PDS-SQLITE3-UT-4040: Test mutex API");
|
sl@0
|
715 |
TestSqliteMutexApi();
|
sl@0
|
716 |
|
sl@0
|
717 |
err = sqlite3_close(TheDb);
|
sl@0
|
718 |
TEST2(err, SQLITE_OK);
|
sl@0
|
719 |
TheDb = 0;
|
sl@0
|
720 |
|
sl@0
|
721 |
TestNext("Test \"sqlite3_shutdown()\"");
|
sl@0
|
722 |
err = sqlite3_shutdown();
|
sl@0
|
723 |
TEST2(err, SQLITE_OK);
|
sl@0
|
724 |
|
sl@0
|
725 |
err = remove(TheTestDbName);
|
sl@0
|
726 |
TEST2(err, 0);
|
sl@0
|
727 |
}
|
sl@0
|
728 |
|
sl@0
|
729 |
static void CreateTestDb()
|
sl@0
|
730 |
{
|
sl@0
|
731 |
int err;
|
sl@0
|
732 |
|
sl@0
|
733 |
err = sqlite3_open(TheTestDbName, &TheDb);
|
sl@0
|
734 |
TEST2(err, SQLITE_OK);
|
sl@0
|
735 |
TEST(TheDb != 0);
|
sl@0
|
736 |
|
sl@0
|
737 |
err = sqlite3_exec(TheDb, "CREATE TABLE A(F1 INTEGER, F2 BIGINT, F3 REAL, F4 TEXT, F5 BLOB)", &exec_callback, 0, 0);
|
sl@0
|
738 |
TEST2(err, SQLITE_OK);
|
sl@0
|
739 |
|
sl@0
|
740 |
err = sqlite3_exec(TheDb, "INSERT INTO A VALUES(1, 1234567891234, 56.12, 'TEXT', x'313233343536')", &exec_callback, 0, 0);
|
sl@0
|
741 |
TEST2(err, SQLITE_OK);
|
sl@0
|
742 |
|
sl@0
|
743 |
err = sqlite3_close(TheDb);
|
sl@0
|
744 |
TEST2(err, SQLITE_OK);
|
sl@0
|
745 |
TheDb = 0;
|
sl@0
|
746 |
}
|
sl@0
|
747 |
|
sl@0
|
748 |
/**
|
sl@0
|
749 |
@SYMTestCaseID SYSLIB-SQLITE3-UT-4005
|
sl@0
|
750 |
@SYMTestCaseDesc Two database connections in the same thread - "read operations" test.
|
sl@0
|
751 |
The test creates two connections to the same database in the same thread.
|
sl@0
|
752 |
Both connections prepare a SELECT statement and call sqlite3_step() each
|
sl@0
|
753 |
thus testing that the file locking in the OS porting layer works properly
|
sl@0
|
754 |
(the SQLite library permits multiple connections to read from the database simultaneously,
|
sl@0
|
755 |
using a shared file locking mode).
|
sl@0
|
756 |
List of called SQLITE3 functions:
|
sl@0
|
757 |
- sqlite3_open;
|
sl@0
|
758 |
- sqlite3_prepare;
|
sl@0
|
759 |
- sqlite3_step;
|
sl@0
|
760 |
- sqlite3_finalize;
|
sl@0
|
761 |
- sqlite3_close;
|
sl@0
|
762 |
@SYMTestPriority High
|
sl@0
|
763 |
@SYMTestActions Two database connections in the same thread - "read operations" test.
|
sl@0
|
764 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
765 |
@SYMREQ REQ8782
|
sl@0
|
766 |
*/
|
sl@0
|
767 |
static void TwoReadersTest()
|
sl@0
|
768 |
{
|
sl@0
|
769 |
int err;
|
sl@0
|
770 |
const char* tail = 0;
|
sl@0
|
771 |
|
sl@0
|
772 |
TestNext("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4005: Test two readers");
|
sl@0
|
773 |
|
sl@0
|
774 |
CreateTestDb();
|
sl@0
|
775 |
|
sl@0
|
776 |
err = sqlite3_open(TheTestDbName, &TheDb);
|
sl@0
|
777 |
TEST2(err, SQLITE_OK);
|
sl@0
|
778 |
TEST(TheDb != 0);
|
sl@0
|
779 |
|
sl@0
|
780 |
err = sqlite3_open(TheTestDbName, &TheDb2);
|
sl@0
|
781 |
TEST2(err, SQLITE_OK);
|
sl@0
|
782 |
TEST(TheDb2 != 0);
|
sl@0
|
783 |
|
sl@0
|
784 |
/* ------------- */
|
sl@0
|
785 |
err = sqlite3_prepare(TheDb, "SELECT * FROM A", -1, &TheStmt, &tail);
|
sl@0
|
786 |
TEST2(err, SQLITE_OK);
|
sl@0
|
787 |
TEST((unsigned int)TheStmt);
|
sl@0
|
788 |
TEST(!tail || strlen(tail) == 0);
|
sl@0
|
789 |
|
sl@0
|
790 |
err = sqlite3_prepare(TheDb2, "SELECT * FROM A", -1, &TheStmt2, &tail);
|
sl@0
|
791 |
TEST2(err, SQLITE_OK);
|
sl@0
|
792 |
TEST((unsigned int)TheStmt2);
|
sl@0
|
793 |
TEST(!tail || strlen(tail) == 0);
|
sl@0
|
794 |
|
sl@0
|
795 |
err = sqlite3_step(TheStmt);
|
sl@0
|
796 |
TEST2(err, SQLITE_ROW);
|
sl@0
|
797 |
|
sl@0
|
798 |
err = sqlite3_step(TheStmt2);
|
sl@0
|
799 |
TEST2(err, SQLITE_ROW);
|
sl@0
|
800 |
|
sl@0
|
801 |
/* ------------- */
|
sl@0
|
802 |
|
sl@0
|
803 |
(void)sqlite3_finalize(TheStmt2);
|
sl@0
|
804 |
TheStmt2 = 0;
|
sl@0
|
805 |
|
sl@0
|
806 |
(void)sqlite3_finalize(TheStmt);
|
sl@0
|
807 |
TheStmt = 0;
|
sl@0
|
808 |
|
sl@0
|
809 |
err = sqlite3_close(TheDb2);
|
sl@0
|
810 |
TEST2(err, SQLITE_OK);
|
sl@0
|
811 |
TheDb2 = 0;
|
sl@0
|
812 |
|
sl@0
|
813 |
err = sqlite3_close(TheDb);
|
sl@0
|
814 |
TEST2(err, SQLITE_OK);
|
sl@0
|
815 |
TheDb = 0;
|
sl@0
|
816 |
|
sl@0
|
817 |
(void)remove(TheTestDbName);
|
sl@0
|
818 |
}
|
sl@0
|
819 |
|
sl@0
|
820 |
/* ///////////////////////////////////////////////////////////////////////////////////// */
|
sl@0
|
821 |
|
sl@0
|
822 |
/**
|
sl@0
|
823 |
@SYMTestCaseID SYSLIB-SQLITE3-UT-4006
|
sl@0
|
824 |
@SYMTestCaseDesc Two database connections in the same thread - "write operations" test.
|
sl@0
|
825 |
The test creates two connections to the same database in the same thread.
|
sl@0
|
826 |
Both connections attempt to execute INSERT statements using an explicit transaction
|
sl@0
|
827 |
thus testing that the file locking in the OS porting layer works properly
|
sl@0
|
828 |
(the SQLite library permits only one connection at a time to write to the database).
|
sl@0
|
829 |
List of called SQLITE3 functions:
|
sl@0
|
830 |
- sqlite3_open;
|
sl@0
|
831 |
- sqlite3_exec;
|
sl@0
|
832 |
- sqlite3_free;
|
sl@0
|
833 |
- sqlite3_close;
|
sl@0
|
834 |
Test case steps:
|
sl@0
|
835 |
- Two connections to the same database created;
|
sl@0
|
836 |
- Both connections begin a deferred transaction;
|
sl@0
|
837 |
- The first connection executes an INSERT statement. The database file should be locked
|
sl@0
|
838 |
for a writing by this connection;
|
sl@0
|
839 |
- The second connection attempts to execute an INSERT statement too. The operation should fail,
|
sl@0
|
840 |
because the database file has been locked by the first connection;
|
sl@0
|
841 |
- The first connection completes the transaction executing a ROLLBACK statement;
|
sl@0
|
842 |
- The second connection makes second attempt to execute the INSERT statement. The execution should
|
sl@0
|
843 |
complete without errors;
|
sl@0
|
844 |
@SYMTestPriority High
|
sl@0
|
845 |
@SYMTestActions Two database connections in the same thread - "write operations" test.
|
sl@0
|
846 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
847 |
@SYMREQ REQ8782
|
sl@0
|
848 |
*/
|
sl@0
|
849 |
static void TwoWritersTest()
|
sl@0
|
850 |
{
|
sl@0
|
851 |
int err;
|
sl@0
|
852 |
char* errmsg = 0;
|
sl@0
|
853 |
|
sl@0
|
854 |
TestNext("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4006: Test two writers");
|
sl@0
|
855 |
|
sl@0
|
856 |
CreateTestDb();
|
sl@0
|
857 |
|
sl@0
|
858 |
err = sqlite3_open(TheTestDbName, &TheDb);
|
sl@0
|
859 |
TEST2(err, SQLITE_OK);
|
sl@0
|
860 |
TEST(TheDb != 0);
|
sl@0
|
861 |
|
sl@0
|
862 |
err = sqlite3_open(TheTestDbName, &TheDb2);
|
sl@0
|
863 |
TEST2(err, SQLITE_OK);
|
sl@0
|
864 |
TEST(TheDb2 != 0);
|
sl@0
|
865 |
|
sl@0
|
866 |
/* ------------- */
|
sl@0
|
867 |
Print("Two database connections, begin a transaction in each of them.\r\n");
|
sl@0
|
868 |
err = sqlite3_exec(TheDb, "BEGIN", 0, 0, 0);
|
sl@0
|
869 |
TEST2(err, SQLITE_OK);
|
sl@0
|
870 |
|
sl@0
|
871 |
err = sqlite3_exec(TheDb2, "BEGIN", 0, 0, 0);
|
sl@0
|
872 |
TEST2(err, SQLITE_OK);
|
sl@0
|
873 |
|
sl@0
|
874 |
Print("Connection 1. Execute an \"INSERT\" statement. Success.\r\n");
|
sl@0
|
875 |
err = sqlite3_exec(TheDb, "INSERT INTO A VALUES(0,0,0.0,'',x'00')", 0, 0, &errmsg);
|
sl@0
|
876 |
if(errmsg)
|
sl@0
|
877 |
{
|
sl@0
|
878 |
PrintSI("Err msg: %s. Err: %d.\r\n", errmsg, err);
|
sl@0
|
879 |
sqlite3_free(errmsg);
|
sl@0
|
880 |
}
|
sl@0
|
881 |
errmsg = 0;
|
sl@0
|
882 |
TEST2(err, SQLITE_OK);
|
sl@0
|
883 |
|
sl@0
|
884 |
Print("Connection 2. Execute an \"INSERT\" statement. Failure. The database is locked.\r\n");
|
sl@0
|
885 |
err = sqlite3_exec(TheDb2, "INSERT INTO A VALUES(0,0,0.0,'',x'00')", 0, 0, &errmsg);
|
sl@0
|
886 |
if(errmsg)
|
sl@0
|
887 |
{
|
sl@0
|
888 |
PrintSI("*** %s. Err: %d.\r\n", errmsg, err);
|
sl@0
|
889 |
sqlite3_free(errmsg);
|
sl@0
|
890 |
}
|
sl@0
|
891 |
errmsg = 0;
|
sl@0
|
892 |
TEST2(err, SQLITE_BUSY);
|
sl@0
|
893 |
|
sl@0
|
894 |
Print("Connection 1. Rollback. The database is unlocked.\r\n");
|
sl@0
|
895 |
err = sqlite3_exec(TheDb, "ROLLBACK", 0, 0, 0);
|
sl@0
|
896 |
TEST2(err, SQLITE_OK);
|
sl@0
|
897 |
|
sl@0
|
898 |
Print("Connection 2. Execute an \"INSERT\" statement. Success.\r\n");
|
sl@0
|
899 |
err = sqlite3_exec(TheDb2, "INSERT INTO A VALUES(0,0,0.0,'',x'00')", 0, 0, &errmsg);
|
sl@0
|
900 |
if(errmsg)
|
sl@0
|
901 |
{
|
sl@0
|
902 |
PrintSI("*** %s. Err: %d.\r\n", errmsg, err);
|
sl@0
|
903 |
sqlite3_free(errmsg);
|
sl@0
|
904 |
}
|
sl@0
|
905 |
errmsg = 0;
|
sl@0
|
906 |
TEST2(err, SQLITE_OK);
|
sl@0
|
907 |
|
sl@0
|
908 |
err = sqlite3_exec(TheDb2, "ROLLBACK", 0, 0, 0);
|
sl@0
|
909 |
TEST2(err, SQLITE_OK);
|
sl@0
|
910 |
|
sl@0
|
911 |
Print("Close database connections.\r\n");
|
sl@0
|
912 |
/* ------------- */
|
sl@0
|
913 |
|
sl@0
|
914 |
err = sqlite3_close(TheDb2);
|
sl@0
|
915 |
TEST2(err, SQLITE_OK);
|
sl@0
|
916 |
TheDb2 = 0;
|
sl@0
|
917 |
|
sl@0
|
918 |
err = sqlite3_close(TheDb);
|
sl@0
|
919 |
TEST2(err, SQLITE_OK);
|
sl@0
|
920 |
TheDb = 0;
|
sl@0
|
921 |
|
sl@0
|
922 |
(void)remove(TheTestDbName);
|
sl@0
|
923 |
}
|
sl@0
|
924 |
|
sl@0
|
925 |
/* ///////////////////////////////////////////////////////////////////////////////////// */
|
sl@0
|
926 |
|
sl@0
|
927 |
static void* ThreadFunc(void* pname)
|
sl@0
|
928 |
{
|
sl@0
|
929 |
int records = 0, err, i;
|
sl@0
|
930 |
sqlite3* db;
|
sl@0
|
931 |
char* errmsg = 0;
|
sl@0
|
932 |
int threadIdx = -1;
|
sl@0
|
933 |
const int KRecordsCount = 500;
|
sl@0
|
934 |
const int KCommitRecordsCount = 2;
|
sl@0
|
935 |
|
sl@0
|
936 |
for(i=0;i<KTestThreadCount;++i)
|
sl@0
|
937 |
{
|
sl@0
|
938 |
if(strcmp(pname, KThreadNames[i]) == 0)
|
sl@0
|
939 |
{
|
sl@0
|
940 |
threadIdx = i;
|
sl@0
|
941 |
break;
|
sl@0
|
942 |
}
|
sl@0
|
943 |
}
|
sl@0
|
944 |
|
sl@0
|
945 |
srand((unsigned)&ThreadFunc);
|
sl@0
|
946 |
|
sl@0
|
947 |
PrintS("Thread \"%s\" - begin\r\n", (char*)pname);
|
sl@0
|
948 |
err = sqlite3_open(TheTestDbName, &db);
|
sl@0
|
949 |
TEST2(err, SQLITE_OK);
|
sl@0
|
950 |
TEST(db != 0);
|
sl@0
|
951 |
|
sl@0
|
952 |
while(records < KRecordsCount)
|
sl@0
|
953 |
{
|
sl@0
|
954 |
if((records % 10) == 0)
|
sl@0
|
955 |
{
|
sl@0
|
956 |
PrintSI("Thread \"%s\", %d records.\r\n", (char*)pname, records);
|
sl@0
|
957 |
}
|
sl@0
|
958 |
err = sqlite3_exec(db, "BEGIN", 0, 0, &errmsg);
|
sl@0
|
959 |
if(err == SQLITE_OK)
|
sl@0
|
960 |
{
|
sl@0
|
961 |
err = sqlite3_exec(db, "INSERT INTO A VALUES(0,0,0.0,'',x'00')", 0, 0, &errmsg);
|
sl@0
|
962 |
if(err == SQLITE_OK)
|
sl@0
|
963 |
{
|
sl@0
|
964 |
err = sqlite3_exec(db, "INSERT INTO A VALUES(0,0,0.0,'',x'00')", 0, 0, &errmsg);
|
sl@0
|
965 |
if(err == SQLITE_OK)
|
sl@0
|
966 |
{
|
sl@0
|
967 |
err = sqlite3_exec(db, "COMMIT", 0, 0, &errmsg);
|
sl@0
|
968 |
}
|
sl@0
|
969 |
}
|
sl@0
|
970 |
}
|
sl@0
|
971 |
TEST(err == SQLITE_OK || err == SQLITE_BUSY);
|
sl@0
|
972 |
if(err == SQLITE_OK)
|
sl@0
|
973 |
{
|
sl@0
|
974 |
TheInsertRecCnt[threadIdx] += KCommitRecordsCount;
|
sl@0
|
975 |
records += KCommitRecordsCount;
|
sl@0
|
976 |
}
|
sl@0
|
977 |
else if(err == SQLITE_BUSY)
|
sl@0
|
978 |
{
|
sl@0
|
979 |
++TheLockErrCnt[threadIdx];
|
sl@0
|
980 |
(void)sqlite3_exec(db, "ROLLBACK", 0, 0, 0);
|
sl@0
|
981 |
if(errmsg)
|
sl@0
|
982 |
{
|
sl@0
|
983 |
char fmt[100];
|
sl@0
|
984 |
strcpy(fmt, "Thread \"");
|
sl@0
|
985 |
strcat(fmt, (char*)pname);
|
sl@0
|
986 |
strcat(fmt, "\". Err msg: %s. Err: %d.\r\n");
|
sl@0
|
987 |
PrintSI(fmt, errmsg, err);
|
sl@0
|
988 |
sqlite3_free(errmsg);
|
sl@0
|
989 |
errmsg = 0;
|
sl@0
|
990 |
}
|
sl@0
|
991 |
usleep((rand() % 3000) + 500);
|
sl@0
|
992 |
}
|
sl@0
|
993 |
}
|
sl@0
|
994 |
|
sl@0
|
995 |
err = sqlite3_close(db);
|
sl@0
|
996 |
TEST2(err, SQLITE_OK);
|
sl@0
|
997 |
|
sl@0
|
998 |
PrintS("Thread \"%s\" - end\r\n", (char*)pname);
|
sl@0
|
999 |
return &TheInsertRecCnt[threadIdx];
|
sl@0
|
1000 |
}
|
sl@0
|
1001 |
|
sl@0
|
1002 |
/**
|
sl@0
|
1003 |
@SYMTestCaseID SYSLIB-SQLITE3-UT-4007
|
sl@0
|
1004 |
@SYMTestCaseDesc Two database connections from different threads - "write operations" test.
|
sl@0
|
1005 |
The test creates two connections to the same database from two different threads.
|
sl@0
|
1006 |
Both connections attempt to execute INSERT statements using an explicit transaction
|
sl@0
|
1007 |
thus testing that the file locking in the OS porting layer works properly
|
sl@0
|
1008 |
(the SQLite library permits only one connection at a time to write to the database).
|
sl@0
|
1009 |
The threads do not use any thread synchronisation objects (mutexes, critical sections, etc...).
|
sl@0
|
1010 |
List of called SQLITE3 functions:
|
sl@0
|
1011 |
- sqlite3_open;
|
sl@0
|
1012 |
- sqlite3_exec;
|
sl@0
|
1013 |
- sqlite3_free;
|
sl@0
|
1014 |
- sqlite3_close;
|
sl@0
|
1015 |
Test case steps:
|
sl@0
|
1016 |
- Two threads created;
|
sl@0
|
1017 |
- Each thread opens a connection to the same database;
|
sl@0
|
1018 |
- No thread synchronisation is used;
|
sl@0
|
1019 |
- Each database connection attempts to insert records in a loop using an explicit transaction;
|
sl@0
|
1020 |
- If the database file is currently locked by the other database connection, the INSERT operation
|
sl@0
|
1021 |
should fail with SQLITE_BUSY error. Otherwise the operation should complete successfully.
|
sl@0
|
1022 |
@SYMTestPriority High
|
sl@0
|
1023 |
@SYMTestActions Two database connections from different threads - "write operations" test.
|
sl@0
|
1024 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
1025 |
@SYMREQ REQ8782
|
sl@0
|
1026 |
*/
|
sl@0
|
1027 |
static void ThreadsTest()
|
sl@0
|
1028 |
{
|
sl@0
|
1029 |
pthread_t threadIds[KTestThreadCount];
|
sl@0
|
1030 |
int err, i;
|
sl@0
|
1031 |
|
sl@0
|
1032 |
TestNext("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4007: Test two writers in two threads");
|
sl@0
|
1033 |
|
sl@0
|
1034 |
CreateTestDb();
|
sl@0
|
1035 |
|
sl@0
|
1036 |
for(i=0;i<KTestThreadCount;++i)
|
sl@0
|
1037 |
{
|
sl@0
|
1038 |
err = pthread_create(&threadIds[i], 0, &ThreadFunc, (void*)KThreadNames[i]);
|
sl@0
|
1039 |
TEST2(err, 0);
|
sl@0
|
1040 |
}
|
sl@0
|
1041 |
|
sl@0
|
1042 |
for(i=0;i<KTestThreadCount;++i)
|
sl@0
|
1043 |
{
|
sl@0
|
1044 |
(void)pthread_join(threadIds[i], 0);
|
sl@0
|
1045 |
PrintIII("Thread %d records written: %d, \"db locked\" errors: %d\r\n", i + 1, TheInsertRecCnt[i], TheLockErrCnt[i]);
|
sl@0
|
1046 |
}
|
sl@0
|
1047 |
|
sl@0
|
1048 |
Print("Test two writers in two threads - end\r\n");
|
sl@0
|
1049 |
(void)remove(TheTestDbName);
|
sl@0
|
1050 |
}
|
sl@0
|
1051 |
|
sl@0
|
1052 |
/* ///////////////////////////////////////////////////////////////////////////////////// */
|
sl@0
|
1053 |
|
sl@0
|
1054 |
static void* ThreadFunc1(void* parg)
|
sl@0
|
1055 |
{
|
sl@0
|
1056 |
int err;
|
sl@0
|
1057 |
sqlite3* db;
|
sl@0
|
1058 |
|
sl@0
|
1059 |
UNUSED_ARG(parg);
|
sl@0
|
1060 |
PrintS("Thread \"%s\" - begin\r\n", KThreadNames[0]);
|
sl@0
|
1061 |
|
sl@0
|
1062 |
err = sqlite3_open(TheTestDbName, &db);
|
sl@0
|
1063 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1064 |
TEST(db != 0);
|
sl@0
|
1065 |
|
sl@0
|
1066 |
(void)sem_wait(&TheSemaphores[0]);/* Wait for a notification from the main thread to begin */
|
sl@0
|
1067 |
|
sl@0
|
1068 |
err = sqlite3_exec(db, "BEGIN", 0, 0, 0);
|
sl@0
|
1069 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1070 |
|
sl@0
|
1071 |
err = sqlite3_exec(db, "INSERT INTO A VALUES(0,0,0.0,'',x'00')", 0, 0, 0);
|
sl@0
|
1072 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1073 |
|
sl@0
|
1074 |
(void)sem_post(&TheSemaphores[1]);/* The database is locked now. Notify thread 2 to attempt an INSERT operation */
|
sl@0
|
1075 |
(void)sem_wait(&TheSemaphores[0]);/* Wait for a notification from thread 2 to continue with the COMMIT operation */
|
sl@0
|
1076 |
|
sl@0
|
1077 |
err = sqlite3_exec(db, "COMMIT", 0, 0, 0);
|
sl@0
|
1078 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1079 |
|
sl@0
|
1080 |
(void)sem_post(&TheSemaphores[1]);/* The database is unlocked. Notify thread 2 to attempt the INSERT operation again */
|
sl@0
|
1081 |
|
sl@0
|
1082 |
err = sqlite3_close(db);
|
sl@0
|
1083 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1084 |
|
sl@0
|
1085 |
PrintS("Thread \"%s\" - end\r\n", KThreadNames[0]);
|
sl@0
|
1086 |
return 0;
|
sl@0
|
1087 |
}
|
sl@0
|
1088 |
|
sl@0
|
1089 |
static void* ThreadFunc2(void* parg)
|
sl@0
|
1090 |
{
|
sl@0
|
1091 |
int err;
|
sl@0
|
1092 |
sqlite3* db;
|
sl@0
|
1093 |
|
sl@0
|
1094 |
UNUSED_ARG(parg);
|
sl@0
|
1095 |
PrintS("Thread \"%s\" - begin\r\n", KThreadNames[1]);
|
sl@0
|
1096 |
|
sl@0
|
1097 |
err = sqlite3_open(TheTestDbName, &db);
|
sl@0
|
1098 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1099 |
TEST(db != 0);
|
sl@0
|
1100 |
|
sl@0
|
1101 |
(void)sem_wait(&TheSemaphores[1]);/* Wait for a notification from thread 1 to attempt an INSERT operation */
|
sl@0
|
1102 |
|
sl@0
|
1103 |
err = sqlite3_exec(db, "INSERT INTO A VALUES(0,0,0.0,'',x'00')", 0, 0, 0);
|
sl@0
|
1104 |
TEST2(err, SQLITE_BUSY);
|
sl@0
|
1105 |
|
sl@0
|
1106 |
(void)sem_post(&TheSemaphores[0]);/* The database is locked. Notify thread 1 to commit and unlock the database */
|
sl@0
|
1107 |
(void)sem_wait(&TheSemaphores[1]);/* Wait for a notification from thread 1 to attempt the INSERT operation again */
|
sl@0
|
1108 |
|
sl@0
|
1109 |
err = sqlite3_exec(db, "INSERT INTO A VALUES(0,0,0.0,'',x'00')", 0, 0, 0);
|
sl@0
|
1110 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1111 |
|
sl@0
|
1112 |
err = sqlite3_close(db);
|
sl@0
|
1113 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1114 |
|
sl@0
|
1115 |
PrintS("Thread \"%s\" - end\r\n", KThreadNames[1]);
|
sl@0
|
1116 |
return 0;
|
sl@0
|
1117 |
}
|
sl@0
|
1118 |
|
sl@0
|
1119 |
/**
|
sl@0
|
1120 |
@SYMTestCaseID SYSLIB-SQLITE3-UT-4008
|
sl@0
|
1121 |
@SYMTestCaseDesc Two database connections from different threads - synchronised "write operations" test.
|
sl@0
|
1122 |
The test creates two connections to the same database from two different threads.
|
sl@0
|
1123 |
Both connections attempt to execute INSERT statements using an explicit transaction
|
sl@0
|
1124 |
thus testing that the file locking in the OS porting layer works properly
|
sl@0
|
1125 |
(the SQLite library permits only one connection at a time to write to the database).
|
sl@0
|
1126 |
The threads use semaphores in order to synchronise the INSERT statements execution.
|
sl@0
|
1127 |
List of called SQLITE3 functions:
|
sl@0
|
1128 |
- sqlite3_open;
|
sl@0
|
1129 |
- sqlite3_exec;
|
sl@0
|
1130 |
- sqlite3_free;
|
sl@0
|
1131 |
- sqlite3_close;
|
sl@0
|
1132 |
Test case steps:
|
sl@0
|
1133 |
- Two threads created;
|
sl@0
|
1134 |
- Each thread opens a connection to the same database;
|
sl@0
|
1135 |
- The first thread begins an explicit transaction and inserts one record to the database.
|
sl@0
|
1136 |
The database file is locked. The first thread notifies the second thread and blocks
|
sl@0
|
1137 |
waiting for a notification from the second thread;
|
sl@0
|
1138 |
- The second thread attempts to execute an INSERT statement. Since the database file is locked
|
sl@0
|
1139 |
by the first thread the INSERT statement execution fails with SQLITE_BUSY. The second thread
|
sl@0
|
1140 |
sends a notification to the first thread to continue and blocks waiting for a notification;
|
sl@0
|
1141 |
- The first thread commits the transaction thus unlocking the database file. A notification is
|
sl@0
|
1142 |
sent to the second thread;
|
sl@0
|
1143 |
- The second thread makes second attempt to INSERT a record and this time the operation should
|
sl@0
|
1144 |
complete successfully;
|
sl@0
|
1145 |
@SYMTestPriority High
|
sl@0
|
1146 |
@SYMTestActions Two database connections from different threads - synchronised "write operations" test.
|
sl@0
|
1147 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
1148 |
@SYMREQ REQ8782
|
sl@0
|
1149 |
*/
|
sl@0
|
1150 |
static void TwoSyncThreadsTest()
|
sl@0
|
1151 |
{
|
sl@0
|
1152 |
const int KTestThreadCount = 2;
|
sl@0
|
1153 |
int i, err;
|
sl@0
|
1154 |
pthread_t threadIds[KTestThreadCount] = {0};
|
sl@0
|
1155 |
thread_begin_routine threadFuncs[KTestThreadCount] = {&ThreadFunc1, &ThreadFunc2};
|
sl@0
|
1156 |
|
sl@0
|
1157 |
TestNext("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4008: Test two writers in two synchronized threads");
|
sl@0
|
1158 |
|
sl@0
|
1159 |
CreateTestDb();
|
sl@0
|
1160 |
|
sl@0
|
1161 |
for(i=0;i<KTestThreadCount;++i)
|
sl@0
|
1162 |
{
|
sl@0
|
1163 |
err = sem_init(&TheSemaphores[i], 0, 0);
|
sl@0
|
1164 |
TEST2(err, 0);
|
sl@0
|
1165 |
}
|
sl@0
|
1166 |
|
sl@0
|
1167 |
for(i=0;i<KTestThreadCount;++i)
|
sl@0
|
1168 |
{
|
sl@0
|
1169 |
err = pthread_create(&threadIds[i], 0, threadFuncs[i], 0);
|
sl@0
|
1170 |
TEST2(err, 0);
|
sl@0
|
1171 |
}
|
sl@0
|
1172 |
|
sl@0
|
1173 |
(void)sem_post(&TheSemaphores[0]);/* Notify thread 1 to begin */
|
sl@0
|
1174 |
|
sl@0
|
1175 |
for(i=0;i<KTestThreadCount;++i)
|
sl@0
|
1176 |
{
|
sl@0
|
1177 |
(void)pthread_join(threadIds[i], 0);
|
sl@0
|
1178 |
}
|
sl@0
|
1179 |
|
sl@0
|
1180 |
(void)remove(TheTestDbName);
|
sl@0
|
1181 |
|
sl@0
|
1182 |
for(i=0;i<KTestThreadCount;++i)
|
sl@0
|
1183 |
{
|
sl@0
|
1184 |
err = sem_destroy(&TheSemaphores[i]);
|
sl@0
|
1185 |
TEST2(err, 0);
|
sl@0
|
1186 |
}
|
sl@0
|
1187 |
}
|
sl@0
|
1188 |
|
sl@0
|
1189 |
/**
|
sl@0
|
1190 |
@SYMTestCaseID SYSLIB-SQLITE3-UT-4009
|
sl@0
|
1191 |
@SYMTestCaseDesc Two database connections "RFileBuf64" test.
|
sl@0
|
1192 |
This test verifies that the file buffer used by the SQLITE OS porting layer works properly.
|
sl@0
|
1193 |
Test steps (in time order):
|
sl@0
|
1194 |
1) Two connections to the same database are created.
|
sl@0
|
1195 |
2) The first connection creates a table and executes a couple of INSERT statements.
|
sl@0
|
1196 |
3) The second connection prepares a SELECT statement against the table, created in (2)
|
sl@0
|
1197 |
Now, if the file buffer in the OS porting layer does not work as expected, step (3) fails,
|
sl@0
|
1198 |
because at step (1) the database size is 0 and that is what the file buffer, used by the second
|
sl@0
|
1199 |
connection, "knows". The "prepare SQL statement" call will fail with a "no such table" error.
|
sl@0
|
1200 |
But if the file buffer works properly, the buffer will be flushed during the "lock file" operation
|
sl@0
|
1201 |
inside the OS porting layer and reloaded with the database data later.
|
sl@0
|
1202 |
@SYMTestPriority High
|
sl@0
|
1203 |
@SYMTestActions Two database connections "RFileBuf64" test.
|
sl@0
|
1204 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
1205 |
@SYMREQ REQ8782
|
sl@0
|
1206 |
*/
|
sl@0
|
1207 |
static void TwoConnectionsTest(void)
|
sl@0
|
1208 |
{
|
sl@0
|
1209 |
int err;
|
sl@0
|
1210 |
const char* tail = 0;
|
sl@0
|
1211 |
const char* errmsg = 0;
|
sl@0
|
1212 |
|
sl@0
|
1213 |
TestNext("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4009: Two database connections test (OS porting layer, RFileBuf64 related)");
|
sl@0
|
1214 |
(void)remove(TheTestDbName);
|
sl@0
|
1215 |
|
sl@0
|
1216 |
TEST(!TheDb);
|
sl@0
|
1217 |
err = sqlite3_open(TheTestDbName, &TheDb);
|
sl@0
|
1218 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1219 |
TEST(TheDb != 0);
|
sl@0
|
1220 |
|
sl@0
|
1221 |
TEST(!TheDb2);
|
sl@0
|
1222 |
err = sqlite3_open(TheTestDbName, &TheDb2);
|
sl@0
|
1223 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1224 |
TEST(TheDb2 != 0);
|
sl@0
|
1225 |
|
sl@0
|
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);
|
sl@0
|
1227 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1228 |
|
sl@0
|
1229 |
TEST(!TheStmt);
|
sl@0
|
1230 |
err = sqlite3_prepare(TheDb2, "SELECT * FROM t1", -1, &TheStmt, &tail);
|
sl@0
|
1231 |
if(err != SQLITE_OK)
|
sl@0
|
1232 |
{
|
sl@0
|
1233 |
errmsg = sqlite3_errmsg(TheDb2);
|
sl@0
|
1234 |
PrintSI("*** Stmt prepare err msg: \"%s\". Error: %d\r\n", errmsg, err);
|
sl@0
|
1235 |
}
|
sl@0
|
1236 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1237 |
TEST((unsigned int)TheStmt);
|
sl@0
|
1238 |
TEST(!tail || strlen(tail) == 0);
|
sl@0
|
1239 |
|
sl@0
|
1240 |
err = sqlite3_step(TheStmt);
|
sl@0
|
1241 |
TEST2(err, SQLITE_ROW);
|
sl@0
|
1242 |
|
sl@0
|
1243 |
err = sqlite3_finalize(TheStmt);
|
sl@0
|
1244 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1245 |
TheStmt = 0;
|
sl@0
|
1246 |
|
sl@0
|
1247 |
err = sqlite3_close(TheDb2);
|
sl@0
|
1248 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1249 |
TheDb2 = 0;
|
sl@0
|
1250 |
|
sl@0
|
1251 |
err = sqlite3_close(TheDb);
|
sl@0
|
1252 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1253 |
TheDb = 0;
|
sl@0
|
1254 |
(void)remove(TheTestDbName);
|
sl@0
|
1255 |
}
|
sl@0
|
1256 |
|
sl@0
|
1257 |
static void UdfInsertFunc(sqlite3_context* aCtx, int aCnt, sqlite3_value** aValues)
|
sl@0
|
1258 |
{
|
sl@0
|
1259 |
int err;
|
sl@0
|
1260 |
const char* tail = 0;
|
sl@0
|
1261 |
sqlite3* db = 0;
|
sl@0
|
1262 |
|
sl@0
|
1263 |
TEST2(aCnt, 1);
|
sl@0
|
1264 |
|
sl@0
|
1265 |
db = sqlite3_context_db_handle(aCtx);/* to test that sqlite3_context_db_handle() can be called */
|
sl@0
|
1266 |
TEST(db != 0);
|
sl@0
|
1267 |
|
sl@0
|
1268 |
TEST(!TheStmt);
|
sl@0
|
1269 |
err = sqlite3_prepare(TheDb, "INSERT INTO t1(x) VALUES(:Val)", -1, &TheStmt, &tail);
|
sl@0
|
1270 |
if(err == SQLITE_OK)
|
sl@0
|
1271 |
{
|
sl@0
|
1272 |
err = sqlite3_bind_value(TheStmt, 1, aValues[0]);
|
sl@0
|
1273 |
if(err == SQLITE_OK)
|
sl@0
|
1274 |
{
|
sl@0
|
1275 |
err = sqlite3_step(TheStmt);
|
sl@0
|
1276 |
}
|
sl@0
|
1277 |
}
|
sl@0
|
1278 |
(void)sqlite3_finalize(TheStmt);
|
sl@0
|
1279 |
TheStmt = 0;
|
sl@0
|
1280 |
|
sl@0
|
1281 |
sqlite3_result_int(aCtx, err);
|
sl@0
|
1282 |
}
|
sl@0
|
1283 |
|
sl@0
|
1284 |
/**
|
sl@0
|
1285 |
@SYMTestCaseID SYSLIB-SQLITE3-UT-4027
|
sl@0
|
1286 |
@SYMTestCaseDesc sqlite3_bind_value() and sqlite3_column_value() test.
|
sl@0
|
1287 |
List of covered SQLITE3 functions:
|
sl@0
|
1288 |
- sqlite3_bind_value();
|
sl@0
|
1289 |
- sqlite3_column_value();
|
sl@0
|
1290 |
Test case steps:
|
sl@0
|
1291 |
- The test creates and calls a user defined function - UdfInsertFunc().
|
sl@0
|
1292 |
- The user defined function prepares and executes an INSERT statement,
|
sl@0
|
1293 |
where the sqlite3_bind_value() call is used to bind the passed from the caller
|
sl@0
|
1294 |
integer column value.
|
sl@0
|
1295 |
- After the user defined function call completes, the test prepares a SELECT
|
sl@0
|
1296 |
statement to verify the just inserted column value using sqlite3_column_int()
|
sl@0
|
1297 |
@SYMTestPriority High
|
sl@0
|
1298 |
@SYMTestActions sqlite3_bind_value() and sqlite3_column_int() test.
|
sl@0
|
1299 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
1300 |
@SYMREQ REQ8782
|
sl@0
|
1301 |
*/
|
sl@0
|
1302 |
static void UdfTest()
|
sl@0
|
1303 |
{
|
sl@0
|
1304 |
int err;
|
sl@0
|
1305 |
int val;
|
sl@0
|
1306 |
const char* tail = 0;
|
sl@0
|
1307 |
const int KTestColumnValue = 11234;
|
sl@0
|
1308 |
char sqlBuf[100];
|
sl@0
|
1309 |
|
sl@0
|
1310 |
TestNext("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4027: User defined function test");
|
sl@0
|
1311 |
|
sl@0
|
1312 |
(void)remove(TheTestDbName);
|
sl@0
|
1313 |
TEST(!TheDb);
|
sl@0
|
1314 |
err = sqlite3_open(TheTestDbName, &TheDb);
|
sl@0
|
1315 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1316 |
TEST(TheDb != 0);
|
sl@0
|
1317 |
|
sl@0
|
1318 |
err = sqlite3_exec(TheDb, "CREATE TABLE t1(x INTEGER)", 0, 0, 0);
|
sl@0
|
1319 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1320 |
|
sl@0
|
1321 |
err = sqlite3_create_function(TheDb, "UdfInsert", 1, SQLITE_UTF8, NULL, &UdfInsertFunc, NULL, NULL);
|
sl@0
|
1322 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1323 |
|
sl@0
|
1324 |
//Execute an INSERT statement via UDF
|
sl@0
|
1325 |
TEST(!TheStmt2);
|
sl@0
|
1326 |
sprintf(sqlBuf, "SELECT UdfInsert(%d)", KTestColumnValue);
|
sl@0
|
1327 |
err = sqlite3_prepare(TheDb, sqlBuf, -1, &TheStmt2, &tail);
|
sl@0
|
1328 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1329 |
err = sqlite3_step(TheStmt2);
|
sl@0
|
1330 |
TEST2(err, SQLITE_ROW);
|
sl@0
|
1331 |
val = sqlite3_column_int(TheStmt2, 0);
|
sl@0
|
1332 |
TEST2(val, SQLITE_DONE);
|
sl@0
|
1333 |
(void)sqlite3_finalize(TheStmt2);
|
sl@0
|
1334 |
TheStmt2 = 0;
|
sl@0
|
1335 |
|
sl@0
|
1336 |
//Verify the inserted column value
|
sl@0
|
1337 |
TEST(!TheStmt2);
|
sl@0
|
1338 |
err = sqlite3_prepare(TheDb, "SELECT x FROM t1", -1, &TheStmt2, &tail);
|
sl@0
|
1339 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1340 |
err = sqlite3_step(TheStmt2);
|
sl@0
|
1341 |
TEST2(err, SQLITE_ROW);
|
sl@0
|
1342 |
val = sqlite3_column_int(TheStmt2,0);
|
sl@0
|
1343 |
TEST2(val, KTestColumnValue);
|
sl@0
|
1344 |
(void)sqlite3_finalize(TheStmt2);
|
sl@0
|
1345 |
TheStmt2 = 0;
|
sl@0
|
1346 |
|
sl@0
|
1347 |
err = sqlite3_close(TheDb);
|
sl@0
|
1348 |
TEST2(err, SQLITE_OK);
|
sl@0
|
1349 |
TheDb = 0;
|
sl@0
|
1350 |
(void)remove(TheTestDbName);
|
sl@0
|
1351 |
}
|
sl@0
|
1352 |
|
sl@0
|
1353 |
/* ///////////////////////////////////////////////////////////////////////////////////// */
|
sl@0
|
1354 |
|
sl@0
|
1355 |
int main(int argc, void** argv)
|
sl@0
|
1356 |
{
|
sl@0
|
1357 |
UNUSED_ARG(argc);
|
sl@0
|
1358 |
UNUSED_ARG(argv);
|
sl@0
|
1359 |
|
sl@0
|
1360 |
TestOpen("t_sqliteapi test");
|
sl@0
|
1361 |
TestTitle();
|
sl@0
|
1362 |
|
sl@0
|
1363 |
TestHeapMark();
|
sl@0
|
1364 |
|
sl@0
|
1365 |
TestEnvCreate();
|
sl@0
|
1366 |
|
sl@0
|
1367 |
TestSqliteApi();
|
sl@0
|
1368 |
TwoReadersTest();
|
sl@0
|
1369 |
TwoWritersTest();
|
sl@0
|
1370 |
ThreadsTest();
|
sl@0
|
1371 |
TwoSyncThreadsTest();
|
sl@0
|
1372 |
TwoConnectionsTest();
|
sl@0
|
1373 |
UdfTest();
|
sl@0
|
1374 |
|
sl@0
|
1375 |
TestEnvDestroy();
|
sl@0
|
1376 |
|
sl@0
|
1377 |
TestHeapMarkEnd();
|
sl@0
|
1378 |
|
sl@0
|
1379 |
TestEnd();
|
sl@0
|
1380 |
TestClose();
|
sl@0
|
1381 |
|
sl@0
|
1382 |
return 0;
|
sl@0
|
1383 |
}
|