Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: third_party/sqlite/sqlite-src-3170000/test/shell1.test

Issue 2747283002: [sql] Import reference version of SQLite 3.17.. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # 2009 Nov 11
2 #
3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
5 #
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.
9 #
10 #***********************************************************************
11 #
12 # The focus of this file is testing the CLI shell tool.
13 #
14 #
15
16 # Test plan:
17 #
18 # shell1-1.*: Basic command line option handling.
19 # shell1-2.*: Basic "dot" command token parsing.
20 # shell1-3.*: Basic test that "dot" command can be called.
21 #
22 set testdir [file dirname $argv0]
23 source $testdir/tester.tcl
24 set CLI [test_find_cli]
25 db close
26 forcedelete test.db test.db-journal test.db-wal
27 sqlite3 db test.db
28
29 #----------------------------------------------------------------------------
30 # Test cases shell1-1.*: Basic command line option handling.
31 #
32
33 # invalid option
34 do_test shell1-1.1.1 {
35 set res [catchcmd "-bad test.db" ""]
36 set rc [lindex $res 0]
37 list $rc \
38 [regexp {Error: unknown option: -bad} $res]
39 } {1 1}
40 do_test shell1-1.1.1b {
41 set res [catchcmd "test.db -bad" ""]
42 set rc [lindex $res 0]
43 list $rc \
44 [regexp {Error: unknown option: -bad} $res]
45 } {1 1}
46 # error on extra options
47 do_test shell1-1.1.2 {
48 catchcmd "test.db \"select+3\" \"select+4\"" ""
49 } {0 {3
50 4}}
51 # error on extra options
52 do_test shell1-1.1.3 {
53 catchcmd "test.db FOO test.db BAD" ".quit"
54 } {1 {Error: near "FOO": syntax error}}
55
56 # -help
57 do_test shell1-1.2.1 {
58 set res [catchcmd "-help test.db" ""]
59 set rc [lindex $res 0]
60 list $rc \
61 [regexp {Usage} $res] \
62 [regexp {\-init} $res] \
63 [regexp {\-version} $res]
64 } {1 1 1 1}
65
66 # -init filename read/process named file
67 do_test shell1-1.3.1 {
68 catchcmd "-init FOO test.db" ""
69 } {0 {}}
70 do_test shell1-1.3.2 {
71 catchcmd "-init FOO test.db .quit BAD" ""
72 } {0 {}}
73 do_test shell1-1.3.3 {
74 catchcmd "-init FOO test.db BAD .quit" ""
75 } {1 {Error: near "BAD": syntax error}}
76
77 # -echo print commands before execution
78 do_test shell1-1.4.1 {
79 catchcmd "-echo test.db" ""
80 } {0 {}}
81
82 # -[no]header turn headers on or off
83 do_test shell1-1.5.1 {
84 catchcmd "-header test.db" ""
85 } {0 {}}
86 do_test shell1-1.5.2 {
87 catchcmd "-noheader test.db" ""
88 } {0 {}}
89
90 # -bail stop after hitting an error
91 do_test shell1-1.6.1 {
92 catchcmd "-bail test.db" ""
93 } {0 {}}
94
95 # -interactive force interactive I/O
96 do_test shell1-1.7.1 {
97 set res [catchcmd "-interactive test.db" ".quit"]
98 set rc [lindex $res 0]
99 list $rc \
100 [regexp {SQLite version} $res] \
101 [regexp {Enter ".help" for usage hints} $res]
102 } {0 1 1}
103
104 # -batch force batch I/O
105 do_test shell1-1.8.1 {
106 catchcmd "-batch test.db" ""
107 } {0 {}}
108
109 # -column set output mode to 'column'
110 do_test shell1-1.9.1 {
111 catchcmd "-column test.db" ""
112 } {0 {}}
113
114 # -csv set output mode to 'csv'
115 do_test shell1-1.10.1 {
116 catchcmd "-csv test.db" ""
117 } {0 {}}
118
119 # -html set output mode to HTML
120 do_test shell1-1.11.1 {
121 catchcmd "-html test.db" ""
122 } {0 {}}
123
124 # -line set output mode to 'line'
125 do_test shell1-1.12.1 {
126 catchcmd "-line test.db" ""
127 } {0 {}}
128
129 # -list set output mode to 'list'
130 do_test shell1-1.13.1 {
131 catchcmd "-list test.db" ""
132 } {0 {}}
133
134 # -separator 'x' set output field separator (|)
135 do_test shell1-1.14.1 {
136 catchcmd "-separator 'x' test.db" ""
137 } {0 {}}
138 do_test shell1-1.14.2 {
139 catchcmd "-separator x test.db" ""
140 } {0 {}}
141 do_test shell1-1.14.3 {
142 set res [catchcmd "-separator" ""]
143 set rc [lindex $res 0]
144 list $rc \
145 [regexp {Error: missing argument to -separator} $res]
146 } {1 1}
147
148 # -stats print memory stats before each finalize
149 do_test shell1-1.14b.1 {
150 catchcmd "-stats test.db" ""
151 } {0 {}}
152
153 # -nullvalue 'text' set text string for NULL values
154 do_test shell1-1.15.1 {
155 catchcmd "-nullvalue 'x' test.db" ""
156 } {0 {}}
157 do_test shell1-1.15.2 {
158 catchcmd "-nullvalue x test.db" ""
159 } {0 {}}
160 do_test shell1-1.15.3 {
161 set res [catchcmd "-nullvalue" ""]
162 set rc [lindex $res 0]
163 list $rc \
164 [regexp {Error: missing argument to -nullvalue} $res]
165 } {1 1}
166
167 # -version show SQLite version
168 do_test shell1-1.16.1 {
169 set x [catchcmd "-version test.db" ""]
170 } {/3.[0-9.]+ 20\d\d-[01]\d-\d\d \d\d:\d\d:\d\d [0-9a-f]+/}
171
172 #----------------------------------------------------------------------------
173 # Test cases shell1-2.*: Basic "dot" command token parsing.
174 #
175
176 # check first token handling
177 do_test shell1-2.1.1 {
178 catchcmd "test.db" ".foo"
179 } {1 {Error: unknown command or invalid arguments: "foo". Enter ".help" for hel p}}
180 do_test shell1-2.1.2 {
181 catchcmd "test.db" ".\"foo OFF\""
182 } {1 {Error: unknown command or invalid arguments: "foo OFF". Enter ".help" for help}}
183 do_test shell1-2.1.3 {
184 catchcmd "test.db" ".\'foo OFF\'"
185 } {1 {Error: unknown command or invalid arguments: "foo OFF". Enter ".help" for help}}
186
187 # unbalanced quotes
188 do_test shell1-2.2.1 {
189 catchcmd "test.db" ".\"foo OFF"
190 } {1 {Error: unknown command or invalid arguments: "foo OFF". Enter ".help" for help}}
191 do_test shell1-2.2.2 {
192 catchcmd "test.db" ".\'foo OFF"
193 } {1 {Error: unknown command or invalid arguments: "foo OFF". Enter ".help" for help}}
194 do_test shell1-2.2.3 {
195 catchcmd "test.db" ".explain \"OFF"
196 } {0 {}}
197 do_test shell1-2.2.4 {
198 catchcmd "test.db" ".explain \'OFF"
199 } {0 {}}
200 do_test shell1-2.2.5 {
201 catchcmd "test.db" ".mode \"insert FOO"
202 } {1 {Error: mode should be one of: ascii column csv html insert line list quote tabs tcl}}
203 do_test shell1-2.2.6 {
204 catchcmd "test.db" ".mode \'insert FOO"
205 } {1 {Error: mode should be one of: ascii column csv html insert line list quote tabs tcl}}
206
207 # check multiple tokens, and quoted tokens
208 do_test shell1-2.3.1 {
209 catchcmd "test.db" ".explain 1"
210 } {0 {}}
211 do_test shell1-2.3.2 {
212 catchcmd "test.db" ".explain on"
213 } {0 {}}
214 do_test shell1-2.3.3 {
215 catchcmd "test.db" ".explain \"1 2 3\""
216 } {1 {ERROR: Not a boolean value: "1 2 3". Assuming "no".}}
217 do_test shell1-2.3.4 {
218 catchcmd "test.db" ".explain \"OFF\""
219 } {0 {}}
220 do_test shell1-2.3.5 {
221 catchcmd "test.db" ".\'explain\' \'OFF\'"
222 } {0 {}}
223 do_test shell1-2.3.6 {
224 catchcmd "test.db" ".explain \'OFF\'"
225 } {0 {}}
226 do_test shell1-2.3.7 {
227 catchcmd "test.db" ".\'explain\' \'OFF\'"
228 } {0 {}}
229
230 # check quoted args are unquoted
231 do_test shell1-2.4.1 {
232 catchcmd "test.db" ".mode FOO"
233 } {1 {Error: mode should be one of: ascii column csv html insert line list quote tabs tcl}}
234 do_test shell1-2.4.2 {
235 catchcmd "test.db" ".mode csv"
236 } {0 {}}
237 do_test shell1-2.4.2 {
238 catchcmd "test.db" ".mode \"csv\""
239 } {0 {}}
240
241
242 #----------------------------------------------------------------------------
243 # Test cases shell1-3.*: Basic test that "dot" command can be called.
244 #
245
246 # .backup ?DB? FILE Backup DB (default "main") to FILE
247 do_test shell1-3.1.1 {
248 catchcmd "test.db" ".backup"
249 } {1 {missing FILENAME argument on .backup}}
250 do_test shell1-3.1.2 {
251 catchcmd "test.db" ".backup FOO"
252 } {0 {}}
253 do_test shell1-3.1.3 {
254 catchcmd "test.db" ".backup FOO BAR"
255 } {1 {Error: unknown database FOO}}
256 do_test shell1-3.1.4 {
257 # too many arguments
258 catchcmd "test.db" ".backup FOO BAR BAD"
259 } {1 {too many arguments to .backup}}
260
261 # .bail ON|OFF Stop after hitting an error. Default OFF
262 do_test shell1-3.2.1 {
263 catchcmd "test.db" ".bail"
264 } {1 {Usage: .bail on|off}}
265 do_test shell1-3.2.2 {
266 catchcmd "test.db" ".bail ON"
267 } {0 {}}
268 do_test shell1-3.2.3 {
269 catchcmd "test.db" ".bail OFF"
270 } {0 {}}
271 do_test shell1-3.2.4 {
272 # too many arguments
273 catchcmd "test.db" ".bail OFF BAD"
274 } {1 {Usage: .bail on|off}}
275
276 ifcapable vtab {
277 # .databases List names and files of attached databases
278 do_test shell1-3.3.1 {
279 catchcmd "-csv test.db" ".databases"
280 } "/0.+main.+[string map {/ ".{1,2}"} [string range [get_pwd] 0 10]].*/"
281 do_test shell1-3.3.2 {
282 # extra arguments ignored
283 catchcmd "test.db" ".databases BAD"
284 } "/0.+main.+[string map {/ ".{1,2}"} [string range [get_pwd] 0 10]].*/"
285 }
286
287 # .dump ?TABLE? ... Dump the database in an SQL text format
288 # If TABLE specified, only dump tables matching
289 # LIKE pattern TABLE.
290 do_test shell1-3.4.1 {
291 set res [catchcmd "test.db" ".dump"]
292 list [regexp {BEGIN TRANSACTION;} $res] \
293 [regexp {COMMIT;} $res]
294 } {1 1}
295 do_test shell1-3.4.2 {
296 set res [catchcmd "test.db" ".dump FOO"]
297 list [regexp {BEGIN TRANSACTION;} $res] \
298 [regexp {COMMIT;} $res]
299 } {1 1}
300 do_test shell1-3.4.3 {
301 # too many arguments
302 catchcmd "test.db" ".dump FOO BAD"
303 } {1 {Usage: .dump ?LIKE-PATTERN?}}
304
305 # .echo ON|OFF Turn command echo on or off
306 do_test shell1-3.5.1 {
307 catchcmd "test.db" ".echo"
308 } {1 {Usage: .echo on|off}}
309 do_test shell1-3.5.2 {
310 catchcmd "test.db" ".echo ON"
311 } {0 {}}
312 do_test shell1-3.5.3 {
313 catchcmd "test.db" ".echo OFF"
314 } {0 {}}
315 do_test shell1-3.5.4 {
316 # too many arguments
317 catchcmd "test.db" ".echo OFF BAD"
318 } {1 {Usage: .echo on|off}}
319
320 # .exit Exit this program
321 do_test shell1-3.6.1 {
322 catchcmd "test.db" ".exit"
323 } {0 {}}
324
325 # .explain ON|OFF Turn output mode suitable for EXPLAIN on or off.
326 do_test shell1-3.7.1 {
327 catchcmd "test.db" ".explain"
328 # explain is the exception to the booleans. without an option, it turns it on .
329 } {0 {}}
330 do_test shell1-3.7.2 {
331 catchcmd "test.db" ".explain ON"
332 } {0 {}}
333 do_test shell1-3.7.3 {
334 catchcmd "test.db" ".explain OFF"
335 } {0 {}}
336 do_test shell1-3.7.4 {
337 # extra arguments ignored
338 catchcmd "test.db" ".explain OFF BAD"
339 } {0 {}}
340
341
342 # .header(s) ON|OFF Turn display of headers on or off
343 do_test shell1-3.9.1 {
344 catchcmd "test.db" ".header"
345 } {1 {Usage: .headers on|off}}
346 do_test shell1-3.9.2 {
347 catchcmd "test.db" ".header ON"
348 } {0 {}}
349 do_test shell1-3.9.3 {
350 catchcmd "test.db" ".header OFF"
351 } {0 {}}
352 do_test shell1-3.9.4 {
353 # too many arguments
354 catchcmd "test.db" ".header OFF BAD"
355 } {1 {Usage: .headers on|off}}
356
357 do_test shell1-3.9.5 {
358 catchcmd "test.db" ".headers"
359 } {1 {Usage: .headers on|off}}
360 do_test shell1-3.9.6 {
361 catchcmd "test.db" ".headers ON"
362 } {0 {}}
363 do_test shell1-3.9.7 {
364 catchcmd "test.db" ".headers OFF"
365 } {0 {}}
366 do_test shell1-3.9.8 {
367 # too many arguments
368 catchcmd "test.db" ".headers OFF BAD"
369 } {1 {Usage: .headers on|off}}
370
371 # .help Show this message
372 do_test shell1-3.10.1 {
373 set res [catchcmd "test.db" ".help"]
374 # look for a few of the possible help commands
375 list [regexp {.help} $res] \
376 [regexp {.quit} $res] \
377 [regexp {.show} $res]
378 } {1 1 1}
379 do_test shell1-3.10.2 {
380 # we allow .help to take extra args (it is help after all)
381 set res [catchcmd "test.db" ".help BAD"]
382 # look for a few of the possible help commands
383 list [regexp {.help} $res] \
384 [regexp {.quit} $res] \
385 [regexp {.show} $res]
386 } {1 1 1}
387
388 # .import FILE TABLE Import data from FILE into TABLE
389 do_test shell1-3.11.1 {
390 catchcmd "test.db" ".import"
391 } {1 {Usage: .import FILE TABLE}}
392 do_test shell1-3.11.2 {
393 catchcmd "test.db" ".import FOO"
394 } {1 {Usage: .import FILE TABLE}}
395 #do_test shell1-3.11.2 {
396 # catchcmd "test.db" ".import FOO BAR"
397 #} {1 {Error: no such table: BAR}}
398 do_test shell1-3.11.3 {
399 # too many arguments
400 catchcmd "test.db" ".import FOO BAR BAD"
401 } {1 {Usage: .import FILE TABLE}}
402
403 # .indexes ?TABLE? Show names of all indexes
404 # If TABLE specified, only show indexes for tables
405 # matching LIKE pattern TABLE.
406 do_test shell1-3.12.1 {
407 catchcmd "test.db" ".indexes"
408 } {0 {}}
409 do_test shell1-3.12.2 {
410 catchcmd "test.db" ".indexes FOO"
411 } {0 {}}
412 do_test shell1-3.12.2-legacy {
413 catchcmd "test.db" ".indices FOO"
414 } {0 {}}
415 do_test shell1-3.12.3 {
416 # too many arguments
417 catchcmd "test.db" ".indexes FOO BAD"
418 } {1 {Usage: .indexes ?LIKE-PATTERN?}}
419
420 # .mode MODE ?TABLE? Set output mode where MODE is one of:
421 # ascii Columns/rows delimited by 0x1F and 0x1E
422 # csv Comma-separated values
423 # column Left-aligned columns. (See .width)
424 # html HTML <table> code
425 # insert SQL insert statements for TABLE
426 # line One value per line
427 # list Values delimited by .separator strings
428 # tabs Tab-separated values
429 # tcl TCL list elements
430 do_test shell1-3.13.1 {
431 catchcmd "test.db" ".mode"
432 } {1 {Error: mode should be one of: ascii column csv html insert line list quote tabs tcl}}
433 do_test shell1-3.13.2 {
434 catchcmd "test.db" ".mode FOO"
435 } {1 {Error: mode should be one of: ascii column csv html insert line list quote tabs tcl}}
436 do_test shell1-3.13.3 {
437 catchcmd "test.db" ".mode csv"
438 } {0 {}}
439 do_test shell1-3.13.4 {
440 catchcmd "test.db" ".mode column"
441 } {0 {}}
442 do_test shell1-3.13.5 {
443 catchcmd "test.db" ".mode html"
444 } {0 {}}
445 do_test shell1-3.13.6 {
446 catchcmd "test.db" ".mode insert"
447 } {0 {}}
448 do_test shell1-3.13.7 {
449 catchcmd "test.db" ".mode line"
450 } {0 {}}
451 do_test shell1-3.13.8 {
452 catchcmd "test.db" ".mode list"
453 } {0 {}}
454 do_test shell1-3.13.9 {
455 catchcmd "test.db" ".mode tabs"
456 } {0 {}}
457 do_test shell1-3.13.10 {
458 catchcmd "test.db" ".mode tcl"
459 } {0 {}}
460 do_test shell1-3.13.11 {
461 # extra arguments ignored
462 catchcmd "test.db" ".mode tcl BAD"
463 } {0 {}}
464
465 # don't allow partial mode type matches
466 do_test shell1-3.13.12 {
467 catchcmd "test.db" ".mode l"
468 } {1 {Error: mode should be one of: ascii column csv html insert line list quote tabs tcl}}
469 do_test shell1-3.13.13 {
470 catchcmd "test.db" ".mode li"
471 } {1 {Error: mode should be one of: ascii column csv html insert line list quote tabs tcl}}
472 do_test shell1-3.13.14 {
473 catchcmd "test.db" ".mode lin"
474 } {0 {}}
475
476 # .nullvalue STRING Print STRING in place of NULL values
477 do_test shell1-3.14.1 {
478 catchcmd "test.db" ".nullvalue"
479 } {1 {Usage: .nullvalue STRING}}
480 do_test shell1-3.14.2 {
481 catchcmd "test.db" ".nullvalue FOO"
482 } {0 {}}
483 do_test shell1-3.14.3 {
484 # too many arguments
485 catchcmd "test.db" ".nullvalue FOO BAD"
486 } {1 {Usage: .nullvalue STRING}}
487
488 # .output FILENAME Send output to FILENAME
489 do_test shell1-3.15.1 {
490 catchcmd "test.db" ".output"
491 } {0 {}}
492 do_test shell1-3.15.2 {
493 catchcmd "test.db" ".output FOO"
494 } {0 {}}
495 do_test shell1-3.15.3 {
496 # too many arguments
497 catchcmd "test.db" ".output FOO BAD"
498 } {1 {Usage: .output FILE}}
499
500 # .output stdout Send output to the screen
501 do_test shell1-3.16.1 {
502 catchcmd "test.db" ".output stdout"
503 } {0 {}}
504 do_test shell1-3.16.2 {
505 # too many arguments
506 catchcmd "test.db" ".output stdout BAD"
507 } {1 {Usage: .output FILE}}
508
509 # .prompt MAIN CONTINUE Replace the standard prompts
510 do_test shell1-3.17.1 {
511 catchcmd "test.db" ".prompt"
512 } {0 {}}
513 do_test shell1-3.17.2 {
514 catchcmd "test.db" ".prompt FOO"
515 } {0 {}}
516 do_test shell1-3.17.3 {
517 catchcmd "test.db" ".prompt FOO BAR"
518 } {0 {}}
519 do_test shell1-3.17.4 {
520 # too many arguments
521 catchcmd "test.db" ".prompt FOO BAR BAD"
522 } {0 {}}
523
524 # .quit Exit this program
525 do_test shell1-3.18.1 {
526 catchcmd "test.db" ".quit"
527 } {0 {}}
528 do_test shell1-3.18.2 {
529 # too many arguments
530 catchcmd "test.db" ".quit BAD"
531 } {0 {}}
532
533 # .read FILENAME Execute SQL in FILENAME
534 do_test shell1-3.19.1 {
535 catchcmd "test.db" ".read"
536 } {1 {Usage: .read FILE}}
537 do_test shell1-3.19.2 {
538 forcedelete FOO
539 catchcmd "test.db" ".read FOO"
540 } {1 {Error: cannot open "FOO"}}
541 do_test shell1-3.19.3 {
542 # too many arguments
543 catchcmd "test.db" ".read FOO BAD"
544 } {1 {Usage: .read FILE}}
545
546 # .restore ?DB? FILE Restore content of DB (default "main") from FILE
547 do_test shell1-3.20.1 {
548 catchcmd "test.db" ".restore"
549 } {1 {Usage: .restore ?DB? FILE}}
550 do_test shell1-3.20.2 {
551 catchcmd "test.db" ".restore FOO"
552 } {0 {}}
553 do_test shell1-3.20.3 {
554 catchcmd "test.db" ".restore FOO BAR"
555 } {1 {Error: unknown database FOO}}
556 do_test shell1-3.20.4 {
557 # too many arguments
558 catchcmd "test.db" ".restore FOO BAR BAD"
559 } {1 {Usage: .restore ?DB? FILE}}
560
561 # .schema ?TABLE? Show the CREATE statements
562 # If TABLE specified, only show tables matching
563 # LIKE pattern TABLE.
564 do_test shell1-3.21.1 {
565 catchcmd "test.db" ".schema"
566 } {0 {}}
567 do_test shell1-3.21.2 {
568 catchcmd "test.db" ".schema FOO"
569 } {0 {}}
570 do_test shell1-3.21.3 {
571 # too many arguments
572 catchcmd "test.db" ".schema FOO BAD"
573 } {1 {Usage: .schema ?--indent? ?LIKE-PATTERN?}}
574
575 do_test shell1-3.21.4 {
576 catchcmd "test.db" {
577 CREATE TABLE t1(x);
578 CREATE VIEW v2 AS SELECT x+1 AS y FROM t1;
579 CREATE VIEW v1 AS SELECT y+1 FROM v2;
580 }
581 catchcmd "test.db" ".schema"
582 } {0 {CREATE TABLE t1(x);
583 CREATE VIEW v2 AS SELECT x+1 AS y FROM t1;
584 CREATE VIEW v1 AS SELECT y+1 FROM v2;}}
585 db eval {DROP VIEW v1; DROP VIEW v2; DROP TABLE t1;}
586
587 # .separator STRING Change column separator used by output and .import
588 do_test shell1-3.22.1 {
589 catchcmd "test.db" ".separator"
590 } {1 {Usage: .separator COL ?ROW?}}
591 do_test shell1-3.22.2 {
592 catchcmd "test.db" ".separator FOO"
593 } {0 {}}
594 do_test shell1-3.22.3 {
595 catchcmd "test.db" ".separator ABC XYZ"
596 } {0 {}}
597 do_test shell1-3.22.4 {
598 # too many arguments
599 catchcmd "test.db" ".separator FOO BAD BAD2"
600 } {1 {Usage: .separator COL ?ROW?}}
601
602 # .show Show the current values for various settings
603 do_test shell1-3.23.1 {
604 set res [catchcmd "test.db" ".show"]
605 list [regexp {echo:} $res] \
606 [regexp {explain:} $res] \
607 [regexp {headers:} $res] \
608 [regexp {mode:} $res] \
609 [regexp {nullvalue:} $res] \
610 [regexp {output:} $res] \
611 [regexp {colseparator:} $res] \
612 [regexp {rowseparator:} $res] \
613 [regexp {stats:} $res] \
614 [regexp {width:} $res]
615 } {1 1 1 1 1 1 1 1 1 1}
616 do_test shell1-3.23.2 {
617 # too many arguments
618 catchcmd "test.db" ".show BAD"
619 } {1 {Usage: .show}}
620
621 # .stats ON|OFF Turn stats on or off
622 #do_test shell1-3.23b.1 {
623 # catchcmd "test.db" ".stats"
624 #} {1 {Usage: .stats on|off}}
625 do_test shell1-3.23b.2 {
626 catchcmd "test.db" ".stats ON"
627 } {0 {}}
628 do_test shell1-3.23b.3 {
629 catchcmd "test.db" ".stats OFF"
630 } {0 {}}
631 do_test shell1-3.23b.4 {
632 # too many arguments
633 catchcmd "test.db" ".stats OFF BAD"
634 } {1 {Usage: .stats ?on|off?}}
635
636 # .tables ?TABLE? List names of tables
637 # If TABLE specified, only list tables matching
638 # LIKE pattern TABLE.
639 do_test shell1-3.24.1 {
640 catchcmd "test.db" ".tables"
641 } {0 {}}
642 do_test shell1-3.24.2 {
643 catchcmd "test.db" ".tables FOO"
644 } {0 {}}
645 do_test shell1-3.24.3 {
646 # too many arguments
647 catchcmd "test.db" ".tables FOO BAD"
648 } {0 {}}
649
650 # .timeout MS Try opening locked tables for MS milliseconds
651 do_test shell1-3.25.1 {
652 catchcmd "test.db" ".timeout"
653 } {0 {}}
654 do_test shell1-3.25.2 {
655 catchcmd "test.db" ".timeout zzz"
656 # this should be treated the same as a '0' timeout
657 } {0 {}}
658 do_test shell1-3.25.3 {
659 catchcmd "test.db" ".timeout 1"
660 } {0 {}}
661 do_test shell1-3.25.4 {
662 # too many arguments
663 catchcmd "test.db" ".timeout 1 BAD"
664 } {0 {}}
665
666 # .width NUM NUM ... Set column widths for "column" mode
667 do_test shell1-3.26.1 {
668 catchcmd "test.db" ".width"
669 } {0 {}}
670 do_test shell1-3.26.2 {
671 catchcmd "test.db" ".width xxx"
672 # this should be treated the same as a '0' width for col 1
673 } {0 {}}
674 do_test shell1-3.26.3 {
675 catchcmd "test.db" ".width xxx yyy"
676 # this should be treated the same as a '0' width for col 1 and 2
677 } {0 {}}
678 do_test shell1-3.26.4 {
679 catchcmd "test.db" ".width 1 1"
680 # this should be treated the same as a '1' width for col 1 and 2
681 } {0 {}}
682 do_test shell1-3.26.5 {
683 catchcmd "test.db" ".mode column\n.width 10 -10\nSELECT 'abcdefg', 123456;"
684 # this should be treated the same as a '1' width for col 1 and 2
685 } {0 {abcdefg 123456}}
686 do_test shell1-3.26.6 {
687 catchcmd "test.db" ".mode column\n.width -10 10\nSELECT 'abcdefg', 123456;"
688 # this should be treated the same as a '1' width for col 1 and 2
689 } {0 { abcdefg 123456 }}
690
691
692 # .timer ON|OFF Turn the CPU timer measurement on or off
693 do_test shell1-3.27.1 {
694 catchcmd "test.db" ".timer"
695 } {1 {Usage: .timer on|off}}
696 do_test shell1-3.27.2 {
697 catchcmd "test.db" ".timer ON"
698 } {0 {}}
699 do_test shell1-3.27.3 {
700 catchcmd "test.db" ".timer OFF"
701 } {0 {}}
702 do_test shell1-3.27.4 {
703 # too many arguments
704 catchcmd "test.db" ".timer OFF BAD"
705 } {1 {Usage: .timer on|off}}
706
707 do_test shell1-3-28.1 {
708 catchcmd test.db \
709 ".log stdout\nSELECT coalesce(sqlite_log(123,'hello'),'456');"
710 } "0 {(123) hello\n456}"
711
712 do_test shell1-3-29.1 {
713 catchcmd "test.db" ".print this is a test"
714 } {0 {this is a test}}
715
716 # dot-command argument quoting
717 do_test shell1-3-30.1 {
718 catchcmd {test.db} {.print "this\"is'a\055test" 'this\"is\\a\055test'}
719 } {0 {this"is'a-test this\"is\\a\055test}}
720 do_test shell1-3-31.1 {
721 catchcmd {test.db} {.print "this\nis\ta\\test" 'this\nis\ta\\test'}
722 } [list 0 "this\nis\ta\\test this\\nis\\ta\\\\test"]
723
724
725 # Test the output of the ".dump" command
726 #
727 do_test shell1-4.1 {
728 db close
729 forcedelete test.db
730 sqlite3 db test.db
731 db eval {
732 PRAGMA encoding=UTF16;
733 CREATE TABLE t1(x);
734 INSERT INTO t1 VALUES(null), (''), (1), (2.25), ('hello'), (x'807f');
735 CREATE TABLE t3(x,y);
736 INSERT INTO t3 VALUES(1,null), (2,''), (3,1),
737 (4,2.25), (5,'hello'), (6,x'807f');
738 }
739 catchcmd test.db {.dump}
740 } {0 {PRAGMA foreign_keys=OFF;
741 BEGIN TRANSACTION;
742 CREATE TABLE t1(x);
743 INSERT INTO "t1" VALUES(NULL);
744 INSERT INTO "t1" VALUES('');
745 INSERT INTO "t1" VALUES(1);
746 INSERT INTO "t1" VALUES(2.25);
747 INSERT INTO "t1" VALUES('hello');
748 INSERT INTO "t1" VALUES(X'807F');
749 CREATE TABLE t3(x,y);
750 INSERT INTO "t3" VALUES(1,NULL);
751 INSERT INTO "t3" VALUES(2,'');
752 INSERT INTO "t3" VALUES(3,1);
753 INSERT INTO "t3" VALUES(4,2.25);
754 INSERT INTO "t3" VALUES(5,'hello');
755 INSERT INTO "t3" VALUES(6,X'807F');
756 COMMIT;}}
757
758 # Test the output of ".mode insert"
759 #
760 do_test shell1-4.2.1 {
761 catchcmd test.db ".mode insert t1\nselect * from t1;"
762 } {0 {INSERT INTO t1 VALUES(NULL);
763 INSERT INTO t1 VALUES('');
764 INSERT INTO t1 VALUES(1);
765 INSERT INTO t1 VALUES(2.25);
766 INSERT INTO t1 VALUES('hello');
767 INSERT INTO t1 VALUES(X'807f');}}
768
769 # Test the output of ".mode insert" with headers
770 #
771 do_test shell1-4.2.2 {
772 catchcmd test.db ".mode insert t1\n.headers on\nselect * from t1;"
773 } {0 {INSERT INTO t1(x) VALUES(NULL);
774 INSERT INTO t1(x) VALUES('');
775 INSERT INTO t1(x) VALUES(1);
776 INSERT INTO t1(x) VALUES(2.25);
777 INSERT INTO t1(x) VALUES('hello');
778 INSERT INTO t1(x) VALUES(X'807f');}}
779
780 # Test the output of ".mode insert"
781 #
782 do_test shell1-4.2.3 {
783 catchcmd test.db ".mode insert t3\nselect * from t3;"
784 } {0 {INSERT INTO t3 VALUES(1,NULL);
785 INSERT INTO t3 VALUES(2,'');
786 INSERT INTO t3 VALUES(3,1);
787 INSERT INTO t3 VALUES(4,2.25);
788 INSERT INTO t3 VALUES(5,'hello');
789 INSERT INTO t3 VALUES(6,X'807f');}}
790
791 # Test the output of ".mode insert" with headers
792 #
793 do_test shell1-4.2.4 {
794 catchcmd test.db ".mode insert t3\n.headers on\nselect * from t3;"
795 } {0 {INSERT INTO t3(x,y) VALUES(1,NULL);
796 INSERT INTO t3(x,y) VALUES(2,'');
797 INSERT INTO t3(x,y) VALUES(3,1);
798 INSERT INTO t3(x,y) VALUES(4,2.25);
799 INSERT INTO t3(x,y) VALUES(5,'hello');
800 INSERT INTO t3(x,y) VALUES(6,X'807f');}}
801
802 # Test the output of ".mode tcl"
803 #
804 do_test shell1-4.3 {
805 db close
806 forcedelete test.db
807 sqlite3 db test.db
808 db eval {
809 PRAGMA encoding=UTF8;
810 CREATE TABLE t1(x);
811 INSERT INTO t1 VALUES(null), (''), (1), (2.25), ('hello'), (x'807f');
812 }
813 catchcmd test.db ".mode tcl\nselect * from t1;"
814 } {0 {""
815 ""
816 "1"
817 "2.25"
818 "hello"
819 "\200\177"}}
820
821 # Test the output of ".mode tcl" with multiple columns
822 #
823 do_test shell1-4.4 {
824 db eval {
825 CREATE TABLE t2(x,y);
826 INSERT INTO t2 VALUES(null, ''), (1, 2.25), ('hello', x'807f');
827 }
828 catchcmd test.db ".mode tcl\nselect * from t2;"
829 } {0 {"" ""
830 "1" "2.25"
831 "hello" "\200\177"}}
832
833 # Test the output of ".mode tcl" with ".nullvalue"
834 #
835 do_test shell1-4.5 {
836 catchcmd test.db ".mode tcl\n.nullvalue NULL\nselect * from t2;"
837 } {0 {"NULL" ""
838 "1" "2.25"
839 "hello" "\200\177"}}
840
841 # Test the output of ".mode tcl" with Tcl reserved characters
842 #
843 do_test shell1-4.6 {
844 db eval {
845 CREATE TABLE tcl1(x);
846 INSERT INTO tcl1 VALUES('"'), ('['), (']'), ('\{'), ('\}'), (';'), ('$');
847 }
848 foreach {x y} [catchcmd test.db ".mode tcl\nselect * from tcl1;"] break
849 list $x $y [llength $y]
850 } {0 {"\""
851 "["
852 "]"
853 "\\{"
854 "\\}"
855 ";"
856 "$"} 7}
857
858 # Test using arbitrary byte data with the shell via standard input/output.
859 #
860 do_test shell1-5.0 {
861 #
862 # NOTE: Skip NUL byte because it appears to be incompatible with command
863 # shell argument parsing.
864 #
865 for {set i 1} {$i < 256} {incr i} {
866 #
867 # NOTE: Due to how the Tcl [exec] command works (i.e. where it treats
868 # command channels opened for it as textual ones), the carriage
869 # return character (and on Windows, the end-of-file character)
870 # cannot be used here.
871 #
872 if {$i==0x0D || ($tcl_platform(platform)=="windows" && $i==0x1A)} {
873 continue
874 }
875 if {$i>=0xE0 && $tcl_platform(os)=="OpenBSD"} continue
876 if {$i>=0xE0 && $i<=0xEF && $tcl_platform(os)=="Linux"} continue
877 set hex [format %02X $i]
878 set char [subst \\x$hex]; set oldChar $char
879 set escapes [list]
880 if {$tcl_platform(platform)=="windows"} {
881 #
882 # NOTE: On Windows, we need to escape all the whitespace characters,
883 # the alarm (\a) character, and those with special meaning to
884 # the SQLite shell itself.
885 #
886 set escapes [list \
887 \a \\a \b \\b \t \\t \n \\n \v \\v \f \\f \r \\r \
888 " " "\" \"" \" \\\" ' \"'\" \\ \\\\]
889 } else {
890 #
891 # NOTE: On Unix, we need to escape most of the whitespace characters
892 # and those with special meaning to the SQLite shell itself.
893 # The alarm (\a), backspace (\b), and carriage-return (\r)
894 # characters do not appear to require escaping on Unix. For
895 # the alarm and backspace characters, this is probably due to
896 # differences in the command shell. For the carriage-return,
897 # it is probably due to differences in how Tcl handles command
898 # channel end-of-line translations.
899 #
900 set escapes [list \
901 \t \\t \n \\n \v \\v \f \\f \
902 " " "\" \"" \" \\\" ' \"'\" \\ \\\\]
903 }
904 set char [string map $escapes $char]
905 set x [catchcmdex test.db ".print $char\n"]
906 set code [lindex $x 0]
907 set res [lindex $x 1]
908 if {$code ne "0"} {
909 error "failed with error: $res"
910 }
911 if {$res ne "$oldChar\n"} {
912 if {[llength $res] > 0} {
913 set got [format %02X [scan $res %c]]
914 } else {
915 set got <empty>
916 }
917 error "failed with byte $hex mismatch, got $got"
918 }
919 }
920 } {}
921
922 # These test cases do not work on MinGW
923 if 0 {
924
925 # The string used here is the word "test" in Chinese.
926 # In UTF-8, it is encoded as: \xE6\xB5\x8B\xE8\xAF\x95
927 set test \u6D4B\u8BD5
928
929 do_test shell1-6.0 {
930 set fileName $test; append fileName .db
931 catch {forcedelete $fileName}
932 set x [catchcmdex $fileName "CREATE TABLE t1(x);\n.schema\n"]
933 set code [lindex $x 0]
934 set res [string trim [lindex $x 1]]
935 if {$code ne "0"} {
936 error "failed with error: $res"
937 }
938 if {$res ne "CREATE TABLE t1(x);"} {
939 error "failed with mismatch: $res"
940 }
941 if {![file exists $fileName]} {
942 error "file \"$fileName\" (Unicode) does not exist"
943 }
944 forcedelete $fileName
945 } {}
946
947 do_test shell1-6.1 {
948 catch {forcedelete test3.db}
949 set x [catchcmdex test3.db \
950 "CREATE TABLE [encoding convertto utf-8 $test](x);\n.schema\n"]
951 set code [lindex $x 0]
952 set res [string trim [lindex $x 1]]
953 if {$code ne "0"} {
954 error "failed with error: $res"
955 }
956 if {$res ne "CREATE TABLE ${test}(x);"} {
957 error "failed with mismatch: $res"
958 }
959 forcedelete test3.db
960 } {}
961 }
962
963 finish_test
OLDNEW
« no previous file with comments | « third_party/sqlite/sqlite-src-3170000/test/sharedlock.test ('k') | third_party/sqlite/sqlite-src-3170000/test/shell2.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698