shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 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 | # |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 14 | # |
| 15 | |
| 16 | # Test plan: |
| 17 | # |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 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. |
larrybr | d797d6b | 2021-10-03 22:03:59 +0000 | [diff] [blame] | 21 | # shell1-{4-8}.*: Test various "dot" commands's functionality. |
| 22 | # shell1-9.*: Basic test that "dot" commands and SQL intermix ok. |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 23 | # |
drh | 8df9185 | 2012-04-24 12:46:05 +0000 | [diff] [blame] | 24 | set testdir [file dirname $argv0] |
| 25 | source $testdir/tester.tcl |
dan | 089555c | 2016-03-15 09:55:44 +0000 | [diff] [blame] | 26 | set CLI [test_find_cli] |
drh | 8df9185 | 2012-04-24 12:46:05 +0000 | [diff] [blame] | 27 | db close |
| 28 | forcedelete test.db test.db-journal test.db-wal |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 29 | sqlite3 db test.db |
| 30 | |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 31 | #---------------------------------------------------------------------------- |
| 32 | # Test cases shell1-1.*: Basic command line option handling. |
| 33 | # |
| 34 | |
| 35 | # invalid option |
| 36 | do_test shell1-1.1.1 { |
| 37 | set res [catchcmd "-bad test.db" ""] |
| 38 | set rc [lindex $res 0] |
| 39 | list $rc \ |
| 40 | [regexp {Error: unknown option: -bad} $res] |
| 41 | } {1 1} |
drh | ac5649a | 2014-11-28 13:35:03 +0000 | [diff] [blame] | 42 | do_test shell1-1.1.1b { |
| 43 | set res [catchcmd "test.db -bad" ""] |
| 44 | set rc [lindex $res 0] |
| 45 | list $rc \ |
| 46 | [regexp {Error: unknown option: -bad} $res] |
| 47 | } {1 1} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 48 | # error on extra options |
| 49 | do_test shell1-1.1.2 { |
drh | 60c4249 | 2016-03-26 15:36:36 +0000 | [diff] [blame] | 50 | catchcmd "test.db \"select+3\" \"select+4\"" "" |
drh | ac5649a | 2014-11-28 13:35:03 +0000 | [diff] [blame] | 51 | } {0 {3 |
| 52 | 4}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 53 | # error on extra options |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 54 | do_test shell1-1.1.3 { |
drh | ac5649a | 2014-11-28 13:35:03 +0000 | [diff] [blame] | 55 | catchcmd "test.db FOO test.db BAD" ".quit" |
drh | 633c798 | 2022-02-08 12:13:16 +0000 | [diff] [blame] | 56 | } {/1 .Error: in prepare, near "FOO": syntax error*/} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 57 | |
| 58 | # -help |
| 59 | do_test shell1-1.2.1 { |
| 60 | set res [catchcmd "-help test.db" ""] |
| 61 | set rc [lindex $res 0] |
| 62 | list $rc \ |
| 63 | [regexp {Usage} $res] \ |
| 64 | [regexp {\-init} $res] \ |
| 65 | [regexp {\-version} $res] |
| 66 | } {1 1 1 1} |
| 67 | |
| 68 | # -init filename read/process named file |
drh | b7c46aa | 2020-11-25 13:59:47 +0000 | [diff] [blame] | 69 | forcedelete FOO |
| 70 | set out [open FOO w] |
| 71 | puts $out "" |
| 72 | close $out |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 73 | do_test shell1-1.3.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 74 | catchcmd "-init FOO test.db" "" |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 75 | } {0 {}} |
| 76 | do_test shell1-1.3.2 { |
drh | ac5649a | 2014-11-28 13:35:03 +0000 | [diff] [blame] | 77 | catchcmd "-init FOO test.db .quit BAD" "" |
| 78 | } {0 {}} |
| 79 | do_test shell1-1.3.3 { |
| 80 | catchcmd "-init FOO test.db BAD .quit" "" |
drh | 633c798 | 2022-02-08 12:13:16 +0000 | [diff] [blame] | 81 | } {/1 .Error: in prepare, near "BAD": syntax error*/} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 82 | |
| 83 | # -echo print commands before execution |
| 84 | do_test shell1-1.4.1 { |
mistachkin | 1fe36bb | 2016-04-04 02:16:44 +0000 | [diff] [blame] | 85 | catchcmd "-echo test.db" "" |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 86 | } {0 {}} |
| 87 | |
| 88 | # -[no]header turn headers on or off |
| 89 | do_test shell1-1.5.1 { |
mistachkin | 1fe36bb | 2016-04-04 02:16:44 +0000 | [diff] [blame] | 90 | catchcmd "-header test.db" "" |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 91 | } {0 {}} |
| 92 | do_test shell1-1.5.2 { |
mistachkin | 1fe36bb | 2016-04-04 02:16:44 +0000 | [diff] [blame] | 93 | catchcmd "-noheader test.db" "" |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 94 | } {0 {}} |
| 95 | |
| 96 | # -bail stop after hitting an error |
| 97 | do_test shell1-1.6.1 { |
mistachkin | 1fe36bb | 2016-04-04 02:16:44 +0000 | [diff] [blame] | 98 | catchcmd "-bail test.db" "" |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 99 | } {0 {}} |
| 100 | |
| 101 | # -interactive force interactive I/O |
| 102 | do_test shell1-1.7.1 { |
| 103 | set res [catchcmd "-interactive test.db" ".quit"] |
| 104 | set rc [lindex $res 0] |
| 105 | list $rc \ |
| 106 | [regexp {SQLite version} $res] \ |
drh | 39a3088 | 2014-02-11 16:22:18 +0000 | [diff] [blame] | 107 | [regexp {Enter ".help" for usage hints} $res] |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 108 | } {0 1 1} |
| 109 | |
| 110 | # -batch force batch I/O |
| 111 | do_test shell1-1.8.1 { |
mistachkin | 1fe36bb | 2016-04-04 02:16:44 +0000 | [diff] [blame] | 112 | catchcmd "-batch test.db" "" |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 113 | } {0 {}} |
| 114 | |
| 115 | # -column set output mode to 'column' |
| 116 | do_test shell1-1.9.1 { |
mistachkin | 1fe36bb | 2016-04-04 02:16:44 +0000 | [diff] [blame] | 117 | catchcmd "-column test.db" "" |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 118 | } {0 {}} |
| 119 | |
| 120 | # -csv set output mode to 'csv' |
| 121 | do_test shell1-1.10.1 { |
mistachkin | 1fe36bb | 2016-04-04 02:16:44 +0000 | [diff] [blame] | 122 | catchcmd "-csv test.db" "" |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 123 | } {0 {}} |
| 124 | |
| 125 | # -html set output mode to HTML |
| 126 | do_test shell1-1.11.1 { |
mistachkin | 1fe36bb | 2016-04-04 02:16:44 +0000 | [diff] [blame] | 127 | catchcmd "-html test.db" "" |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 128 | } {0 {}} |
| 129 | |
| 130 | # -line set output mode to 'line' |
| 131 | do_test shell1-1.12.1 { |
mistachkin | 1fe36bb | 2016-04-04 02:16:44 +0000 | [diff] [blame] | 132 | catchcmd "-line test.db" "" |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 133 | } {0 {}} |
| 134 | |
| 135 | # -list set output mode to 'list' |
| 136 | do_test shell1-1.13.1 { |
mistachkin | 1fe36bb | 2016-04-04 02:16:44 +0000 | [diff] [blame] | 137 | catchcmd "-list test.db" "" |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 138 | } {0 {}} |
| 139 | |
| 140 | # -separator 'x' set output field separator (|) |
| 141 | do_test shell1-1.14.1 { |
mistachkin | 1fe36bb | 2016-04-04 02:16:44 +0000 | [diff] [blame] | 142 | catchcmd "-separator 'x' test.db" "" |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 143 | } {0 {}} |
| 144 | do_test shell1-1.14.2 { |
mistachkin | 1fe36bb | 2016-04-04 02:16:44 +0000 | [diff] [blame] | 145 | catchcmd "-separator x test.db" "" |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 146 | } {0 {}} |
| 147 | do_test shell1-1.14.3 { |
| 148 | set res [catchcmd "-separator" ""] |
| 149 | set rc [lindex $res 0] |
| 150 | list $rc \ |
drh | 98d312f | 2012-10-25 15:23:14 +0000 | [diff] [blame] | 151 | [regexp {Error: missing argument to -separator} $res] |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 152 | } {1 1} |
| 153 | |
shaneh | 642d8b8 | 2010-07-28 16:05:34 +0000 | [diff] [blame] | 154 | # -stats print memory stats before each finalize |
| 155 | do_test shell1-1.14b.1 { |
mistachkin | 1fe36bb | 2016-04-04 02:16:44 +0000 | [diff] [blame] | 156 | catchcmd "-stats test.db" "" |
shaneh | 642d8b8 | 2010-07-28 16:05:34 +0000 | [diff] [blame] | 157 | } {0 {}} |
| 158 | |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 159 | # -nullvalue 'text' set text string for NULL values |
| 160 | do_test shell1-1.15.1 { |
| 161 | catchcmd "-nullvalue 'x' test.db" "" |
| 162 | } {0 {}} |
| 163 | do_test shell1-1.15.2 { |
| 164 | catchcmd "-nullvalue x test.db" "" |
| 165 | } {0 {}} |
| 166 | do_test shell1-1.15.3 { |
| 167 | set res [catchcmd "-nullvalue" ""] |
| 168 | set rc [lindex $res 0] |
| 169 | list $rc \ |
drh | 98d312f | 2012-10-25 15:23:14 +0000 | [diff] [blame] | 170 | [regexp {Error: missing argument to -nullvalue} $res] |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 171 | } {1 1} |
| 172 | |
| 173 | # -version show SQLite version |
| 174 | do_test shell1-1.16.1 { |
drh | 9fd301b | 2011-06-03 13:28:22 +0000 | [diff] [blame] | 175 | set x [catchcmd "-version test.db" ""] |
drh | b24c61a | 2012-05-21 22:45:35 +0000 | [diff] [blame] | 176 | } {/3.[0-9.]+ 20\d\d-[01]\d-\d\d \d\d:\d\d:\d\d [0-9a-f]+/} |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 177 | |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 178 | #---------------------------------------------------------------------------- |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 179 | # Test cases shell1-2.*: Basic "dot" command token parsing. |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 180 | # |
| 181 | |
| 182 | # check first token handling |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 183 | do_test shell1-2.1.1 { |
mistachkin | 1fe36bb | 2016-04-04 02:16:44 +0000 | [diff] [blame] | 184 | catchcmd "test.db" ".foo" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 185 | } {1 {Error: unknown command or invalid arguments: "foo". Enter ".help" for help}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 186 | do_test shell1-2.1.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 187 | catchcmd "test.db" ".\"foo OFF\"" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 188 | } {1 {Error: unknown command or invalid arguments: "foo OFF". Enter ".help" for help}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 189 | do_test shell1-2.1.3 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 190 | catchcmd "test.db" ".\'foo OFF\'" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 191 | } {1 {Error: unknown command or invalid arguments: "foo OFF". Enter ".help" for help}} |
| 192 | |
| 193 | # unbalanced quotes |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 194 | do_test shell1-2.2.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 195 | catchcmd "test.db" ".\"foo OFF" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 196 | } {1 {Error: unknown command or invalid arguments: "foo OFF". Enter ".help" for help}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 197 | do_test shell1-2.2.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 198 | catchcmd "test.db" ".\'foo OFF" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 199 | } {1 {Error: unknown command or invalid arguments: "foo OFF". Enter ".help" for help}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 200 | do_test shell1-2.2.3 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 201 | catchcmd "test.db" ".explain \"OFF" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 202 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 203 | do_test shell1-2.2.4 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 204 | catchcmd "test.db" ".explain \'OFF" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 205 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 206 | do_test shell1-2.2.5 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 207 | catchcmd "test.db" ".mode \"insert FOO" |
drh | ca1776b | 2022-02-01 12:28:17 +0000 | [diff] [blame] | 208 | } {1 {Error: mode should be one of: ascii box column csv html insert json line list markdown qbox quote table tabs tcl}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 209 | do_test shell1-2.2.6 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 210 | catchcmd "test.db" ".mode \'insert FOO" |
drh | ca1776b | 2022-02-01 12:28:17 +0000 | [diff] [blame] | 211 | } {1 {Error: mode should be one of: ascii box column csv html insert json line list markdown qbox quote table tabs tcl}} |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 212 | |
| 213 | # check multiple tokens, and quoted tokens |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 214 | do_test shell1-2.3.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 215 | catchcmd "test.db" ".explain 1" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 216 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 217 | do_test shell1-2.3.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 218 | catchcmd "test.db" ".explain on" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 219 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 220 | do_test shell1-2.3.3 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 221 | catchcmd "test.db" ".explain \"1 2 3\"" |
drh | 173ba09 | 2013-01-28 18:18:26 +0000 | [diff] [blame] | 222 | } {1 {ERROR: Not a boolean value: "1 2 3". Assuming "no".}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 223 | do_test shell1-2.3.4 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 224 | catchcmd "test.db" ".explain \"OFF\"" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 225 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 226 | do_test shell1-2.3.5 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 227 | catchcmd "test.db" ".\'explain\' \'OFF\'" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 228 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 229 | do_test shell1-2.3.6 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 230 | catchcmd "test.db" ".explain \'OFF\'" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 231 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 232 | do_test shell1-2.3.7 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 233 | catchcmd "test.db" ".\'explain\' \'OFF\'" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 234 | } {0 {}} |
| 235 | |
| 236 | # check quoted args are unquoted |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 237 | do_test shell1-2.4.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 238 | catchcmd "test.db" ".mode FOO" |
drh | ca1776b | 2022-02-01 12:28:17 +0000 | [diff] [blame] | 239 | } {1 {Error: mode should be one of: ascii box column csv html insert json line list markdown qbox quote table tabs tcl}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 240 | do_test shell1-2.4.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 241 | catchcmd "test.db" ".mode csv" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 242 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 243 | do_test shell1-2.4.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 244 | catchcmd "test.db" ".mode \"csv\"" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 245 | } {0 {}} |
| 246 | |
| 247 | |
| 248 | #---------------------------------------------------------------------------- |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 249 | # Test cases shell1-3.*: Basic test that "dot" command can be called. |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 250 | # |
| 251 | |
| 252 | # .backup ?DB? FILE Backup DB (default "main") to FILE |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 253 | do_test shell1-3.1.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 254 | catchcmd "test.db" ".backup" |
drh | bc46f02 | 2013-01-23 18:53:23 +0000 | [diff] [blame] | 255 | } {1 {missing FILENAME argument on .backup}} |
drh | f82d78e | 2020-11-25 14:50:42 +0000 | [diff] [blame] | 256 | forcedelete FOO |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 257 | do_test shell1-3.1.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 258 | catchcmd "test.db" ".backup FOO" |
| 259 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 260 | do_test shell1-3.1.3 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 261 | catchcmd "test.db" ".backup FOO BAR" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 262 | } {1 {Error: unknown database FOO}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 263 | do_test shell1-3.1.4 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 264 | # too many arguments |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 265 | catchcmd "test.db" ".backup FOO BAR BAD" |
drh | 4d34282 | 2018-12-10 00:41:28 +0000 | [diff] [blame] | 266 | } {1 {Usage: .backup ?DB? ?OPTIONS? FILENAME}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 267 | |
| 268 | # .bail ON|OFF Stop after hitting an error. Default OFF |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 269 | do_test shell1-3.2.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 270 | catchcmd "test.db" ".bail" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 271 | } {1 {Usage: .bail on|off}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 272 | do_test shell1-3.2.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 273 | catchcmd "test.db" ".bail ON" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 274 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 275 | do_test shell1-3.2.3 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 276 | catchcmd "test.db" ".bail OFF" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 277 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 278 | do_test shell1-3.2.4 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 279 | # too many arguments |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 280 | catchcmd "test.db" ".bail OFF BAD" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 281 | } {1 {Usage: .bail on|off}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 282 | |
drh | c595419 | 2016-12-27 02:43:47 +0000 | [diff] [blame] | 283 | ifcapable vtab { |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 284 | # .databases List names and files of attached databases |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 285 | do_test shell1-3.3.1 { |
drh | eaa544d | 2016-03-26 14:41:13 +0000 | [diff] [blame] | 286 | catchcmd "-csv test.db" ".databases" |
drh | 15707ac | 2016-03-26 13:26:35 +0000 | [diff] [blame] | 287 | } "/0.+main.+[string map {/ ".{1,2}"} [string range [get_pwd] 0 10]].*/" |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 288 | do_test shell1-3.3.2 { |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 289 | # extra arguments ignored |
drh | eaa544d | 2016-03-26 14:41:13 +0000 | [diff] [blame] | 290 | catchcmd "test.db" ".databases BAD" |
drh | 15707ac | 2016-03-26 13:26:35 +0000 | [diff] [blame] | 291 | } "/0.+main.+[string map {/ ".{1,2}"} [string range [get_pwd] 0 10]].*/" |
drh | c595419 | 2016-12-27 02:43:47 +0000 | [diff] [blame] | 292 | } |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 293 | |
| 294 | # .dump ?TABLE? ... Dump the database in an SQL text format |
| 295 | # If TABLE specified, only dump tables matching |
| 296 | # LIKE pattern TABLE. |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 297 | do_test shell1-3.4.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 298 | set res [catchcmd "test.db" ".dump"] |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 299 | list [regexp {BEGIN TRANSACTION;} $res] \ |
| 300 | [regexp {COMMIT;} $res] |
| 301 | } {1 1} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 302 | do_test shell1-3.4.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 303 | set res [catchcmd "test.db" ".dump FOO"] |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 304 | list [regexp {BEGIN TRANSACTION;} $res] \ |
| 305 | [regexp {COMMIT;} $res] |
| 306 | } {1 1} |
drh | 8e9297f | 2020-03-25 12:50:13 +0000 | [diff] [blame] | 307 | # The .dump command now accepts multiple arguments |
| 308 | #do_test shell1-3.4.3 { |
| 309 | # # too many arguments |
| 310 | # catchcmd "test.db" ".dump FOO BAD" |
| 311 | #} {1 {Usage: .dump ?--preserve-rowids? ?--newlines? ?LIKE-PATTERN?}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 312 | |
| 313 | # .echo ON|OFF Turn command echo on or off |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 314 | do_test shell1-3.5.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 315 | catchcmd "test.db" ".echo" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 316 | } {1 {Usage: .echo on|off}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 317 | do_test shell1-3.5.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 318 | catchcmd "test.db" ".echo ON" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 319 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 320 | do_test shell1-3.5.3 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 321 | catchcmd "test.db" ".echo OFF" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 322 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 323 | do_test shell1-3.5.4 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 324 | # too many arguments |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 325 | catchcmd "test.db" ".echo OFF BAD" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 326 | } {1 {Usage: .echo on|off}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 327 | |
| 328 | # .exit Exit this program |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 329 | do_test shell1-3.6.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 330 | catchcmd "test.db" ".exit" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 331 | } {0 {}} |
| 332 | |
| 333 | # .explain ON|OFF Turn output mode suitable for EXPLAIN on or off. |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 334 | do_test shell1-3.7.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 335 | catchcmd "test.db" ".explain" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 336 | # explain is the exception to the booleans. without an option, it turns it on. |
| 337 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 338 | do_test shell1-3.7.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 339 | catchcmd "test.db" ".explain ON" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 340 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 341 | do_test shell1-3.7.3 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 342 | catchcmd "test.db" ".explain OFF" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 343 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 344 | do_test shell1-3.7.4 { |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 345 | # extra arguments ignored |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 346 | catchcmd "test.db" ".explain OFF BAD" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 347 | } {0 {}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 348 | |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 349 | |
| 350 | # .header(s) ON|OFF Turn display of headers on or off |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 351 | do_test shell1-3.9.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 352 | catchcmd "test.db" ".header" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 353 | } {1 {Usage: .headers on|off}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 354 | do_test shell1-3.9.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 355 | catchcmd "test.db" ".header ON" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 356 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 357 | do_test shell1-3.9.3 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 358 | catchcmd "test.db" ".header OFF" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 359 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 360 | do_test shell1-3.9.4 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 361 | # too many arguments |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 362 | catchcmd "test.db" ".header OFF BAD" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 363 | } {1 {Usage: .headers on|off}} |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 364 | |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 365 | do_test shell1-3.9.5 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 366 | catchcmd "test.db" ".headers" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 367 | } {1 {Usage: .headers on|off}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 368 | do_test shell1-3.9.6 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 369 | catchcmd "test.db" ".headers ON" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 370 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 371 | do_test shell1-3.9.7 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 372 | catchcmd "test.db" ".headers OFF" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 373 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 374 | do_test shell1-3.9.8 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 375 | # too many arguments |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 376 | catchcmd "test.db" ".headers OFF BAD" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 377 | } {1 {Usage: .headers on|off}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 378 | |
| 379 | # .help Show this message |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 380 | do_test shell1-3.10.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 381 | set res [catchcmd "test.db" ".help"] |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 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} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 387 | do_test shell1-3.10.2 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 388 | # we allow .help to take extra args (it is help after all) |
drh | 98aa2ab | 2018-09-26 16:53:51 +0000 | [diff] [blame] | 389 | set res [catchcmd "test.db" ".help *"] |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 390 | # look for a few of the possible help commands |
| 391 | list [regexp {.help} $res] \ |
| 392 | [regexp {.quit} $res] \ |
| 393 | [regexp {.show} $res] |
| 394 | } {1 1 1} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 395 | |
| 396 | # .import FILE TABLE Import data from FILE into TABLE |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 397 | do_test shell1-3.11.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 398 | catchcmd "test.db" ".import" |
drh | ccb3781 | 2020-03-09 15:39:39 +0000 | [diff] [blame] | 399 | } {/1 .ERROR: missing FILE argument.*/} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 400 | do_test shell1-3.11.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 401 | catchcmd "test.db" ".import FOO" |
drh | ccb3781 | 2020-03-09 15:39:39 +0000 | [diff] [blame] | 402 | } {/1 .ERROR: missing TABLE argument.*/} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 403 | do_test shell1-3.11.3 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 404 | # too many arguments |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 405 | catchcmd "test.db" ".import FOO BAR BAD" |
drh | ccb3781 | 2020-03-09 15:39:39 +0000 | [diff] [blame] | 406 | } {/1 .ERROR: extra argument: "BAD".*./} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 407 | |
drh | 0e55db1 | 2015-02-06 14:51:13 +0000 | [diff] [blame] | 408 | # .indexes ?TABLE? Show names of all indexes |
| 409 | # If TABLE specified, only show indexes for tables |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 410 | # matching LIKE pattern TABLE. |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 411 | do_test shell1-3.12.1 { |
drh | 0e55db1 | 2015-02-06 14:51:13 +0000 | [diff] [blame] | 412 | catchcmd "test.db" ".indexes" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 413 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 414 | do_test shell1-3.12.2 { |
drh | 0e55db1 | 2015-02-06 14:51:13 +0000 | [diff] [blame] | 415 | catchcmd "test.db" ".indexes FOO" |
| 416 | } {0 {}} |
| 417 | do_test shell1-3.12.2-legacy { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 418 | catchcmd "test.db" ".indices FOO" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 419 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 420 | do_test shell1-3.12.3 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 421 | # too many arguments |
drh | 0e55db1 | 2015-02-06 14:51:13 +0000 | [diff] [blame] | 422 | catchcmd "test.db" ".indexes FOO BAD" |
| 423 | } {1 {Usage: .indexes ?LIKE-PATTERN?}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 424 | |
| 425 | # .mode MODE ?TABLE? Set output mode where MODE is one of: |
mistachkin | e0d6885 | 2014-12-11 03:12:33 +0000 | [diff] [blame] | 426 | # ascii Columns/rows delimited by 0x1F and 0x1E |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 427 | # csv Comma-separated values |
| 428 | # column Left-aligned columns. (See .width) |
| 429 | # html HTML <table> code |
| 430 | # insert SQL insert statements for TABLE |
| 431 | # line One value per line |
mistachkin | e0d6885 | 2014-12-11 03:12:33 +0000 | [diff] [blame] | 432 | # list Values delimited by .separator strings |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 433 | # tabs Tab-separated values |
| 434 | # tcl TCL list elements |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 435 | do_test shell1-3.13.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 436 | catchcmd "test.db" ".mode" |
drh | a501f7d | 2017-06-29 21:33:25 +0000 | [diff] [blame] | 437 | } {0 {current output mode: list}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 438 | do_test shell1-3.13.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 439 | catchcmd "test.db" ".mode FOO" |
drh | ca1776b | 2022-02-01 12:28:17 +0000 | [diff] [blame] | 440 | } {1 {Error: mode should be one of: ascii box column csv html insert json line list markdown qbox quote table tabs tcl}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 441 | do_test shell1-3.13.3 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 442 | catchcmd "test.db" ".mode csv" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 443 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 444 | do_test shell1-3.13.4 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 445 | catchcmd "test.db" ".mode column" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 446 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 447 | do_test shell1-3.13.5 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 448 | catchcmd "test.db" ".mode html" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 449 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 450 | do_test shell1-3.13.6 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 451 | catchcmd "test.db" ".mode insert" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 452 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 453 | do_test shell1-3.13.7 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 454 | catchcmd "test.db" ".mode line" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 455 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 456 | do_test shell1-3.13.8 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 457 | catchcmd "test.db" ".mode list" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 458 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 459 | do_test shell1-3.13.9 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 460 | catchcmd "test.db" ".mode tabs" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 461 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 462 | do_test shell1-3.13.10 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 463 | catchcmd "test.db" ".mode tcl" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 464 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 465 | do_test shell1-3.13.11 { |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 466 | # extra arguments ignored |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 467 | catchcmd "test.db" ".mode tcl BAD" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 468 | } {0 {}} |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 469 | |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 470 | # .nullvalue STRING Print STRING in place of NULL values |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 471 | do_test shell1-3.14.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 472 | catchcmd "test.db" ".nullvalue" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 473 | } {1 {Usage: .nullvalue STRING}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 474 | do_test shell1-3.14.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 475 | catchcmd "test.db" ".nullvalue FOO" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 476 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 477 | do_test shell1-3.14.3 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 478 | # too many arguments |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 479 | catchcmd "test.db" ".nullvalue FOO BAD" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 480 | } {1 {Usage: .nullvalue STRING}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 481 | |
| 482 | # .output FILENAME Send output to FILENAME |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 483 | do_test shell1-3.15.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 484 | catchcmd "test.db" ".output" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 485 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 486 | do_test shell1-3.15.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 487 | catchcmd "test.db" ".output FOO" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 488 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 489 | do_test shell1-3.15.3 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 490 | # too many arguments |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 491 | catchcmd "test.db" ".output FOO BAD" |
drh | 541ef2c | 2020-04-20 16:21:30 +0000 | [diff] [blame] | 492 | } {1 {ERROR: extra parameter: "BAD". Usage: |
| 493 | .output ?FILE? Send output to FILE or stdout if FILE is omitted |
| 494 | If FILE begins with '|' then open it as a pipe. |
| 495 | Options: |
| 496 | --bom Prefix output with a UTF8 byte-order mark |
| 497 | -e Send output to the system text editor |
| 498 | -x Send output as CSV to a spreadsheet |
| 499 | child process exited abnormally}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 500 | |
| 501 | # .output stdout Send output to the screen |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 502 | do_test shell1-3.16.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 503 | catchcmd "test.db" ".output stdout" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 504 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 505 | do_test shell1-3.16.2 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 506 | # too many arguments |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 507 | catchcmd "test.db" ".output stdout BAD" |
drh | 541ef2c | 2020-04-20 16:21:30 +0000 | [diff] [blame] | 508 | } {1 {ERROR: extra parameter: "BAD". Usage: |
| 509 | .output ?FILE? Send output to FILE or stdout if FILE is omitted |
| 510 | If FILE begins with '|' then open it as a pipe. |
| 511 | Options: |
| 512 | --bom Prefix output with a UTF8 byte-order mark |
| 513 | -e Send output to the system text editor |
| 514 | -x Send output as CSV to a spreadsheet |
| 515 | child process exited abnormally}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 516 | |
| 517 | # .prompt MAIN CONTINUE Replace the standard prompts |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 518 | do_test shell1-3.17.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 519 | catchcmd "test.db" ".prompt" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 520 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 521 | do_test shell1-3.17.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 522 | catchcmd "test.db" ".prompt FOO" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 523 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 524 | do_test shell1-3.17.3 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 525 | catchcmd "test.db" ".prompt FOO BAR" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 526 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 527 | do_test shell1-3.17.4 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 528 | # too many arguments |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 529 | catchcmd "test.db" ".prompt FOO BAR BAD" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 530 | } {0 {}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 531 | |
| 532 | # .quit Exit this program |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 533 | do_test shell1-3.18.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 534 | catchcmd "test.db" ".quit" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 535 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 536 | do_test shell1-3.18.2 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 537 | # too many arguments |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 538 | catchcmd "test.db" ".quit BAD" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 539 | } {0 {}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 540 | |
| 541 | # .read FILENAME Execute SQL in FILENAME |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 542 | do_test shell1-3.19.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 543 | catchcmd "test.db" ".read" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 544 | } {1 {Usage: .read FILE}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 545 | do_test shell1-3.19.2 { |
mistachkin | 9ac9931 | 2013-09-13 23:26:47 +0000 | [diff] [blame] | 546 | forcedelete FOO |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 547 | catchcmd "test.db" ".read FOO" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 548 | } {1 {Error: cannot open "FOO"}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 549 | do_test shell1-3.19.3 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 550 | # too many arguments |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 551 | catchcmd "test.db" ".read FOO BAD" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 552 | } {1 {Usage: .read FILE}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 553 | |
| 554 | # .restore ?DB? FILE Restore content of DB (default "main") from FILE |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 555 | do_test shell1-3.20.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 556 | catchcmd "test.db" ".restore" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 557 | } {1 {Usage: .restore ?DB? FILE}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 558 | do_test shell1-3.20.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 559 | catchcmd "test.db" ".restore FOO" |
| 560 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 561 | do_test shell1-3.20.3 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 562 | catchcmd "test.db" ".restore FOO BAR" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 563 | } {1 {Error: unknown database FOO}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 564 | do_test shell1-3.20.4 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 565 | # too many arguments |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 566 | catchcmd "test.db" ".restore FOO BAR BAD" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 567 | } {1 {Usage: .restore ?DB? FILE}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 568 | |
drh | a22dd38 | 2017-06-24 19:21:48 +0000 | [diff] [blame] | 569 | ifcapable vtab { |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 570 | # .schema ?TABLE? Show the CREATE statements |
| 571 | # If TABLE specified, only show tables matching |
| 572 | # LIKE pattern TABLE. |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 573 | do_test shell1-3.21.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 574 | catchcmd "test.db" ".schema" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 575 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 576 | do_test shell1-3.21.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 577 | catchcmd "test.db" ".schema FOO" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 578 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 579 | do_test shell1-3.21.3 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 580 | # too many arguments |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 581 | catchcmd "test.db" ".schema FOO BAD" |
drh | bbb29ec | 2020-10-12 14:56:47 +0000 | [diff] [blame] | 582 | } {1 {Usage: .schema ?--indent? ?--nosys? ?LIKE-PATTERN?}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 583 | |
drh | ac43e98 | 2012-05-21 03:15:06 +0000 | [diff] [blame] | 584 | do_test shell1-3.21.4 { |
| 585 | catchcmd "test.db" { |
| 586 | CREATE TABLE t1(x); |
| 587 | CREATE VIEW v2 AS SELECT x+1 AS y FROM t1; |
| 588 | CREATE VIEW v1 AS SELECT y+1 FROM v2; |
| 589 | } |
| 590 | catchcmd "test.db" ".schema" |
| 591 | } {0 {CREATE TABLE t1(x); |
drh | ceba792 | 2018-01-01 21:28:25 +0000 | [diff] [blame] | 592 | CREATE VIEW v2 AS SELECT x+1 AS y FROM t1 |
drh | 1d315cf | 2018-01-01 21:49:43 +0000 | [diff] [blame] | 593 | /* v2(y) */; |
drh | ceba792 | 2018-01-01 21:28:25 +0000 | [diff] [blame] | 594 | CREATE VIEW v1 AS SELECT y+1 FROM v2 |
drh | 1d315cf | 2018-01-01 21:49:43 +0000 | [diff] [blame] | 595 | /* v1("y+1") */;}} |
larrybr | 4c5c621 | 2022-02-11 01:21:09 +0000 | [diff] [blame] | 596 | |
| 597 | catch {db eval {DROP VIEW v1; DROP VIEW v2; DROP TABLE t1;}} |
drh | a22dd38 | 2017-06-24 19:21:48 +0000 | [diff] [blame] | 598 | } |
drh | ac43e98 | 2012-05-21 03:15:06 +0000 | [diff] [blame] | 599 | |
mistachkin | 636bf9f | 2014-07-19 20:15:16 +0000 | [diff] [blame] | 600 | # .separator STRING Change column separator used by output and .import |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 601 | do_test shell1-3.22.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 602 | catchcmd "test.db" ".separator" |
mistachkin | e0d6885 | 2014-12-11 03:12:33 +0000 | [diff] [blame] | 603 | } {1 {Usage: .separator COL ?ROW?}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 604 | do_test shell1-3.22.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 605 | catchcmd "test.db" ".separator FOO" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 606 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 607 | do_test shell1-3.22.3 { |
drh | 6976c21 | 2014-07-24 12:09:47 +0000 | [diff] [blame] | 608 | catchcmd "test.db" ".separator ABC XYZ" |
| 609 | } {0 {}} |
| 610 | do_test shell1-3.22.4 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 611 | # too many arguments |
drh | 6976c21 | 2014-07-24 12:09:47 +0000 | [diff] [blame] | 612 | catchcmd "test.db" ".separator FOO BAD BAD2" |
mistachkin | e0d6885 | 2014-12-11 03:12:33 +0000 | [diff] [blame] | 613 | } {1 {Usage: .separator COL ?ROW?}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 614 | |
| 615 | # .show Show the current values for various settings |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 616 | do_test shell1-3.23.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 617 | set res [catchcmd "test.db" ".show"] |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 618 | list [regexp {echo:} $res] \ |
| 619 | [regexp {explain:} $res] \ |
| 620 | [regexp {headers:} $res] \ |
| 621 | [regexp {mode:} $res] \ |
| 622 | [regexp {nullvalue:} $res] \ |
| 623 | [regexp {output:} $res] \ |
mistachkin | 636bf9f | 2014-07-19 20:15:16 +0000 | [diff] [blame] | 624 | [regexp {colseparator:} $res] \ |
| 625 | [regexp {rowseparator:} $res] \ |
shaneh | 642d8b8 | 2010-07-28 16:05:34 +0000 | [diff] [blame] | 626 | [regexp {stats:} $res] \ |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 627 | [regexp {width:} $res] |
mistachkin | e0d6885 | 2014-12-11 03:12:33 +0000 | [diff] [blame] | 628 | } {1 1 1 1 1 1 1 1 1 1} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 629 | do_test shell1-3.23.2 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 630 | # too many arguments |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 631 | catchcmd "test.db" ".show BAD" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 632 | } {1 {Usage: .show}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 633 | |
shaneh | 642d8b8 | 2010-07-28 16:05:34 +0000 | [diff] [blame] | 634 | # .stats ON|OFF Turn stats on or off |
drh | 3478490 | 2016-02-27 17:12:36 +0000 | [diff] [blame] | 635 | #do_test shell1-3.23b.1 { |
| 636 | # catchcmd "test.db" ".stats" |
drh | a6e6cf2 | 2021-01-09 19:10:04 +0000 | [diff] [blame] | 637 | #} {1 {Usage: .stats on|off|stmt|vmstep}} |
shaneh | 642d8b8 | 2010-07-28 16:05:34 +0000 | [diff] [blame] | 638 | do_test shell1-3.23b.2 { |
| 639 | catchcmd "test.db" ".stats ON" |
| 640 | } {0 {}} |
| 641 | do_test shell1-3.23b.3 { |
| 642 | catchcmd "test.db" ".stats OFF" |
| 643 | } {0 {}} |
| 644 | do_test shell1-3.23b.4 { |
| 645 | # too many arguments |
| 646 | catchcmd "test.db" ".stats OFF BAD" |
drh | a6e6cf2 | 2021-01-09 19:10:04 +0000 | [diff] [blame] | 647 | } {1 {Usage: .stats ?on|off|stmt|vmstep?}} |
shaneh | 642d8b8 | 2010-07-28 16:05:34 +0000 | [diff] [blame] | 648 | |
drh | 3c49eaf | 2018-06-07 15:23:43 +0000 | [diff] [blame] | 649 | # Ticket 7be932dfa60a8a6b3b26bcf7623ec46e0a403ddb 2018-06-07 |
| 650 | # Adverse interaction between .stats and .eqp |
| 651 | # |
| 652 | do_test shell1-3.23b.5 { |
| 653 | catchcmd "test.db" [string map {"\n " "\n"} { |
| 654 | CREATE TEMP TABLE t1(x); |
| 655 | INSERT INTO t1 VALUES(1),(2); |
| 656 | .stats on |
| 657 | .eqp full |
| 658 | SELECT * FROM t1; |
| 659 | }] |
| 660 | } {/1\n2\n/} |
| 661 | |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 662 | # .tables ?TABLE? List names of tables |
| 663 | # If TABLE specified, only list tables matching |
| 664 | # LIKE pattern TABLE. |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 665 | do_test shell1-3.24.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 666 | catchcmd "test.db" ".tables" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 667 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 668 | do_test shell1-3.24.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 669 | catchcmd "test.db" ".tables FOO" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 670 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 671 | do_test shell1-3.24.3 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 672 | # too many arguments |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 673 | catchcmd "test.db" ".tables FOO BAD" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 674 | } {0 {}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 675 | |
| 676 | # .timeout MS Try opening locked tables for MS milliseconds |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 677 | do_test shell1-3.25.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 678 | catchcmd "test.db" ".timeout" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 679 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 680 | do_test shell1-3.25.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 681 | catchcmd "test.db" ".timeout zzz" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 682 | # this should be treated the same as a '0' timeout |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 683 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 684 | do_test shell1-3.25.3 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 685 | catchcmd "test.db" ".timeout 1" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 686 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 687 | do_test shell1-3.25.4 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 688 | # too many arguments |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 689 | catchcmd "test.db" ".timeout 1 BAD" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 690 | } {0 {}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 691 | |
| 692 | # .width NUM NUM ... Set column widths for "column" mode |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 693 | do_test shell1-3.26.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 694 | catchcmd "test.db" ".width" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 695 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 696 | do_test shell1-3.26.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 697 | catchcmd "test.db" ".width xxx" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 698 | # this should be treated the same as a '0' width for col 1 |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 699 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 700 | do_test shell1-3.26.3 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 701 | catchcmd "test.db" ".width xxx yyy" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 702 | # this should be treated the same as a '0' width for col 1 and 2 |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 703 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 704 | do_test shell1-3.26.4 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 705 | catchcmd "test.db" ".width 1 1" |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 706 | # this should be treated the same as a '1' width for col 1 and 2 |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 707 | } {0 {}} |
drh | 078b1fd | 2012-09-21 13:40:02 +0000 | [diff] [blame] | 708 | do_test shell1-3.26.5 { |
drh | c060508 | 2020-06-05 00:54:27 +0000 | [diff] [blame] | 709 | catchcmd "test.db" ".mode column\n.header off\n.width 10 -10\nSELECT 'abcdefg', 123456;" |
drh | 078b1fd | 2012-09-21 13:40:02 +0000 | [diff] [blame] | 710 | # this should be treated the same as a '1' width for col 1 and 2 |
| 711 | } {0 {abcdefg 123456}} |
| 712 | do_test shell1-3.26.6 { |
drh | c060508 | 2020-06-05 00:54:27 +0000 | [diff] [blame] | 713 | catchcmd "test.db" ".mode column\n.header off\n.width -10 10\nSELECT 'abcdefg', 123456;" |
drh | 078b1fd | 2012-09-21 13:40:02 +0000 | [diff] [blame] | 714 | # this should be treated the same as a '1' width for col 1 and 2 |
| 715 | } {0 { abcdefg 123456 }} |
| 716 | |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 717 | |
| 718 | # .timer ON|OFF Turn the CPU timer measurement on or off |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 719 | do_test shell1-3.27.1 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 720 | catchcmd "test.db" ".timer" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 721 | } {1 {Usage: .timer on|off}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 722 | do_test shell1-3.27.2 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 723 | catchcmd "test.db" ".timer ON" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 724 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 725 | do_test shell1-3.27.3 { |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 726 | catchcmd "test.db" ".timer OFF" |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 727 | } {0 {}} |
shaneh | 5fc2501 | 2009-11-11 04:17:07 +0000 | [diff] [blame] | 728 | do_test shell1-3.27.4 { |
shaneh | e2aa9d7 | 2009-11-06 17:20:17 +0000 | [diff] [blame] | 729 | # too many arguments |
shaneh | ca7dfda | 2009-12-17 21:07:54 +0000 | [diff] [blame] | 730 | catchcmd "test.db" ".timer OFF BAD" |
drh | c2ce0be | 2014-05-29 12:36:14 +0000 | [diff] [blame] | 731 | } {1 {Usage: .timer on|off}} |
shaneh | a05e0c4 | 2009-11-06 03:22:54 +0000 | [diff] [blame] | 732 | |
drh | 53a9d15 | 2011-04-25 18:20:04 +0000 | [diff] [blame] | 733 | do_test shell1-3-28.1 { |
| 734 | catchcmd test.db \ |
| 735 | ".log stdout\nSELECT coalesce(sqlite_log(123,'hello'),'456');" |
| 736 | } "0 {(123) hello\n456}" |
| 737 | |
drh | 078b1fd | 2012-09-21 13:40:02 +0000 | [diff] [blame] | 738 | do_test shell1-3-29.1 { |
| 739 | catchcmd "test.db" ".print this is a test" |
| 740 | } {0 {this is a test}} |
| 741 | |
drh | 4c56b99 | 2013-06-27 13:26:55 +0000 | [diff] [blame] | 742 | # dot-command argument quoting |
| 743 | do_test shell1-3-30.1 { |
| 744 | catchcmd {test.db} {.print "this\"is'a\055test" 'this\"is\\a\055test'} |
| 745 | } {0 {this"is'a-test this\"is\\a\055test}} |
| 746 | do_test shell1-3-31.1 { |
| 747 | catchcmd {test.db} {.print "this\nis\ta\\test" 'this\nis\ta\\test'} |
| 748 | } [list 0 "this\nis\ta\\test this\\nis\\ta\\\\test"] |
| 749 | |
| 750 | |
drh | 5128e85 | 2012-04-24 13:14:49 +0000 | [diff] [blame] | 751 | # Test the output of the ".dump" command |
| 752 | # |
| 753 | do_test shell1-4.1 { |
drh | 55a1b30 | 2013-09-04 16:08:50 +0000 | [diff] [blame] | 754 | db close |
| 755 | forcedelete test.db |
| 756 | sqlite3 db test.db |
drh | 5128e85 | 2012-04-24 13:14:49 +0000 | [diff] [blame] | 757 | db eval { |
drh | 55a1b30 | 2013-09-04 16:08:50 +0000 | [diff] [blame] | 758 | PRAGMA encoding=UTF16; |
drh | 5128e85 | 2012-04-24 13:14:49 +0000 | [diff] [blame] | 759 | CREATE TABLE t1(x); |
mistachkin | 585dcb2 | 2012-12-04 00:23:43 +0000 | [diff] [blame] | 760 | INSERT INTO t1 VALUES(null), (''), (1), (2.25), ('hello'), (x'807f'); |
mistachkin | 151c75a | 2015-04-07 21:16:40 +0000 | [diff] [blame] | 761 | CREATE TABLE t3(x,y); |
| 762 | INSERT INTO t3 VALUES(1,null), (2,''), (3,1), |
| 763 | (4,2.25), (5,'hello'), (6,x'807f'); |
drh | 5128e85 | 2012-04-24 13:14:49 +0000 | [diff] [blame] | 764 | } |
| 765 | catchcmd test.db {.dump} |
| 766 | } {0 {PRAGMA foreign_keys=OFF; |
| 767 | BEGIN TRANSACTION; |
| 768 | CREATE TABLE t1(x); |
drh | f42d318 | 2017-03-08 12:25:18 +0000 | [diff] [blame] | 769 | INSERT INTO t1 VALUES(NULL); |
| 770 | INSERT INTO t1 VALUES(''); |
| 771 | INSERT INTO t1 VALUES(1); |
| 772 | INSERT INTO t1 VALUES(2.25); |
| 773 | INSERT INTO t1 VALUES('hello'); |
| 774 | INSERT INTO t1 VALUES(X'807f'); |
mistachkin | 151c75a | 2015-04-07 21:16:40 +0000 | [diff] [blame] | 775 | CREATE TABLE t3(x,y); |
drh | f42d318 | 2017-03-08 12:25:18 +0000 | [diff] [blame] | 776 | INSERT INTO t3 VALUES(1,NULL); |
| 777 | INSERT INTO t3 VALUES(2,''); |
| 778 | INSERT INTO t3 VALUES(3,1); |
| 779 | INSERT INTO t3 VALUES(4,2.25); |
| 780 | INSERT INTO t3 VALUES(5,'hello'); |
| 781 | INSERT INTO t3 VALUES(6,X'807f'); |
drh | 5128e85 | 2012-04-24 13:14:49 +0000 | [diff] [blame] | 782 | COMMIT;}} |
| 783 | |
dan | b9cd86a | 2017-03-25 18:31:42 +0000 | [diff] [blame] | 784 | |
| 785 | ifcapable vtab { |
| 786 | |
drh | f42d318 | 2017-03-08 12:25:18 +0000 | [diff] [blame] | 787 | # The --preserve-rowids option to .dump |
| 788 | # |
drh | e611f14 | 2017-03-08 11:44:00 +0000 | [diff] [blame] | 789 | do_test shell1-4.1.1 { |
| 790 | catchcmd test.db {.dump --preserve-rowids} |
| 791 | } {0 {PRAGMA foreign_keys=OFF; |
| 792 | BEGIN TRANSACTION; |
| 793 | CREATE TABLE t1(x); |
drh | f42d318 | 2017-03-08 12:25:18 +0000 | [diff] [blame] | 794 | INSERT INTO t1(rowid,x) VALUES(1,NULL); |
| 795 | INSERT INTO t1(rowid,x) VALUES(2,''); |
| 796 | INSERT INTO t1(rowid,x) VALUES(3,1); |
| 797 | INSERT INTO t1(rowid,x) VALUES(4,2.25); |
| 798 | INSERT INTO t1(rowid,x) VALUES(5,'hello'); |
| 799 | INSERT INTO t1(rowid,x) VALUES(6,X'807f'); |
drh | e611f14 | 2017-03-08 11:44:00 +0000 | [diff] [blame] | 800 | CREATE TABLE t3(x,y); |
drh | f42d318 | 2017-03-08 12:25:18 +0000 | [diff] [blame] | 801 | INSERT INTO t3(rowid,x,y) VALUES(1,1,NULL); |
| 802 | INSERT INTO t3(rowid,x,y) VALUES(2,2,''); |
| 803 | INSERT INTO t3(rowid,x,y) VALUES(3,3,1); |
| 804 | INSERT INTO t3(rowid,x,y) VALUES(4,4,2.25); |
| 805 | INSERT INTO t3(rowid,x,y) VALUES(5,5,'hello'); |
| 806 | INSERT INTO t3(rowid,x,y) VALUES(6,6,X'807f'); |
drh | e611f14 | 2017-03-08 11:44:00 +0000 | [diff] [blame] | 807 | COMMIT;}} |
| 808 | |
drh | f42d318 | 2017-03-08 12:25:18 +0000 | [diff] [blame] | 809 | # If the table contains an INTEGER PRIMARY KEY, do not record a separate |
| 810 | # rowid column in the output. |
| 811 | # |
drh | e611f14 | 2017-03-08 11:44:00 +0000 | [diff] [blame] | 812 | do_test shell1-4.1.2 { |
| 813 | db close |
| 814 | forcedelete test2.db |
| 815 | sqlite3 db test2.db |
| 816 | db eval { |
| 817 | CREATE TABLE t1(x INTEGER PRIMARY KEY, y); |
| 818 | INSERT INTO t1 VALUES(1,null), (2,''), (3,1), |
| 819 | (4,2.25), (5,'hello'), (6,x'807f'); |
| 820 | } |
| 821 | catchcmd test2.db {.dump --preserve-rowids} |
| 822 | } {0 {PRAGMA foreign_keys=OFF; |
| 823 | BEGIN TRANSACTION; |
| 824 | CREATE TABLE t1(x INTEGER PRIMARY KEY, y); |
drh | f42d318 | 2017-03-08 12:25:18 +0000 | [diff] [blame] | 825 | INSERT INTO t1 VALUES(1,NULL); |
| 826 | INSERT INTO t1 VALUES(2,''); |
| 827 | INSERT INTO t1 VALUES(3,1); |
| 828 | INSERT INTO t1 VALUES(4,2.25); |
| 829 | INSERT INTO t1 VALUES(5,'hello'); |
| 830 | INSERT INTO t1 VALUES(6,X'807f'); |
drh | e611f14 | 2017-03-08 11:44:00 +0000 | [diff] [blame] | 831 | COMMIT;}} |
| 832 | |
drh | f42d318 | 2017-03-08 12:25:18 +0000 | [diff] [blame] | 833 | # Verify that the table named [table] is correctly quoted and that |
| 834 | # an INTEGER PRIMARY KEY DESC is not an alias for the rowid. |
| 835 | # |
| 836 | do_test shell1-4.1.3 { |
| 837 | db close |
| 838 | forcedelete test2.db |
| 839 | sqlite3 db test2.db |
| 840 | db eval { |
| 841 | CREATE TABLE [table](x INTEGER PRIMARY KEY DESC, y); |
| 842 | INSERT INTO [table] VALUES(1,null), (12,''), (23,1), |
| 843 | (34,2.25), (45,'hello'), (56,x'807f'); |
| 844 | } |
| 845 | catchcmd test2.db {.dump --preserve-rowids} |
| 846 | } {0 {PRAGMA foreign_keys=OFF; |
| 847 | BEGIN TRANSACTION; |
| 848 | CREATE TABLE [table](x INTEGER PRIMARY KEY DESC, y); |
| 849 | INSERT INTO "table"(rowid,x,y) VALUES(1,1,NULL); |
| 850 | INSERT INTO "table"(rowid,x,y) VALUES(2,12,''); |
| 851 | INSERT INTO "table"(rowid,x,y) VALUES(3,23,1); |
| 852 | INSERT INTO "table"(rowid,x,y) VALUES(4,34,2.25); |
| 853 | INSERT INTO "table"(rowid,x,y) VALUES(5,45,'hello'); |
| 854 | INSERT INTO "table"(rowid,x,y) VALUES(6,56,X'807f'); |
| 855 | COMMIT;}} |
| 856 | |
| 857 | # Do not record rowids for a WITHOUT ROWID table. Also check correct quoting |
| 858 | # of table names that contain odd characters. |
| 859 | # |
| 860 | do_test shell1-4.1.4 { |
| 861 | db close |
| 862 | forcedelete test2.db |
| 863 | sqlite3 db test2.db |
| 864 | db eval { |
| 865 | CREATE TABLE [ta<>ble](x INTEGER PRIMARY KEY, y) WITHOUT ROWID; |
| 866 | INSERT INTO [ta<>ble] VALUES(1,null), (12,''), (23,1), |
| 867 | (34,2.25), (45,'hello'), (56,x'807f'); |
| 868 | } |
| 869 | catchcmd test2.db {.dump --preserve-rowids} |
| 870 | } {0 {PRAGMA foreign_keys=OFF; |
| 871 | BEGIN TRANSACTION; |
| 872 | CREATE TABLE [ta<>ble](x INTEGER PRIMARY KEY, y) WITHOUT ROWID; |
| 873 | INSERT INTO "ta<>ble" VALUES(1,NULL); |
| 874 | INSERT INTO "ta<>ble" VALUES(12,''); |
| 875 | INSERT INTO "ta<>ble" VALUES(23,1); |
| 876 | INSERT INTO "ta<>ble" VALUES(34,2.25); |
| 877 | INSERT INTO "ta<>ble" VALUES(45,'hello'); |
| 878 | INSERT INTO "ta<>ble" VALUES(56,X'807f'); |
| 879 | COMMIT;}} |
| 880 | |
| 881 | # Do not record rowids if the rowid is inaccessible |
| 882 | # |
| 883 | do_test shell1-4.1.5 { |
| 884 | db close |
| 885 | forcedelete test2.db |
| 886 | sqlite3 db test2.db |
| 887 | db eval { |
| 888 | CREATE TABLE t1(_ROWID_,rowid,oid); |
| 889 | INSERT INTO t1 VALUES(1,null,'alpha'), (12,'',99), (23,1,x'b0b1b2'); |
| 890 | } |
| 891 | catchcmd test2.db {.dump --preserve-rowids} |
| 892 | } {0 {PRAGMA foreign_keys=OFF; |
| 893 | BEGIN TRANSACTION; |
| 894 | CREATE TABLE t1(_ROWID_,rowid,oid); |
| 895 | INSERT INTO t1 VALUES(1,NULL,'alpha'); |
| 896 | INSERT INTO t1 VALUES(12,'',99); |
| 897 | INSERT INTO t1 VALUES(23,1,X'b0b1b2'); |
| 898 | COMMIT;}} |
drh | e611f14 | 2017-03-08 11:44:00 +0000 | [diff] [blame] | 899 | |
dan | b9cd86a | 2017-03-25 18:31:42 +0000 | [diff] [blame] | 900 | } else { |
| 901 | |
| 902 | do_test shell1-4.1.6 { |
| 903 | db close |
| 904 | forcedelete test2.db |
| 905 | sqlite3 db test2.db |
| 906 | db eval { |
| 907 | CREATE TABLE t1(x INTEGER PRIMARY KEY, y); |
| 908 | INSERT INTO t1 VALUES(1,null), (2,''), (3,1), |
| 909 | (4,2.25), (5,'hello'), (6,x'807f'); |
| 910 | } |
| 911 | catchcmd test2.db {.dump --preserve-rowids} |
| 912 | } {1 {The --preserve-rowids option is not compatible with SQLITE_OMIT_VIRTUALTABLE}} |
| 913 | |
| 914 | } |
| 915 | |
| 916 | |
drh | 5128e85 | 2012-04-24 13:14:49 +0000 | [diff] [blame] | 917 | # Test the output of ".mode insert" |
| 918 | # |
mistachkin | 151c75a | 2015-04-07 21:16:40 +0000 | [diff] [blame] | 919 | do_test shell1-4.2.1 { |
drh | 5128e85 | 2012-04-24 13:14:49 +0000 | [diff] [blame] | 920 | catchcmd test.db ".mode insert t1\nselect * from t1;" |
| 921 | } {0 {INSERT INTO t1 VALUES(NULL); |
mistachkin | 585dcb2 | 2012-12-04 00:23:43 +0000 | [diff] [blame] | 922 | INSERT INTO t1 VALUES(''); |
drh | 5128e85 | 2012-04-24 13:14:49 +0000 | [diff] [blame] | 923 | INSERT INTO t1 VALUES(1); |
| 924 | INSERT INTO t1 VALUES(2.25); |
| 925 | INSERT INTO t1 VALUES('hello'); |
| 926 | INSERT INTO t1 VALUES(X'807f');}} |
| 927 | |
mistachkin | 151c75a | 2015-04-07 21:16:40 +0000 | [diff] [blame] | 928 | # Test the output of ".mode insert" with headers |
| 929 | # |
| 930 | do_test shell1-4.2.2 { |
| 931 | catchcmd test.db ".mode insert t1\n.headers on\nselect * from t1;" |
| 932 | } {0 {INSERT INTO t1(x) VALUES(NULL); |
| 933 | INSERT INTO t1(x) VALUES(''); |
| 934 | INSERT INTO t1(x) VALUES(1); |
| 935 | INSERT INTO t1(x) VALUES(2.25); |
| 936 | INSERT INTO t1(x) VALUES('hello'); |
| 937 | INSERT INTO t1(x) VALUES(X'807f');}} |
| 938 | |
| 939 | # Test the output of ".mode insert" |
| 940 | # |
| 941 | do_test shell1-4.2.3 { |
| 942 | catchcmd test.db ".mode insert t3\nselect * from t3;" |
| 943 | } {0 {INSERT INTO t3 VALUES(1,NULL); |
| 944 | INSERT INTO t3 VALUES(2,''); |
| 945 | INSERT INTO t3 VALUES(3,1); |
| 946 | INSERT INTO t3 VALUES(4,2.25); |
| 947 | INSERT INTO t3 VALUES(5,'hello'); |
| 948 | INSERT INTO t3 VALUES(6,X'807f');}} |
| 949 | |
| 950 | # Test the output of ".mode insert" with headers |
| 951 | # |
mistachkin | cc44540 | 2015-04-07 21:17:53 +0000 | [diff] [blame] | 952 | do_test shell1-4.2.4 { |
mistachkin | 151c75a | 2015-04-07 21:16:40 +0000 | [diff] [blame] | 953 | catchcmd test.db ".mode insert t3\n.headers on\nselect * from t3;" |
| 954 | } {0 {INSERT INTO t3(x,y) VALUES(1,NULL); |
| 955 | INSERT INTO t3(x,y) VALUES(2,''); |
| 956 | INSERT INTO t3(x,y) VALUES(3,1); |
| 957 | INSERT INTO t3(x,y) VALUES(4,2.25); |
| 958 | INSERT INTO t3(x,y) VALUES(5,'hello'); |
| 959 | INSERT INTO t3(x,y) VALUES(6,X'807f');}} |
| 960 | |
mistachkin | 585dcb2 | 2012-12-04 00:23:43 +0000 | [diff] [blame] | 961 | # Test the output of ".mode tcl" |
| 962 | # |
| 963 | do_test shell1-4.3 { |
drh | 55a1b30 | 2013-09-04 16:08:50 +0000 | [diff] [blame] | 964 | db close |
| 965 | forcedelete test.db |
| 966 | sqlite3 db test.db |
| 967 | db eval { |
| 968 | PRAGMA encoding=UTF8; |
| 969 | CREATE TABLE t1(x); |
| 970 | INSERT INTO t1 VALUES(null), (''), (1), (2.25), ('hello'), (x'807f'); |
| 971 | } |
mistachkin | 585dcb2 | 2012-12-04 00:23:43 +0000 | [diff] [blame] | 972 | catchcmd test.db ".mode tcl\nselect * from t1;" |
| 973 | } {0 {"" |
| 974 | "" |
| 975 | "1" |
| 976 | "2.25" |
| 977 | "hello" |
| 978 | "\200\177"}} |
| 979 | |
| 980 | # Test the output of ".mode tcl" with multiple columns |
| 981 | # |
| 982 | do_test shell1-4.4 { |
| 983 | db eval { |
| 984 | CREATE TABLE t2(x,y); |
| 985 | INSERT INTO t2 VALUES(null, ''), (1, 2.25), ('hello', x'807f'); |
| 986 | } |
| 987 | catchcmd test.db ".mode tcl\nselect * from t2;" |
| 988 | } {0 {"" "" |
| 989 | "1" "2.25" |
| 990 | "hello" "\200\177"}} |
| 991 | |
| 992 | # Test the output of ".mode tcl" with ".nullvalue" |
| 993 | # |
| 994 | do_test shell1-4.5 { |
| 995 | catchcmd test.db ".mode tcl\n.nullvalue NULL\nselect * from t2;" |
| 996 | } {0 {"NULL" "" |
| 997 | "1" "2.25" |
| 998 | "hello" "\200\177"}} |
| 999 | |
| 1000 | # Test the output of ".mode tcl" with Tcl reserved characters |
| 1001 | # |
| 1002 | do_test shell1-4.6 { |
| 1003 | db eval { |
| 1004 | CREATE TABLE tcl1(x); |
| 1005 | INSERT INTO tcl1 VALUES('"'), ('['), (']'), ('\{'), ('\}'), (';'), ('$'); |
| 1006 | } |
| 1007 | foreach {x y} [catchcmd test.db ".mode tcl\nselect * from tcl1;"] break |
| 1008 | list $x $y [llength $y] |
| 1009 | } {0 {"\"" |
| 1010 | "[" |
| 1011 | "]" |
| 1012 | "\\{" |
| 1013 | "\\}" |
| 1014 | ";" |
| 1015 | "$"} 7} |
drh | 5128e85 | 2012-04-24 13:14:49 +0000 | [diff] [blame] | 1016 | |
larrybr | d0a9a46 | 2022-01-03 19:33:44 +0000 | [diff] [blame] | 1017 | # Test the output of ".mode quote" |
| 1018 | # |
| 1019 | do_test shell1-4.7 { |
| 1020 | catchcmd test.db ".mode quote\nselect x'0123456789ABCDEF';" |
| 1021 | } {0 X'0123456789abcdef'} |
| 1022 | |
mistachkin | f21979d | 2015-01-18 05:35:01 +0000 | [diff] [blame] | 1023 | # Test using arbitrary byte data with the shell via standard input/output. |
| 1024 | # |
| 1025 | do_test shell1-5.0 { |
| 1026 | # |
| 1027 | # NOTE: Skip NUL byte because it appears to be incompatible with command |
| 1028 | # shell argument parsing. |
| 1029 | # |
| 1030 | for {set i 1} {$i < 256} {incr i} { |
| 1031 | # |
mistachkin | 46a6b99 | 2015-01-18 09:02:57 +0000 | [diff] [blame] | 1032 | # NOTE: Due to how the Tcl [exec] command works (i.e. where it treats |
| 1033 | # command channels opened for it as textual ones), the carriage |
| 1034 | # return character (and on Windows, the end-of-file character) |
| 1035 | # cannot be used here. |
mistachkin | f21979d | 2015-01-18 05:35:01 +0000 | [diff] [blame] | 1036 | # |
mistachkin | 46a6b99 | 2015-01-18 09:02:57 +0000 | [diff] [blame] | 1037 | if {$i==0x0D || ($tcl_platform(platform)=="windows" && $i==0x1A)} { |
mistachkin | f21979d | 2015-01-18 05:35:01 +0000 | [diff] [blame] | 1038 | continue |
| 1039 | } |
drh | 158931a | 2019-04-12 16:25:42 +0000 | [diff] [blame] | 1040 | # Tcl 8.7 maps 0x80 through 0x9f into valid UTF8. So skip those tests. |
| 1041 | if {$i>=0x80 && $i<=0x9f} continue |
drh | 0172568 | 2016-07-25 14:20:01 +0000 | [diff] [blame] | 1042 | if {$i>=0xE0 && $tcl_platform(os)=="OpenBSD"} continue |
mistachkin | be56ad3 | 2016-07-29 04:12:18 +0000 | [diff] [blame] | 1043 | if {$i>=0xE0 && $i<=0xEF && $tcl_platform(os)=="Linux"} continue |
mistachkin | f21979d | 2015-01-18 05:35:01 +0000 | [diff] [blame] | 1044 | set hex [format %02X $i] |
| 1045 | set char [subst \\x$hex]; set oldChar $char |
mistachkin | 0acee51 | 2015-01-19 21:11:31 +0000 | [diff] [blame] | 1046 | set escapes [list] |
| 1047 | if {$tcl_platform(platform)=="windows"} { |
| 1048 | # |
| 1049 | # NOTE: On Windows, we need to escape all the whitespace characters, |
| 1050 | # the alarm (\a) character, and those with special meaning to |
| 1051 | # the SQLite shell itself. |
| 1052 | # |
| 1053 | set escapes [list \ |
| 1054 | \a \\a \b \\b \t \\t \n \\n \v \\v \f \\f \r \\r \ |
| 1055 | " " "\" \"" \" \\\" ' \"'\" \\ \\\\] |
| 1056 | } else { |
| 1057 | # |
| 1058 | # NOTE: On Unix, we need to escape most of the whitespace characters |
| 1059 | # and those with special meaning to the SQLite shell itself. |
| 1060 | # The alarm (\a), backspace (\b), and carriage-return (\r) |
| 1061 | # characters do not appear to require escaping on Unix. For |
| 1062 | # the alarm and backspace characters, this is probably due to |
| 1063 | # differences in the command shell. For the carriage-return, |
| 1064 | # it is probably due to differences in how Tcl handles command |
| 1065 | # channel end-of-line translations. |
| 1066 | # |
| 1067 | set escapes [list \ |
| 1068 | \t \\t \n \\n \v \\v \f \\f \ |
| 1069 | " " "\" \"" \" \\\" ' \"'\" \\ \\\\] |
| 1070 | } |
| 1071 | set char [string map $escapes $char] |
mistachkin | bfefa4c | 2015-01-19 21:27:46 +0000 | [diff] [blame] | 1072 | set x [catchcmdex test.db ".print $char\n"] |
mistachkin | f21979d | 2015-01-18 05:35:01 +0000 | [diff] [blame] | 1073 | set code [lindex $x 0] |
| 1074 | set res [lindex $x 1] |
| 1075 | if {$code ne "0"} { |
| 1076 | error "failed with error: $res" |
| 1077 | } |
| 1078 | if {$res ne "$oldChar\n"} { |
mistachkin | 48dcf2b | 2016-04-04 17:59:37 +0000 | [diff] [blame] | 1079 | if {[llength $res] > 0} { |
| 1080 | set got [format %02X [scan $res %c]] |
| 1081 | } else { |
| 1082 | set got <empty> |
| 1083 | } |
| 1084 | error "failed with byte $hex mismatch, got $got" |
mistachkin | f21979d | 2015-01-18 05:35:01 +0000 | [diff] [blame] | 1085 | } |
| 1086 | } |
| 1087 | } {} |
| 1088 | |
drh | 697c9ea | 2016-05-16 11:55:09 +0000 | [diff] [blame] | 1089 | # These test cases do not work on MinGW |
| 1090 | if 0 { |
| 1091 | |
mistachkin | 49e1125 | 2016-04-04 15:47:46 +0000 | [diff] [blame] | 1092 | # The string used here is the word "test" in Chinese. |
| 1093 | # In UTF-8, it is encoded as: \xE6\xB5\x8B\xE8\xAF\x95 |
| 1094 | set test \u6D4B\u8BD5 |
| 1095 | |
mistachkin | 1fe36bb | 2016-04-04 02:16:44 +0000 | [diff] [blame] | 1096 | do_test shell1-6.0 { |
mistachkin | 49e1125 | 2016-04-04 15:47:46 +0000 | [diff] [blame] | 1097 | set fileName $test; append fileName .db |
| 1098 | catch {forcedelete $fileName} |
mistachkin | 1fe36bb | 2016-04-04 02:16:44 +0000 | [diff] [blame] | 1099 | set x [catchcmdex $fileName "CREATE TABLE t1(x);\n.schema\n"] |
| 1100 | set code [lindex $x 0] |
| 1101 | set res [string trim [lindex $x 1]] |
| 1102 | if {$code ne "0"} { |
| 1103 | error "failed with error: $res" |
| 1104 | } |
| 1105 | if {$res ne "CREATE TABLE t1(x);"} { |
| 1106 | error "failed with mismatch: $res" |
| 1107 | } |
| 1108 | if {![file exists $fileName]} { |
mistachkin | 1810f22 | 2016-04-04 02:33:34 +0000 | [diff] [blame] | 1109 | error "file \"$fileName\" (Unicode) does not exist" |
mistachkin | 1fe36bb | 2016-04-04 02:16:44 +0000 | [diff] [blame] | 1110 | } |
| 1111 | forcedelete $fileName |
| 1112 | } {} |
| 1113 | |
mistachkin | 49e1125 | 2016-04-04 15:47:46 +0000 | [diff] [blame] | 1114 | do_test shell1-6.1 { |
| 1115 | catch {forcedelete test3.db} |
| 1116 | set x [catchcmdex test3.db \ |
| 1117 | "CREATE TABLE [encoding convertto utf-8 $test](x);\n.schema\n"] |
| 1118 | set code [lindex $x 0] |
| 1119 | set res [string trim [lindex $x 1]] |
| 1120 | if {$code ne "0"} { |
| 1121 | error "failed with error: $res" |
| 1122 | } |
| 1123 | if {$res ne "CREATE TABLE ${test}(x);"} { |
| 1124 | error "failed with mismatch: $res" |
| 1125 | } |
| 1126 | forcedelete test3.db |
| 1127 | } {} |
drh | 697c9ea | 2016-05-16 11:55:09 +0000 | [diff] [blame] | 1128 | } |
mistachkin | 49e1125 | 2016-04-04 15:47:46 +0000 | [diff] [blame] | 1129 | |
mistachkin | 9d10726 | 2018-03-23 14:24:34 +0000 | [diff] [blame] | 1130 | db close |
| 1131 | forcedelete test.db test.db-journal test.db-wal |
| 1132 | sqlite3 db test.db |
| 1133 | |
dan | 07f119e | 2018-03-24 15:08:48 +0000 | [diff] [blame] | 1134 | # The shell tool ".schema" command uses virtual table "pragma_database_list" |
| 1135 | # |
| 1136 | ifcapable vtab { |
| 1137 | |
mistachkin | 9d10726 | 2018-03-23 14:24:34 +0000 | [diff] [blame] | 1138 | do_test shell1-7.1.1 { |
| 1139 | db eval { |
| 1140 | CREATE TABLE Z (x TEXT PRIMARY KEY); |
| 1141 | CREATE TABLE _ (x TEXT PRIMARY KEY); |
| 1142 | CREATE TABLE YY (x TEXT PRIMARY KEY); |
| 1143 | CREATE TABLE __ (x TEXT PRIMARY KEY); |
| 1144 | CREATE TABLE WWW (x TEXT PRIMARY KEY); |
| 1145 | CREATE TABLE ___ (x TEXT PRIMARY KEY); |
| 1146 | } |
| 1147 | } {} |
| 1148 | do_test shell1-7.1.2 { |
| 1149 | catchcmd "test.db" ".schema _" |
| 1150 | } {0 {CREATE TABLE Z (x TEXT PRIMARY KEY); |
| 1151 | CREATE TABLE _ (x TEXT PRIMARY KEY);}} |
| 1152 | do_test shell1-7.1.3 { |
| 1153 | catchcmd "test.db" ".schema \\\\_" |
| 1154 | } {0 {CREATE TABLE _ (x TEXT PRIMARY KEY);}} |
| 1155 | do_test shell1-7.1.4 { |
| 1156 | catchcmd "test.db" ".schema __" |
| 1157 | } {0 {CREATE TABLE YY (x TEXT PRIMARY KEY); |
| 1158 | CREATE TABLE __ (x TEXT PRIMARY KEY);}} |
| 1159 | do_test shell1-7.1.5 { |
| 1160 | catchcmd "test.db" ".schema \\\\_\\\\_" |
| 1161 | } {0 {CREATE TABLE __ (x TEXT PRIMARY KEY);}} |
| 1162 | do_test shell1-7.1.6 { |
| 1163 | catchcmd "test.db" ".schema ___" |
| 1164 | } {0 {CREATE TABLE WWW (x TEXT PRIMARY KEY); |
| 1165 | CREATE TABLE ___ (x TEXT PRIMARY KEY);}} |
| 1166 | do_test shell1-7.1.7 { |
| 1167 | catchcmd "test.db" ".schema \\\\_\\\\_\\\\_" |
| 1168 | } {0 {CREATE TABLE ___ (x TEXT PRIMARY KEY);}} |
| 1169 | |
dan | 07f119e | 2018-03-24 15:08:48 +0000 | [diff] [blame] | 1170 | } |
| 1171 | |
drh | 4dfdb86 | 2020-08-11 18:17:04 +0000 | [diff] [blame] | 1172 | # Test case for the ieee754 and decimal extensions in the shell. |
| 1173 | # See the "floatingpoint.html" file in the documentation for more |
| 1174 | # information. |
| 1175 | # |
| 1176 | do_test shell1-8.1 { |
| 1177 | catchcmd ":memory:" { |
| 1178 | -- The pow2 table will hold all the necessary powers of two. |
| 1179 | CREATE TABLE pow2(x INTEGER PRIMARY KEY, v TEXT); |
| 1180 | WITH RECURSIVE c(x,v) AS ( |
| 1181 | VALUES(0,'1') |
| 1182 | UNION ALL |
| 1183 | SELECT x+1, decimal_mul(v,'2') FROM c WHERE x+1<=971 |
| 1184 | ) INSERT INTO pow2(x,v) SELECT x, v FROM c; |
| 1185 | WITH RECURSIVE c(x,v) AS ( |
| 1186 | VALUES(-1,'0.5') |
| 1187 | UNION ALL |
| 1188 | SELECT x-1, decimal_mul(v,'0.5') FROM c WHERE x-1>=-1075 |
| 1189 | ) INSERT INTO pow2(x,v) SELECT x, v FROM c; |
| 1190 | |
| 1191 | -- This query finds the decimal representation of each value in the "c" table. |
| 1192 | WITH c(n) AS (VALUES(47.49)) |
| 1193 | ----XXXXX----------- Replace with whatever you want |
| 1194 | SELECT decimal_mul(ieee754_mantissa(c.n),pow2.v) |
| 1195 | FROM pow2, c WHERE pow2.x=ieee754_exponent(c.n); |
| 1196 | } |
| 1197 | } {0 47.49000000000000198951966012828052043914794921875} |
| 1198 | do_test shell1-8.2 { |
| 1199 | catchcmd :memory: { |
| 1200 | .mode box |
| 1201 | SELECT ieee754(47.49) AS x; |
| 1202 | } |
| 1203 | } {0 {┌───────────────────────────────┐ |
| 1204 | │ x │ |
| 1205 | ├───────────────────────────────┤ |
| 1206 | │ ieee754(6683623321994527,-47) │ |
| 1207 | └───────────────────────────────┘}} |
| 1208 | do_test shell1-8.3 { |
| 1209 | catchcmd ":memory: --box" { |
| 1210 | select ieee754(6683623321994527,-47) as x; |
| 1211 | } |
| 1212 | } {0 {┌───────┐ |
| 1213 | │ x │ |
| 1214 | ├───────┤ |
| 1215 | │ 47.49 │ |
| 1216 | └───────┘}} |
| 1217 | do_test shell1-8.4 { |
| 1218 | catchcmd ":memory: --table" {SELECT ieee754_mantissa(47.49) AS M, ieee754_exponent(47.49) AS E;} |
| 1219 | } {0 {+------------------+-----+ |
| 1220 | | M | E | |
| 1221 | +------------------+-----+ |
| 1222 | | 6683623321994527 | -47 | |
| 1223 | +------------------+-----+}} |
| 1224 | |
larrybr | d797d6b | 2021-10-03 22:03:59 +0000 | [diff] [blame] | 1225 | #---------------------------------------------------------------------------- |
| 1226 | # Test cases shell1-9.*: Basic test that "dot" commands and SQL intermix ok. |
| 1227 | # |
| 1228 | do_test shell1-9.1 { |
| 1229 | catchcmd :memory: { |
| 1230 | .mode csv |
| 1231 | /* |
| 1232 | x */ select 1,2; --x |
| 1233 | -- .nada |
| 1234 | ; |
| 1235 | .mode csv |
| 1236 | --x |
| 1237 | select 2,1; select 3,4; |
| 1238 | } |
| 1239 | } {0 {1,2 |
| 1240 | 2,1 |
| 1241 | 3,4}} |
| 1242 | |
drh | 8df9185 | 2012-04-24 12:46:05 +0000 | [diff] [blame] | 1243 | finish_test |