blob: 5af44c8fd7cb05d160bfef7c01771473d43bb9e7 [file] [log] [blame]
shaneh642d8b82010-07-28 16:05:34 +00001# 2010 July 28
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.
shaneh1b8f78c2010-08-18 17:16:26 +000013# These tests are specific to the .stats command.
shaneh642d8b82010-07-28 16:05:34 +000014#
15# $Id: shell4.test,v 1.7 2009/07/17 16:54:48 shaneh Exp $
16#
17
18# Test plan:
19#
20# shell4-1.*: Basic tests specific to the "stats" command.
21#
drh8df91852012-04-24 12:46:05 +000022set testdir [file dirname $argv0]
23source $testdir/tester.tcl
24if {$tcl_platform(platform)=="windows"} {
25 set CLI "sqlite3.exe"
26} else {
27 set CLI "./sqlite3"
shaneh642d8b82010-07-28 16:05:34 +000028}
drh8df91852012-04-24 12:46:05 +000029if {![file executable $CLI]} {
30 finish_test
31 return
shaneh642d8b82010-07-28 16:05:34 +000032}
drh8df91852012-04-24 12:46:05 +000033db close
34forcedelete test.db test.db-journal test.db-wal
35sqlite3 db test.db
shaneh642d8b82010-07-28 16:05:34 +000036
37#----------------------------------------------------------------------------
38# Test cases shell4-1.*: Tests specific to the "stats" command.
39#
40
41# should default to off
42do_test shell4-1.1.1 {
43 set res [catchcmd "test.db" ".show"]
44 list [regexp {stats: off} $res]
45} {1}
46
47do_test shell4-1.1.2 {
48 set res [catchcmd "test.db" ".show"]
49 list [regexp {stats: on} $res]
50} {0}
51
52# -stats should turn it on
53do_test shell4-1.2.1 {
54 set res [catchcmd "-stats test.db" ".show"]
55 list [regexp {stats: on} $res]
56} {1}
57
58do_test shell4-1.2.2 {
59 set res [catchcmd "-stats test.db" ".show"]
60 list [regexp {stats: off} $res]
61} {0}
62
63# .stats ON|OFF Turn stats on or off
64do_test shell4-1.3.1 {
65 catchcmd "test.db" ".stats"
66} {1 {Error: unknown command or invalid arguments: "stats". Enter ".help" for help}}
67do_test shell4-1.3.2 {
68 catchcmd "test.db" ".stats ON"
69} {0 {}}
70do_test shell4-1.3.3 {
71 catchcmd "test.db" ".stats OFF"
72} {0 {}}
73do_test shell4-1.3.4 {
74 # too many arguments
75 catchcmd "test.db" ".stats OFF BAD"
76} {1 {Error: unknown command or invalid arguments: "stats". Enter ".help" for help}}
77
78# NB. whitespace is important
79do_test shell4-1.4.1 {
80 set res [catchcmd "test.db" {.show}]
81 list [regexp {stats: off} $res]
82} {1}
83
84do_test shell4-1.4.2 {
85 set res [catchcmd "test.db" {.stats ON
86.show
87}]
88 list [regexp {stats: on} $res]
89} {1}
90
91do_test shell4-1.4.3 {
92 set res [catchcmd "test.db" {.stats OFF
93.show
94}]
95 list [regexp {stats: off} $res]
96} {1}
97
98# make sure stats not present when off
99do_test shell4-1.5.1 {
100 set res [catchcmd "test.db" {SELECT 1;}]
drhabc97a72010-07-28 17:16:41 +0000101 list [regexp {Memory Used} $res] \
shaneh642d8b82010-07-28 16:05:34 +0000102 [regexp {Heap Usage} $res] \
103 [regexp {Autoindex Inserts} $res]
104} {0 0 0}
105
106# make sure stats are present when on
107do_test shell4-1.5.2 {
108 set res [catchcmd "test.db" {.stats ON
109SELECT 1;
110}]
drhabc97a72010-07-28 17:16:41 +0000111 list [regexp {Memory Used} $res] \
shaneh642d8b82010-07-28 16:05:34 +0000112 [regexp {Heap Usage} $res] \
113 [regexp {Autoindex Inserts} $res]
114} {1 1 1}
115
drh8df91852012-04-24 12:46:05 +0000116finish_test