blob: 8de7385c8df31fd29b56900124791360524a8b2e [file] [log] [blame]
shaneha05e0c42009-11-06 03:22:54 +00001# 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# $Id: shell1.test,v 1.7 2009/07/17 16:54:48 shaneh Exp $
15#
16
17# Test plan:
18#
shaneh5fc25012009-11-11 04:17:07 +000019# shell1-1.*: Basic command line option handling.
20# shell1-2.*: Basic "dot" command token parsing.
21# shell1-3.*: Basic test that "dot" command can be called.
shaneha05e0c42009-11-06 03:22:54 +000022#
23
24package require sqlite3
25
shanehca7dfda2009-12-17 21:07:54 +000026set CLI "./sqlite3"
shaneh5fc25012009-11-11 04:17:07 +000027
shaneha05e0c42009-11-06 03:22:54 +000028proc do_test {name cmd expected} {
29 puts -nonewline "$name ..."
30 set res [uplevel $cmd]
31 if {$res eq $expected} {
32 puts Ok
33 } else {
34 puts Error
35 puts " Got: $res"
36 puts " Expected: $expected"
shanehe2aa9d72009-11-06 17:20:17 +000037 exit
shaneha05e0c42009-11-06 03:22:54 +000038 }
39}
40
41proc execsql {sql} {
42 uplevel [list db eval $sql]
43}
44
45proc catchsql {sql} {
46 set rc [catch {uplevel [list db eval $sql]} msg]
47 list $rc $msg
48}
49
shanehca7dfda2009-12-17 21:07:54 +000050proc catchcmd {db {cmd ""}} {
shaneh5fc25012009-11-11 04:17:07 +000051 global CLI
shaneha05e0c42009-11-06 03:22:54 +000052 set out [open cmds.txt w]
53 puts $out $cmd
54 close $out
shaneh5fc25012009-11-11 04:17:07 +000055 set line "exec $CLI $db < cmds.txt"
56 set rc [catch { eval $line } msg]
shaneha05e0c42009-11-06 03:22:54 +000057 list $rc $msg
58}
59
60file delete -force test.db test.db.journal
61sqlite3 db test.db
62
shaneh5fc25012009-11-11 04:17:07 +000063#----------------------------------------------------------------------------
64# Test cases shell1-1.*: Basic command line option handling.
65#
66
67# invalid option
68do_test shell1-1.1.1 {
69 set res [catchcmd "-bad test.db" ""]
70 set rc [lindex $res 0]
71 list $rc \
72 [regexp {Error: unknown option: -bad} $res]
73} {1 1}
74# error on extra options
75do_test shell1-1.1.2 {
76 set res [catchcmd "-bad test.db \"select 3\" \"select 4\"" ""]
77 set rc [lindex $res 0]
78 list $rc \
79 [regexp {Error: too many options: "select 4"} $res]
80} {1 1}
81# error on extra options
shanehca7dfda2009-12-17 21:07:54 +000082do_test shell1-1.1.3 {
shaneh5fc25012009-11-11 04:17:07 +000083 set res [catchcmd "-bad FOO test.db BAD" ".quit"]
84 set rc [lindex $res 0]
85 list $rc \
86 [regexp {Error: too many options: "BAD"} $res]
87} {1 1}
88
89# -help
90do_test shell1-1.2.1 {
91 set res [catchcmd "-help test.db" ""]
92 set rc [lindex $res 0]
93 list $rc \
94 [regexp {Usage} $res] \
95 [regexp {\-init} $res] \
96 [regexp {\-version} $res]
97} {1 1 1 1}
98
99# -init filename read/process named file
100do_test shell1-1.3.1 {
shanehca7dfda2009-12-17 21:07:54 +0000101 catchcmd "-init FOO test.db" ""
shaneh5fc25012009-11-11 04:17:07 +0000102} {0 {}}
103do_test shell1-1.3.2 {
104 set res [catchcmd "-init FOO test.db .quit BAD" ""]
105 set rc [lindex $res 0]
106 list $rc \
107 [regexp {Error: too many options: "BAD"} $res]
108} {1 1}
109
110# -echo print commands before execution
111do_test shell1-1.4.1 {
112 catchcmd "-echo test.db" ""
113} {0 {}}
114
115# -[no]header turn headers on or off
116do_test shell1-1.5.1 {
117 catchcmd "-header test.db" ""
118} {0 {}}
119do_test shell1-1.5.2 {
120 catchcmd "-noheader test.db" ""
121} {0 {}}
122
123# -bail stop after hitting an error
124do_test shell1-1.6.1 {
125 catchcmd "-bail test.db" ""
126} {0 {}}
127
128# -interactive force interactive I/O
129do_test shell1-1.7.1 {
130 set res [catchcmd "-interactive test.db" ".quit"]
131 set rc [lindex $res 0]
132 list $rc \
133 [regexp {SQLite version} $res] \
134 [regexp {Enter SQL statements} $res]
135} {0 1 1}
136
137# -batch force batch I/O
138do_test shell1-1.8.1 {
139 catchcmd "-batch test.db" ""
140} {0 {}}
141
142# -column set output mode to 'column'
143do_test shell1-1.9.1 {
144 catchcmd "-column test.db" ""
145} {0 {}}
146
147# -csv set output mode to 'csv'
148do_test shell1-1.10.1 {
149 catchcmd "-csv test.db" ""
150} {0 {}}
151
152# -html set output mode to HTML
153do_test shell1-1.11.1 {
154 catchcmd "-html test.db" ""
155} {0 {}}
156
157# -line set output mode to 'line'
158do_test shell1-1.12.1 {
159 catchcmd "-line test.db" ""
160} {0 {}}
161
162# -list set output mode to 'list'
163do_test shell1-1.13.1 {
164 catchcmd "-list test.db" ""
165} {0 {}}
166
167# -separator 'x' set output field separator (|)
168do_test shell1-1.14.1 {
169 catchcmd "-separator 'x' test.db" ""
170} {0 {}}
171do_test shell1-1.14.2 {
172 catchcmd "-separator x test.db" ""
173} {0 {}}
174do_test shell1-1.14.3 {
175 set res [catchcmd "-separator" ""]
176 set rc [lindex $res 0]
177 list $rc \
178 [regexp {Error: missing argument for option: -separator} $res]
179} {1 1}
180
181# -nullvalue 'text' set text string for NULL values
182do_test shell1-1.15.1 {
183 catchcmd "-nullvalue 'x' test.db" ""
184} {0 {}}
185do_test shell1-1.15.2 {
186 catchcmd "-nullvalue x test.db" ""
187} {0 {}}
188do_test shell1-1.15.3 {
189 set res [catchcmd "-nullvalue" ""]
190 set rc [lindex $res 0]
191 list $rc \
192 [regexp {Error: missing argument for option: -nullvalue} $res]
193} {1 1}
194
195# -version show SQLite version
196do_test shell1-1.16.1 {
197 catchcmd "-version test.db" ""
shanehca7dfda2009-12-17 21:07:54 +0000198} {0 3.6.21}
shanehe2aa9d72009-11-06 17:20:17 +0000199
shaneha05e0c42009-11-06 03:22:54 +0000200#----------------------------------------------------------------------------
shaneh5fc25012009-11-11 04:17:07 +0000201# Test cases shell1-2.*: Basic "dot" command token parsing.
shanehe2aa9d72009-11-06 17:20:17 +0000202#
203
204# check first token handling
shaneh5fc25012009-11-11 04:17:07 +0000205do_test shell1-2.1.1 {
shanehca7dfda2009-12-17 21:07:54 +0000206 catchcmd "test.db" ".foo"
shanehe2aa9d72009-11-06 17:20:17 +0000207} {1 {Error: unknown command or invalid arguments: "foo". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000208do_test shell1-2.1.2 {
shanehca7dfda2009-12-17 21:07:54 +0000209 catchcmd "test.db" ".\"foo OFF\""
shanehe2aa9d72009-11-06 17:20:17 +0000210} {1 {Error: unknown command or invalid arguments: "foo OFF". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000211do_test shell1-2.1.3 {
shanehca7dfda2009-12-17 21:07:54 +0000212 catchcmd "test.db" ".\'foo OFF\'"
shanehe2aa9d72009-11-06 17:20:17 +0000213} {1 {Error: unknown command or invalid arguments: "foo OFF". Enter ".help" for help}}
214
215# unbalanced quotes
shaneh5fc25012009-11-11 04:17:07 +0000216do_test shell1-2.2.1 {
shanehca7dfda2009-12-17 21:07:54 +0000217 catchcmd "test.db" ".\"foo OFF"
shanehe2aa9d72009-11-06 17:20:17 +0000218} {1 {Error: unknown command or invalid arguments: "foo OFF". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000219do_test shell1-2.2.2 {
shanehca7dfda2009-12-17 21:07:54 +0000220 catchcmd "test.db" ".\'foo OFF"
shanehe2aa9d72009-11-06 17:20:17 +0000221} {1 {Error: unknown command or invalid arguments: "foo OFF". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000222do_test shell1-2.2.3 {
shanehca7dfda2009-12-17 21:07:54 +0000223 catchcmd "test.db" ".explain \"OFF"
shanehe2aa9d72009-11-06 17:20:17 +0000224} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000225do_test shell1-2.2.4 {
shanehca7dfda2009-12-17 21:07:54 +0000226 catchcmd "test.db" ".explain \'OFF"
shanehe2aa9d72009-11-06 17:20:17 +0000227} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000228do_test shell1-2.2.5 {
shanehca7dfda2009-12-17 21:07:54 +0000229 catchcmd "test.db" ".mode \"insert FOO"
shanehe2aa9d72009-11-06 17:20:17 +0000230} {1 {Error: mode should be one of: column csv html insert line list tabs tcl}}
shaneh5fc25012009-11-11 04:17:07 +0000231do_test shell1-2.2.6 {
shanehca7dfda2009-12-17 21:07:54 +0000232 catchcmd "test.db" ".mode \'insert FOO"
shanehe2aa9d72009-11-06 17:20:17 +0000233} {1 {Error: mode should be one of: column csv html insert line list tabs tcl}}
234
235# check multiple tokens, and quoted tokens
shaneh5fc25012009-11-11 04:17:07 +0000236do_test shell1-2.3.1 {
shanehca7dfda2009-12-17 21:07:54 +0000237 catchcmd "test.db" ".explain 1"
shanehe2aa9d72009-11-06 17:20:17 +0000238} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000239do_test shell1-2.3.2 {
shanehca7dfda2009-12-17 21:07:54 +0000240 catchcmd "test.db" ".explain on"
shanehe2aa9d72009-11-06 17:20:17 +0000241} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000242do_test shell1-2.3.3 {
shanehca7dfda2009-12-17 21:07:54 +0000243 catchcmd "test.db" ".explain \"1 2 3\""
shanehe2aa9d72009-11-06 17:20:17 +0000244} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000245do_test shell1-2.3.4 {
shanehca7dfda2009-12-17 21:07:54 +0000246 catchcmd "test.db" ".explain \"OFF\""
shanehe2aa9d72009-11-06 17:20:17 +0000247} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000248do_test shell1-2.3.5 {
shanehca7dfda2009-12-17 21:07:54 +0000249 catchcmd "test.db" ".\'explain\' \'OFF\'"
shanehe2aa9d72009-11-06 17:20:17 +0000250} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000251do_test shell1-2.3.6 {
shanehca7dfda2009-12-17 21:07:54 +0000252 catchcmd "test.db" ".explain \'OFF\'"
shanehe2aa9d72009-11-06 17:20:17 +0000253} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000254do_test shell1-2.3.7 {
shanehca7dfda2009-12-17 21:07:54 +0000255 catchcmd "test.db" ".\'explain\' \'OFF\'"
shanehe2aa9d72009-11-06 17:20:17 +0000256} {0 {}}
257
258# check quoted args are unquoted
shaneh5fc25012009-11-11 04:17:07 +0000259do_test shell1-2.4.1 {
shanehca7dfda2009-12-17 21:07:54 +0000260 catchcmd "test.db" ".mode FOO"
shanehe2aa9d72009-11-06 17:20:17 +0000261} {1 {Error: mode should be one of: column csv html insert line list tabs tcl}}
shaneh5fc25012009-11-11 04:17:07 +0000262do_test shell1-2.4.2 {
shanehca7dfda2009-12-17 21:07:54 +0000263 catchcmd "test.db" ".mode csv"
shanehe2aa9d72009-11-06 17:20:17 +0000264} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000265do_test shell1-2.4.2 {
shanehca7dfda2009-12-17 21:07:54 +0000266 catchcmd "test.db" ".mode \"csv\""
shanehe2aa9d72009-11-06 17:20:17 +0000267} {0 {}}
268
269
270#----------------------------------------------------------------------------
shaneh5fc25012009-11-11 04:17:07 +0000271# Test cases shell1-3.*: Basic test that "dot" command can be called.
shaneha05e0c42009-11-06 03:22:54 +0000272#
273
274# .backup ?DB? FILE Backup DB (default "main") to FILE
shaneh5fc25012009-11-11 04:17:07 +0000275do_test shell1-3.1.1 {
shanehca7dfda2009-12-17 21:07:54 +0000276 catchcmd "test.db" ".backup"
shanehe2aa9d72009-11-06 17:20:17 +0000277} {1 {Error: unknown command or invalid arguments: "backup". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000278do_test shell1-3.1.2 {
shanehca7dfda2009-12-17 21:07:54 +0000279 catchcmd "test.db" ".backup FOO"
280} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000281do_test shell1-3.1.3 {
shanehca7dfda2009-12-17 21:07:54 +0000282 catchcmd "test.db" ".backup FOO BAR"
shanehe2aa9d72009-11-06 17:20:17 +0000283} {1 {Error: unknown database FOO}}
shaneh5fc25012009-11-11 04:17:07 +0000284do_test shell1-3.1.4 {
shanehe2aa9d72009-11-06 17:20:17 +0000285 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000286 catchcmd "test.db" ".backup FOO BAR BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000287} {1 {Error: unknown command or invalid arguments: "backup". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000288
289# .bail ON|OFF Stop after hitting an error. Default OFF
shaneh5fc25012009-11-11 04:17:07 +0000290do_test shell1-3.2.1 {
shanehca7dfda2009-12-17 21:07:54 +0000291 catchcmd "test.db" ".bail"
shaneha05e0c42009-11-06 03:22:54 +0000292} {1 {Error: unknown command or invalid arguments: "bail". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000293do_test shell1-3.2.2 {
shanehca7dfda2009-12-17 21:07:54 +0000294 catchcmd "test.db" ".bail ON"
shaneha05e0c42009-11-06 03:22:54 +0000295} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000296do_test shell1-3.2.3 {
shanehca7dfda2009-12-17 21:07:54 +0000297 catchcmd "test.db" ".bail OFF"
shaneha05e0c42009-11-06 03:22:54 +0000298} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000299do_test shell1-3.2.4 {
shanehe2aa9d72009-11-06 17:20:17 +0000300 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000301 catchcmd "test.db" ".bail OFF BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000302} {1 {Error: unknown command or invalid arguments: "bail". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000303
304# .databases List names and files of attached databases
shaneh5fc25012009-11-11 04:17:07 +0000305do_test shell1-3.3.1 {
shanehca7dfda2009-12-17 21:07:54 +0000306 set res [catchcmd "test.db" ".databases"]
shaneha05e0c42009-11-06 03:22:54 +0000307 regexp {0.*main.*test\.db} $res
308} {1}
shaneh5fc25012009-11-11 04:17:07 +0000309do_test shell1-3.3.2 {
shanehe2aa9d72009-11-06 17:20:17 +0000310 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000311 catchcmd "test.db" ".databases BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000312} {1 {Error: unknown command or invalid arguments: "databases". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000313
314# .dump ?TABLE? ... Dump the database in an SQL text format
315# If TABLE specified, only dump tables matching
316# LIKE pattern TABLE.
shaneh5fc25012009-11-11 04:17:07 +0000317do_test shell1-3.4.1 {
shanehca7dfda2009-12-17 21:07:54 +0000318 set res [catchcmd "test.db" ".dump"]
shaneha05e0c42009-11-06 03:22:54 +0000319 list [regexp {BEGIN TRANSACTION;} $res] \
320 [regexp {COMMIT;} $res]
321} {1 1}
shaneh5fc25012009-11-11 04:17:07 +0000322do_test shell1-3.4.2 {
shanehca7dfda2009-12-17 21:07:54 +0000323 set res [catchcmd "test.db" ".dump FOO"]
shaneha05e0c42009-11-06 03:22:54 +0000324 list [regexp {BEGIN TRANSACTION;} $res] \
325 [regexp {COMMIT;} $res]
326} {1 1}
shaneh5fc25012009-11-11 04:17:07 +0000327do_test shell1-3.4.3 {
shanehe2aa9d72009-11-06 17:20:17 +0000328 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000329 catchcmd "test.db" ".dump FOO BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000330} {1 {Error: unknown command or invalid arguments: "dump". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000331
332# .echo ON|OFF Turn command echo on or off
shaneh5fc25012009-11-11 04:17:07 +0000333do_test shell1-3.5.1 {
shanehca7dfda2009-12-17 21:07:54 +0000334 catchcmd "test.db" ".echo"
shaneha05e0c42009-11-06 03:22:54 +0000335} {1 {Error: unknown command or invalid arguments: "echo". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000336do_test shell1-3.5.2 {
shanehca7dfda2009-12-17 21:07:54 +0000337 catchcmd "test.db" ".echo ON"
shaneha05e0c42009-11-06 03:22:54 +0000338} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000339do_test shell1-3.5.3 {
shanehca7dfda2009-12-17 21:07:54 +0000340 catchcmd "test.db" ".echo OFF"
shaneha05e0c42009-11-06 03:22:54 +0000341} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000342do_test shell1-3.5.4 {
shanehe2aa9d72009-11-06 17:20:17 +0000343 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000344 catchcmd "test.db" ".echo OFF BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000345} {1 {Error: unknown command or invalid arguments: "echo". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000346
347# .exit Exit this program
shaneh5fc25012009-11-11 04:17:07 +0000348do_test shell1-3.6.1 {
shanehca7dfda2009-12-17 21:07:54 +0000349 catchcmd "test.db" ".exit"
shaneha05e0c42009-11-06 03:22:54 +0000350} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000351do_test shell1-3.6.2 {
shanehe2aa9d72009-11-06 17:20:17 +0000352 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000353 catchcmd "test.db" ".exit BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000354} {1 {Error: unknown command or invalid arguments: "exit". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000355
356# .explain ON|OFF Turn output mode suitable for EXPLAIN on or off.
shaneh5fc25012009-11-11 04:17:07 +0000357do_test shell1-3.7.1 {
shanehca7dfda2009-12-17 21:07:54 +0000358 catchcmd "test.db" ".explain"
shanehe2aa9d72009-11-06 17:20:17 +0000359 # explain is the exception to the booleans. without an option, it turns it on.
360} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000361do_test shell1-3.7.2 {
shanehca7dfda2009-12-17 21:07:54 +0000362 catchcmd "test.db" ".explain ON"
shaneha05e0c42009-11-06 03:22:54 +0000363} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000364do_test shell1-3.7.3 {
shanehca7dfda2009-12-17 21:07:54 +0000365 catchcmd "test.db" ".explain OFF"
shaneha05e0c42009-11-06 03:22:54 +0000366} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000367do_test shell1-3.7.4 {
shanehe2aa9d72009-11-06 17:20:17 +0000368 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000369 catchcmd "test.db" ".explain OFF BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000370} {1 {Error: unknown command or invalid arguments: "explain". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000371
372# .genfkey ?OPTIONS? Options are:
373# --no-drop: Do not drop old fkey triggers.
374# --ignore-errors: Ignore tables with fkey errors
375# --exec: Execute generated SQL immediately
376# See file tool/genfkey.README in the source
377# distribution for further information.
shaneh5fc25012009-11-11 04:17:07 +0000378do_test shell1-3.8.1 {
shanehca7dfda2009-12-17 21:07:54 +0000379 catchcmd "test.db" ".genfkey"
shanehe2aa9d72009-11-06 17:20:17 +0000380} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000381do_test shell1-3.8.2 {
shanehca7dfda2009-12-17 21:07:54 +0000382 catchcmd "test.db" ".genfkey FOO"
shanehe2aa9d72009-11-06 17:20:17 +0000383} {1 {unknown option: FOO}}
shaneha05e0c42009-11-06 03:22:54 +0000384
385# .header(s) ON|OFF Turn display of headers on or off
shaneh5fc25012009-11-11 04:17:07 +0000386do_test shell1-3.9.1 {
shanehca7dfda2009-12-17 21:07:54 +0000387 catchcmd "test.db" ".header"
shaneha05e0c42009-11-06 03:22:54 +0000388} {1 {Error: unknown command or invalid arguments: "header". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000389do_test shell1-3.9.2 {
shanehca7dfda2009-12-17 21:07:54 +0000390 catchcmd "test.db" ".header ON"
shaneha05e0c42009-11-06 03:22:54 +0000391} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000392do_test shell1-3.9.3 {
shanehca7dfda2009-12-17 21:07:54 +0000393 catchcmd "test.db" ".header OFF"
shaneha05e0c42009-11-06 03:22:54 +0000394} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000395do_test shell1-3.9.4 {
shanehe2aa9d72009-11-06 17:20:17 +0000396 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000397 catchcmd "test.db" ".header OFF BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000398} {1 {Error: unknown command or invalid arguments: "header". Enter ".help" for help}}
399
shaneh5fc25012009-11-11 04:17:07 +0000400do_test shell1-3.9.5 {
shanehca7dfda2009-12-17 21:07:54 +0000401 catchcmd "test.db" ".headers"
shaneha05e0c42009-11-06 03:22:54 +0000402} {1 {Error: unknown command or invalid arguments: "headers". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000403do_test shell1-3.9.6 {
shanehca7dfda2009-12-17 21:07:54 +0000404 catchcmd "test.db" ".headers ON"
shaneha05e0c42009-11-06 03:22:54 +0000405} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000406do_test shell1-3.9.7 {
shanehca7dfda2009-12-17 21:07:54 +0000407 catchcmd "test.db" ".headers OFF"
shaneha05e0c42009-11-06 03:22:54 +0000408} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000409do_test shell1-3.9.8 {
shanehe2aa9d72009-11-06 17:20:17 +0000410 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000411 catchcmd "test.db" ".headers OFF BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000412} {1 {Error: unknown command or invalid arguments: "headers". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000413
414# .help Show this message
shaneh5fc25012009-11-11 04:17:07 +0000415do_test shell1-3.10.1 {
shanehca7dfda2009-12-17 21:07:54 +0000416 set res [catchcmd "test.db" ".help"]
shaneha05e0c42009-11-06 03:22:54 +0000417 # look for a few of the possible help commands
418 list [regexp {.help} $res] \
419 [regexp {.quit} $res] \
420 [regexp {.show} $res]
421} {1 1 1}
shaneh5fc25012009-11-11 04:17:07 +0000422do_test shell1-3.10.2 {
shanehe2aa9d72009-11-06 17:20:17 +0000423 # we allow .help to take extra args (it is help after all)
shanehca7dfda2009-12-17 21:07:54 +0000424 set res [catchcmd "test.db" ".help BAD"]
shanehe2aa9d72009-11-06 17:20:17 +0000425 # look for a few of the possible help commands
426 list [regexp {.help} $res] \
427 [regexp {.quit} $res] \
428 [regexp {.show} $res]
429} {1 1 1}
shaneha05e0c42009-11-06 03:22:54 +0000430
431# .import FILE TABLE Import data from FILE into TABLE
shaneh5fc25012009-11-11 04:17:07 +0000432do_test shell1-3.11.1 {
shanehca7dfda2009-12-17 21:07:54 +0000433 catchcmd "test.db" ".import"
shaneha05e0c42009-11-06 03:22:54 +0000434} {1 {Error: unknown command or invalid arguments: "import". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000435do_test shell1-3.11.2 {
shanehca7dfda2009-12-17 21:07:54 +0000436 catchcmd "test.db" ".import FOO"
shaneha05e0c42009-11-06 03:22:54 +0000437} {1 {Error: unknown command or invalid arguments: "import". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000438do_test shell1-3.11.2 {
shanehca7dfda2009-12-17 21:07:54 +0000439 catchcmd "test.db" ".import FOO BAR"
shaneha05e0c42009-11-06 03:22:54 +0000440} {1 {Error: no such table: BAR}}
shaneh5fc25012009-11-11 04:17:07 +0000441do_test shell1-3.11.3 {
shanehe2aa9d72009-11-06 17:20:17 +0000442 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000443 catchcmd "test.db" ".import FOO BAR BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000444} {1 {Error: unknown command or invalid arguments: "import". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000445
446# .indices ?TABLE? Show names of all indices
447# If TABLE specified, only show indices for tables
448# matching LIKE pattern TABLE.
shaneh5fc25012009-11-11 04:17:07 +0000449do_test shell1-3.12.1 {
shanehca7dfda2009-12-17 21:07:54 +0000450 catchcmd "test.db" ".indices"
shaneha05e0c42009-11-06 03:22:54 +0000451} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000452do_test shell1-3.12.2 {
shanehca7dfda2009-12-17 21:07:54 +0000453 catchcmd "test.db" ".indices FOO"
shaneha05e0c42009-11-06 03:22:54 +0000454} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000455do_test shell1-3.12.3 {
shanehe2aa9d72009-11-06 17:20:17 +0000456 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000457 catchcmd "test.db" ".indices FOO BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000458} {1 {Error: unknown command or invalid arguments: "indices". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000459
460# .mode MODE ?TABLE? Set output mode where MODE is one of:
461# csv Comma-separated values
462# column Left-aligned columns. (See .width)
463# html HTML <table> code
464# insert SQL insert statements for TABLE
465# line One value per line
466# list Values delimited by .separator string
467# tabs Tab-separated values
468# tcl TCL list elements
shaneh5fc25012009-11-11 04:17:07 +0000469do_test shell1-3.13.1 {
shanehca7dfda2009-12-17 21:07:54 +0000470 catchcmd "test.db" ".mode"
shaneha05e0c42009-11-06 03:22:54 +0000471} {1 {Error: unknown command or invalid arguments: "mode". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000472do_test shell1-3.13.2 {
shanehca7dfda2009-12-17 21:07:54 +0000473 catchcmd "test.db" ".mode FOO"
shaneha05e0c42009-11-06 03:22:54 +0000474} {1 {Error: mode should be one of: column csv html insert line list tabs tcl}}
shaneh5fc25012009-11-11 04:17:07 +0000475do_test shell1-3.13.3 {
shanehca7dfda2009-12-17 21:07:54 +0000476 catchcmd "test.db" ".mode csv"
shaneha05e0c42009-11-06 03:22:54 +0000477} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000478do_test shell1-3.13.4 {
shanehca7dfda2009-12-17 21:07:54 +0000479 catchcmd "test.db" ".mode column"
shaneha05e0c42009-11-06 03:22:54 +0000480} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000481do_test shell1-3.13.5 {
shanehca7dfda2009-12-17 21:07:54 +0000482 catchcmd "test.db" ".mode html"
shaneha05e0c42009-11-06 03:22:54 +0000483} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000484do_test shell1-3.13.6 {
shanehca7dfda2009-12-17 21:07:54 +0000485 catchcmd "test.db" ".mode insert"
shaneha05e0c42009-11-06 03:22:54 +0000486} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000487do_test shell1-3.13.7 {
shanehca7dfda2009-12-17 21:07:54 +0000488 catchcmd "test.db" ".mode line"
shaneha05e0c42009-11-06 03:22:54 +0000489} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000490do_test shell1-3.13.8 {
shanehca7dfda2009-12-17 21:07:54 +0000491 catchcmd "test.db" ".mode list"
shaneha05e0c42009-11-06 03:22:54 +0000492} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000493do_test shell1-3.13.9 {
shanehca7dfda2009-12-17 21:07:54 +0000494 catchcmd "test.db" ".mode tabs"
shaneha05e0c42009-11-06 03:22:54 +0000495} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000496do_test shell1-3.13.10 {
shanehca7dfda2009-12-17 21:07:54 +0000497 catchcmd "test.db" ".mode tcl"
shaneha05e0c42009-11-06 03:22:54 +0000498} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000499do_test shell1-3.13.11 {
shanehe2aa9d72009-11-06 17:20:17 +0000500 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000501 catchcmd "test.db" ".mode tcl BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000502} {1 {Error: invalid arguments: "BAD". Enter ".help" for help}}
503
504# don't allow partial mode type matches
shaneh5fc25012009-11-11 04:17:07 +0000505do_test shell1-3.13.12 {
shanehca7dfda2009-12-17 21:07:54 +0000506 catchcmd "test.db" ".mode l"
shanehe2aa9d72009-11-06 17:20:17 +0000507} {1 {Error: mode should be one of: column csv html insert line list tabs tcl}}
shaneh5fc25012009-11-11 04:17:07 +0000508do_test shell1-3.13.13 {
shanehca7dfda2009-12-17 21:07:54 +0000509 catchcmd "test.db" ".mode li"
shanehe2aa9d72009-11-06 17:20:17 +0000510} {1 {Error: mode should be one of: column csv html insert line list tabs tcl}}
shaneh5fc25012009-11-11 04:17:07 +0000511do_test shell1-3.13.14 {
shanehca7dfda2009-12-17 21:07:54 +0000512 catchcmd "test.db" ".mode lin"
shanehe2aa9d72009-11-06 17:20:17 +0000513} {1 {Error: mode should be one of: column csv html insert line list tabs tcl}}
shaneha05e0c42009-11-06 03:22:54 +0000514
515# .nullvalue STRING Print STRING in place of NULL values
shaneh5fc25012009-11-11 04:17:07 +0000516do_test shell1-3.14.1 {
shanehca7dfda2009-12-17 21:07:54 +0000517 catchcmd "test.db" ".nullvalue"
shaneha05e0c42009-11-06 03:22:54 +0000518} {1 {Error: unknown command or invalid arguments: "nullvalue". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000519do_test shell1-3.14.2 {
shanehca7dfda2009-12-17 21:07:54 +0000520 catchcmd "test.db" ".nullvalue FOO"
shaneha05e0c42009-11-06 03:22:54 +0000521} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000522do_test shell1-3.14.3 {
shanehe2aa9d72009-11-06 17:20:17 +0000523 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000524 catchcmd "test.db" ".nullvalue FOO BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000525} {1 {Error: unknown command or invalid arguments: "nullvalue". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000526
527# .output FILENAME Send output to FILENAME
shaneh5fc25012009-11-11 04:17:07 +0000528do_test shell1-3.15.1 {
shanehca7dfda2009-12-17 21:07:54 +0000529 catchcmd "test.db" ".output"
shaneha05e0c42009-11-06 03:22:54 +0000530} {1 {Error: unknown command or invalid arguments: "output". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000531do_test shell1-3.15.2 {
shanehca7dfda2009-12-17 21:07:54 +0000532 catchcmd "test.db" ".output FOO"
shaneha05e0c42009-11-06 03:22:54 +0000533} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000534do_test shell1-3.15.3 {
shanehe2aa9d72009-11-06 17:20:17 +0000535 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000536 catchcmd "test.db" ".output FOO BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000537} {1 {Error: unknown command or invalid arguments: "output". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000538
539# .output stdout Send output to the screen
shaneh5fc25012009-11-11 04:17:07 +0000540do_test shell1-3.16.1 {
shanehca7dfda2009-12-17 21:07:54 +0000541 catchcmd "test.db" ".output stdout"
shaneha05e0c42009-11-06 03:22:54 +0000542} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000543do_test shell1-3.16.2 {
shanehe2aa9d72009-11-06 17:20:17 +0000544 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000545 catchcmd "test.db" ".output stdout BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000546} {1 {Error: unknown command or invalid arguments: "output". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000547
548# .prompt MAIN CONTINUE Replace the standard prompts
shaneh5fc25012009-11-11 04:17:07 +0000549do_test shell1-3.17.1 {
shanehca7dfda2009-12-17 21:07:54 +0000550 catchcmd "test.db" ".prompt"
shaneha05e0c42009-11-06 03:22:54 +0000551} {1 {Error: unknown command or invalid arguments: "prompt". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000552do_test shell1-3.17.2 {
shanehca7dfda2009-12-17 21:07:54 +0000553 catchcmd "test.db" ".prompt FOO"
shaneha05e0c42009-11-06 03:22:54 +0000554} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000555do_test shell1-3.17.3 {
shanehca7dfda2009-12-17 21:07:54 +0000556 catchcmd "test.db" ".prompt FOO BAR"
shaneha05e0c42009-11-06 03:22:54 +0000557} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000558do_test shell1-3.17.4 {
shanehe2aa9d72009-11-06 17:20:17 +0000559 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000560 catchcmd "test.db" ".prompt FOO BAR BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000561} {1 {Error: unknown command or invalid arguments: "prompt". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000562
563# .quit Exit this program
shaneh5fc25012009-11-11 04:17:07 +0000564do_test shell1-3.18.1 {
shanehca7dfda2009-12-17 21:07:54 +0000565 catchcmd "test.db" ".quit"
shaneha05e0c42009-11-06 03:22:54 +0000566} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000567do_test shell1-3.18.2 {
shanehe2aa9d72009-11-06 17:20:17 +0000568 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000569 catchcmd "test.db" ".quit BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000570} {1 {Error: unknown command or invalid arguments: "quit". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000571
572# .read FILENAME Execute SQL in FILENAME
shaneh5fc25012009-11-11 04:17:07 +0000573do_test shell1-3.19.1 {
shanehca7dfda2009-12-17 21:07:54 +0000574 catchcmd "test.db" ".read"
shaneha05e0c42009-11-06 03:22:54 +0000575} {1 {Error: unknown command or invalid arguments: "read". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000576do_test shell1-3.19.2 {
shaneha05e0c42009-11-06 03:22:54 +0000577 file delete -force FOO
shanehca7dfda2009-12-17 21:07:54 +0000578 catchcmd "test.db" ".read FOO"
shaneha05e0c42009-11-06 03:22:54 +0000579} {1 {Error: cannot open "FOO"}}
shaneh5fc25012009-11-11 04:17:07 +0000580do_test shell1-3.19.3 {
shanehe2aa9d72009-11-06 17:20:17 +0000581 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000582 catchcmd "test.db" ".read FOO BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000583} {1 {Error: unknown command or invalid arguments: "read". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000584
585# .restore ?DB? FILE Restore content of DB (default "main") from FILE
shaneh5fc25012009-11-11 04:17:07 +0000586do_test shell1-3.20.1 {
shanehca7dfda2009-12-17 21:07:54 +0000587 catchcmd "test.db" ".restore"
shaneha05e0c42009-11-06 03:22:54 +0000588} {1 {Error: unknown command or invalid arguments: "restore". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000589do_test shell1-3.20.2 {
shanehca7dfda2009-12-17 21:07:54 +0000590 catchcmd "test.db" ".restore FOO"
591} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000592do_test shell1-3.20.3 {
shanehca7dfda2009-12-17 21:07:54 +0000593 catchcmd "test.db" ".restore FOO BAR"
shanehe2aa9d72009-11-06 17:20:17 +0000594} {1 {Error: unknown database FOO}}
shaneh5fc25012009-11-11 04:17:07 +0000595do_test shell1-3.20.4 {
shanehe2aa9d72009-11-06 17:20:17 +0000596 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000597 catchcmd "test.db" ".restore FOO BAR BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000598} {1 {Error: unknown command or invalid arguments: "restore". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000599
600# .schema ?TABLE? Show the CREATE statements
601# If TABLE specified, only show tables matching
602# LIKE pattern TABLE.
shaneh5fc25012009-11-11 04:17:07 +0000603do_test shell1-3.21.1 {
shanehca7dfda2009-12-17 21:07:54 +0000604 catchcmd "test.db" ".schema"
shaneha05e0c42009-11-06 03:22:54 +0000605} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000606do_test shell1-3.21.2 {
shanehca7dfda2009-12-17 21:07:54 +0000607 catchcmd "test.db" ".schema FOO"
shaneha05e0c42009-11-06 03:22:54 +0000608} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000609do_test shell1-3.21.3 {
shanehe2aa9d72009-11-06 17:20:17 +0000610 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000611 catchcmd "test.db" ".schema FOO BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000612} {1 {Error: unknown command or invalid arguments: "schema". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000613
614# .separator STRING Change separator used by output mode and .import
shaneh5fc25012009-11-11 04:17:07 +0000615do_test shell1-3.22.1 {
shanehca7dfda2009-12-17 21:07:54 +0000616 catchcmd "test.db" ".separator"
shaneha05e0c42009-11-06 03:22:54 +0000617} {1 {Error: unknown command or invalid arguments: "separator". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000618do_test shell1-3.22.2 {
shanehca7dfda2009-12-17 21:07:54 +0000619 catchcmd "test.db" ".separator FOO"
shaneha05e0c42009-11-06 03:22:54 +0000620} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000621do_test shell1-3.22.3 {
shanehe2aa9d72009-11-06 17:20:17 +0000622 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000623 catchcmd "test.db" ".separator FOO BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000624} {1 {Error: unknown command or invalid arguments: "separator". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000625
626# .show Show the current values for various settings
shaneh5fc25012009-11-11 04:17:07 +0000627do_test shell1-3.23.1 {
shanehca7dfda2009-12-17 21:07:54 +0000628 set res [catchcmd "test.db" ".show"]
shaneha05e0c42009-11-06 03:22:54 +0000629 list [regexp {echo:} $res] \
630 [regexp {explain:} $res] \
631 [regexp {headers:} $res] \
632 [regexp {mode:} $res] \
633 [regexp {nullvalue:} $res] \
634 [regexp {output:} $res] \
635 [regexp {separator:} $res] \
636 [regexp {width:} $res]
637} {1 1 1 1 1 1 1 1}
shaneh5fc25012009-11-11 04:17:07 +0000638do_test shell1-3.23.2 {
shanehe2aa9d72009-11-06 17:20:17 +0000639 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000640 catchcmd "test.db" ".show BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000641} {1 {Error: unknown command or invalid arguments: "show". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000642
643# .tables ?TABLE? List names of tables
644# If TABLE specified, only list tables matching
645# LIKE pattern TABLE.
shaneh5fc25012009-11-11 04:17:07 +0000646do_test shell1-3.24.1 {
shanehca7dfda2009-12-17 21:07:54 +0000647 catchcmd "test.db" ".tables"
shaneha05e0c42009-11-06 03:22:54 +0000648} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000649do_test shell1-3.24.2 {
shanehca7dfda2009-12-17 21:07:54 +0000650 catchcmd "test.db" ".tables FOO"
shaneha05e0c42009-11-06 03:22:54 +0000651} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000652do_test shell1-3.24.3 {
shanehe2aa9d72009-11-06 17:20:17 +0000653 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000654 catchcmd "test.db" ".tables FOO BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000655} {1 {Error: unknown command or invalid arguments: "tables". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000656
657# .timeout MS Try opening locked tables for MS milliseconds
shaneh5fc25012009-11-11 04:17:07 +0000658do_test shell1-3.25.1 {
shanehca7dfda2009-12-17 21:07:54 +0000659 catchcmd "test.db" ".timeout"
shaneha05e0c42009-11-06 03:22:54 +0000660} {1 {Error: unknown command or invalid arguments: "timeout". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000661do_test shell1-3.25.2 {
shanehca7dfda2009-12-17 21:07:54 +0000662 catchcmd "test.db" ".timeout zzz"
shanehe2aa9d72009-11-06 17:20:17 +0000663 # this should be treated the same as a '0' timeout
shaneha05e0c42009-11-06 03:22:54 +0000664} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000665do_test shell1-3.25.3 {
shanehca7dfda2009-12-17 21:07:54 +0000666 catchcmd "test.db" ".timeout 1"
shaneha05e0c42009-11-06 03:22:54 +0000667} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000668do_test shell1-3.25.4 {
shanehe2aa9d72009-11-06 17:20:17 +0000669 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000670 catchcmd "test.db" ".timeout 1 BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000671} {1 {Error: unknown command or invalid arguments: "timeout". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000672
673# .width NUM NUM ... Set column widths for "column" mode
shaneh5fc25012009-11-11 04:17:07 +0000674do_test shell1-3.26.1 {
shanehca7dfda2009-12-17 21:07:54 +0000675 catchcmd "test.db" ".width"
shanehe2aa9d72009-11-06 17:20:17 +0000676} {1 {Error: unknown command or invalid arguments: "width". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000677do_test shell1-3.26.2 {
shanehca7dfda2009-12-17 21:07:54 +0000678 catchcmd "test.db" ".width xxx"
shanehe2aa9d72009-11-06 17:20:17 +0000679 # this should be treated the same as a '0' width for col 1
shaneha05e0c42009-11-06 03:22:54 +0000680} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000681do_test shell1-3.26.3 {
shanehca7dfda2009-12-17 21:07:54 +0000682 catchcmd "test.db" ".width xxx yyy"
shanehe2aa9d72009-11-06 17:20:17 +0000683 # this should be treated the same as a '0' width for col 1 and 2
shaneha05e0c42009-11-06 03:22:54 +0000684} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000685do_test shell1-3.26.4 {
shanehca7dfda2009-12-17 21:07:54 +0000686 catchcmd "test.db" ".width 1 1"
shanehe2aa9d72009-11-06 17:20:17 +0000687 # this should be treated the same as a '1' width for col 1 and 2
shaneha05e0c42009-11-06 03:22:54 +0000688} {0 {}}
689
690# .timer ON|OFF Turn the CPU timer measurement on or off
shaneh5fc25012009-11-11 04:17:07 +0000691do_test shell1-3.27.1 {
shanehca7dfda2009-12-17 21:07:54 +0000692 catchcmd "test.db" ".timer"
shaneha05e0c42009-11-06 03:22:54 +0000693} {1 {Error: unknown command or invalid arguments: "timer". Enter ".help" for help}}
shaneh5fc25012009-11-11 04:17:07 +0000694do_test shell1-3.27.2 {
shanehca7dfda2009-12-17 21:07:54 +0000695 catchcmd "test.db" ".timer ON"
shaneha05e0c42009-11-06 03:22:54 +0000696} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000697do_test shell1-3.27.3 {
shanehca7dfda2009-12-17 21:07:54 +0000698 catchcmd "test.db" ".timer OFF"
shaneha05e0c42009-11-06 03:22:54 +0000699} {0 {}}
shaneh5fc25012009-11-11 04:17:07 +0000700do_test shell1-3.27.4 {
shanehe2aa9d72009-11-06 17:20:17 +0000701 # too many arguments
shanehca7dfda2009-12-17 21:07:54 +0000702 catchcmd "test.db" ".timer OFF BAD"
shanehe2aa9d72009-11-06 17:20:17 +0000703} {1 {Error: unknown command or invalid arguments: "timer". Enter ".help" for help}}
shaneha05e0c42009-11-06 03:22:54 +0000704
shanehca7dfda2009-12-17 21:07:54 +0000705
706#