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 #***********************************************************************
11 # This file implements regression tests for SQLite library. The
12 # focus of this script is testing the file name handling provided
13 # by the "win32-longpath" VFS.
16 if {$tcl_platform(platform)!="windows"} return
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
20 set testprefix win32longpath
23 file_control_vfsname db
28 set path [file nativename $rawPath]
29 sqlite3 db [file join $path test.db] -vfs win32-longpath
32 file_control_vfsname db
39 INSERT INTO t1 VALUES(1);
40 INSERT INTO t1 VALUES(2);
41 INSERT INTO t1 VALUES(3);
42 INSERT INTO t1 VALUES(4);
43 SELECT x FROM t1 ORDER BY x;
48 set longPath(1) \\\\?\\$path\\[pid]
49 set uriPath(1a) %5C%5C%3F%5C$path\\[pid]
50 set uriPath(1b) %5C%5C%3F%5C$rawPath/[pid]
52 make_win32_dir $longPath(1)
54 set longPath(2) $longPath(1)\\[string repeat X 255]
55 set uriPath(2a) $uriPath(1a)\\[string repeat X 255]
56 set uriPath(2b) $uriPath(1b)/[string repeat X 255]
58 make_win32_dir $longPath(2)
60 set longPath(3) $longPath(2)\\[string repeat Y 255]
61 set uriPath(3a) $uriPath(2a)\\[string repeat Y 255]
62 set uriPath(3b) $uriPath(2b)/[string repeat Y 255]
64 make_win32_dir $longPath(3)
66 set fileName $longPath(3)\\test.db
68 set uri(1a) file:$uriPath(3a)\\test.db
69 set uri(1b) file:$uriPath(3b)/test.db
70 set uri(1c) file:///$uriPath(3a)\\test.db
71 set uri(1d) file:///$uriPath(3b)/test.db
72 set uri(1e) file://localhost/$uriPath(3a)\\test.db
73 set uri(1f) file://localhost/$uriPath(3b)/test.db
76 list [catch {sqlite3 db2 [string range $fileName 4 end]} msg] $msg
77 } {1 {unable to open database file}}
79 sqlite3 db3 $fileName -vfs win32-longpath
85 INSERT INTO t1 VALUES(5);
86 INSERT INTO t1 VALUES(6);
87 INSERT INTO t1 VALUES(7);
88 INSERT INTO t1 VALUES(8);
89 SELECT x FROM t1 ORDER BY x;
95 # puts " Database exists \{[exists_win32_path $fileName]\}"
97 sqlite3 db3 $fileName -vfs win32-longpath
101 PRAGMA journal_mode = WAL;
108 INSERT INTO t1 VALUES(9);
109 INSERT INTO t1 VALUES(10);
110 INSERT INTO t1 VALUES(11);
111 INSERT INTO t1 VALUES(12);
112 SELECT x FROM t1 ORDER BY x;
115 } {5 6 7 8 9 10 11 12}
118 # puts " Database exists \{[exists_win32_path $fileName]\}"
120 foreach tn {1a 1b 1c 1d 1e 1f} {
121 sqlite3 db3 $uri($tn) -vfs win32-longpath -uri 1 -translatefilename 0
125 SELECT x FROM t1 ORDER BY x;
127 } {5 6 7 8 9 10 11 12}
132 do_delete_win32_file $fileName
133 # puts " Files remaining \{[find_win32_file $longPath(3)\\*]\}"
135 do_remove_win32_dir $longPath(3)
136 do_remove_win32_dir $longPath(2)
137 do_remove_win32_dir $longPath(1)