3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
6 # May you do good and not evil.
7 # May you find forgiveness for yourself and forgive others.
8 # May you share freely, never taking more than you give.
10 #***********************************************************************
12 # The focus of this file is testing the CLI shell tool.
13 # These tests are specific to the .stats command.
15 # $Id: shell4.test,v 1.7 2009/07/17 16:54:48 shaneh Exp $
20 # shell4-1.*: Basic tests specific to the "stats" command.
22 set testdir [file dirname $argv0]
23 source $testdir/tester.tcl
24 if {$tcl_platform(platform)=="windows"} {
29 if {![file executable $CLI]} {
34 forcedelete test.db test.db-journal test.db-wal
37 #----------------------------------------------------------------------------
38 # Test cases shell4-1.*: Tests specific to the "stats" command.
41 # should default to off
42 do_test shell4-1.1.1 {
43 set res [catchcmd "test.db" ".show"]
44 list [regexp {stats: off} $res]
47 do_test shell4-1.1.2 {
48 set res [catchcmd "test.db" ".show"]
49 list [regexp {stats: on} $res]
52 # -stats should turn it on
53 do_test shell4-1.2.1 {
54 set res [catchcmd "-stats test.db" ".show"]
55 list [regexp {stats: on} $res]
58 do_test shell4-1.2.2 {
59 set res [catchcmd "-stats test.db" ".show"]
60 list [regexp {stats: off} $res]
63 # .stats ON|OFF Turn stats on or off
64 do_test shell4-1.3.1 {
65 catchcmd "test.db" ".stats"
66 } {1 {Usage: .stats on|off}}
67 do_test shell4-1.3.2 {
68 catchcmd "test.db" ".stats ON"
70 do_test shell4-1.3.3 {
71 catchcmd "test.db" ".stats OFF"
73 do_test shell4-1.3.4 {
75 catchcmd "test.db" ".stats OFF BAD"
76 } {1 {Usage: .stats on|off}}
78 # NB. whitespace is important
79 do_test shell4-1.4.1 {
80 set res [catchcmd "test.db" {.show}]
81 list [regexp {stats: off} $res]
84 do_test shell4-1.4.2 {
85 set res [catchcmd "test.db" {.stats ON
88 list [regexp {stats: on} $res]
91 do_test shell4-1.4.3 {
92 set res [catchcmd "test.db" {.stats OFF
95 list [regexp {stats: off} $res]
98 # make sure stats not present when off
99 do_test shell4-1.5.1 {
100 set res [catchcmd "test.db" {SELECT 1;}]
101 list [regexp {Memory Used} $res] \
102 [regexp {Heap Usage} $res] \
103 [regexp {Autoindex Inserts} $res]
106 # make sure stats are present when on
107 do_test shell4-1.5.2 {
108 set res [catchcmd "test.db" {.stats ON
111 list [regexp {Memory Used} $res] \
112 [regexp {Heap Usage} $res] \
113 [regexp {Autoindex Inserts} $res]