First public contribution.
3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
6 # May you do good and not evil.
7 # May you find forgiveness for yourself and forgive others.
8 # May you share freely, never taking more than you give.
10 #***********************************************************************
12 # The focus of this file is testing the code in test_async.c.
13 # Specifically, it tests that the xFullPathname() method of
14 # of the asynchronous vfs works correctly.
16 # $Id: async3.test,v 1.3 2007/11/05 17:01:08 danielk1977 Exp $
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
21 if { [info commands sqlite3async_enable]=="" } {
22 # The async logic is not built into this system
23 puts "Skipping async3 tests: not compiled with required features"
33 chocolate/banana/vanilla/file.db
34 chocolate//banana/vanilla/file.db
35 chocolate/./banana//vanilla/file.db
36 chocolate/banana/./vanilla/file.db
37 chocolate/banana/../banana/vanilla/file.db
38 chocolate/banana/./vanilla/extra_bit/../file.db
42 file mkdir [file join chocolate banana vanilla]
43 file delete -force chocolate/banana/vanilla/file.db
44 file delete -force chocolate/banana/vanilla/file.db-journal
48 sqlite3 db chocolate/banana/vanilla/file.db
50 CREATE TABLE abc(a, b, c);
52 INSERT INTO abc VALUES(1, 2, 3);
59 do_test async3-1.$N.1 {
60 execsql {SELECT * FROM abc} db2
62 do_test async3-1.$N.2 {
63 catchsql {INSERT INTO abc VALUES(4, 5, 6)} db2
64 } {1 {database is locked}}
70 sqlite3async_halt idle
72 sqlite3async_halt never