xref: /sqlite-3.40.0/test/sort4.test (revision dfea4533)
1# 2014 May 6.
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# This file implements regression tests for SQLite library.
12#
13# The tests in this file are brute force tests of the multi-threaded
14# sorter.
15#
16
17set testdir [file dirname $argv0]
18source $testdir/tester.tcl
19set testprefix sort4
20
21# Configure the sorter to use 3 background threads.
22catch { db close }
23sqlite3_shutdown
24sqlite3_config_worker_threads 3
25sqlite3_initialize
26reset_db
27
28# Minimum number of seconds to run for. If the value is 0, each test
29# is run exactly once. Otherwise, tests are repeated until the timeout
30# expires.
31set SORT4TIMEOUT 0
32if {[permutation] == "multithread"} { set SORT4TIMEOUT 300 }
33
34#--------------------------------------------------------------------
35# Set up a table "t1" containing $nRow rows. Each row contains also
36# contains blob fields that collectively contain at least $nPayload
37# bytes of content. The table schema is as follows:
38#
39#   CREATE TABLE t1(a INTEGER, <extra-columns>, b INTEGER);
40#
41# For each row, the values of columns "a" and "b" are set to the same
42# pseudo-randomly selected integer. The "extra-columns", of which there
43# are at most eight, are named c0, c1, c2 etc. Column c0 contains a 4
44# byte string. Column c1 an 8 byte string. Field c2 16 bytes, and so on.
45#
46# This table is intended to be used for testing queries of the form:
47#
48#   SELECT a, <cols>, b FROM t1 ORDER BY a;
49#
50# The test code checks that rows are returned in order, and that the
51# values of "a" and "b" are the same for each row (the idea being that
52# if field "b" at the end of the sorter record has not been corrupted,
53# the rest of the record is probably Ok as well).
54#
55proc populate_table {nRow nPayload} {
56  set nCol 0
57
58  set n 0
59  for {set nCol 0} {$n < $nPayload} {incr nCol} {
60    incr n [expr (4 << $nCol)]
61  }
62
63  set cols [lrange [list xxx c0 c1 c2 c3 c4 c5 c6 c7] 1 $nCol]
64  set data [lrange [list xxx \
65      randomblob(4) randomblob(8) randomblob(16) randomblob(32) \
66      randomblob(64) randomblob(128) randomblob(256) randomblob(512) \
67  ] 1 $nCol]
68
69  execsql { DROP TABLE IF EXISTS t1 }
70
71  db transaction {
72    execsql "CREATE TABLE t1(a, [join $cols ,], b);"
73    set insert "INSERT INTO t1 VALUES(:k, [join $data ,], :k)"
74    for {set i 0} {$i < $nRow} {incr i} {
75      set k [expr int(rand()*1000000000)]
76      execsql $insert
77    }
78  }
79}
80
81# Helper for [do_sorter_test]
82#
83proc sorter_test {nRow nRead nPayload} {
84  set res [list]
85
86  set nLoad [expr ($nRow > $nRead) ? $nRead : $nRow]
87
88  set nPayload [expr (($nPayload+3)/4) * 4]
89  set cols [list]
90  foreach {mask col} {
91    0x04  c0 0x08  c1 0x10  c2 0x20  c3
92    0x40  c4 0x80  c5 0x100 c6 0x200 c7
93  } {
94    if {$nPayload & $mask} { lappend cols $col }
95  }
96
97  # Create two SELECT statements. Statement $sql1 uses the sorter to sort
98  # $nRow records of a bit over $nPayload bytes each read from the "t1"
99  # table created by [populate_table] proc above. Rows are sorted in order
100  # of the integer field in each "t1" record.
101  #
102  # The second SQL statement sorts the same set of rows as the first, but
103  # uses a LIMIT clause, causing SQLite to use a temp table instead of the
104  # sorter for sorting.
105  #
106  set sql1 "SELECT a, [join $cols ,], b FROM t1 WHERE rowid<=$nRow ORDER BY a"
107  set sql2 "SELECT a FROM t1 WHERE rowid<=$nRow ORDER BY a LIMIT $nRead"
108
109  # Pass the two SQL statements to a helper command written in C. This
110  # command steps statement $sql1 $nRead times and compares the integer
111  # values in the rows returned with the results of executing $sql2. If
112  # the comparison fails (indicating some bug in the sorter), a Tcl
113  # exception is thrown.
114  #
115  sorter_test_sort4_helper db $sql1 $nRead $sql2
116  set {} {}
117}
118
119# Usage:
120#
121#   do_sorter_test <testname> <args>...
122#
123# where <args> are any of the following switches:
124#
125#   -rows N          (number of rows to have sorter sort)
126#   -read N          (number of rows to read out of sorter)
127#   -payload N       (bytes of payload to read with each row)
128#   -cachesize N     (Value for "PRAGMA cache_size = ?")
129#   -repeats N       (number of times to repeat test)
130#
131proc do_sorter_test {tn args} {
132  set a(-rows)      1000
133  set a(-repeats)   1
134  set a(-read)      100
135  set a(-payload)   100
136  set a(-cachesize) 100
137
138  foreach {s val} $args {
139    if {[info exists a($s)]==0} {
140      unset a(-cachesize)
141      set optlist "[join [array names a] ,] or -cachesize"
142      error "Unknown option $s, expected $optlist"
143    }
144    set a($s) $val
145  }
146
147  db eval "PRAGMA cache_size = $a(-cachesize)"
148
149  do_test $tn [subst -nocommands {
150    for {set i 0} {[set i] < $a(-repeats)} {incr i} {
151      sorter_test $a(-rows) $a(-read) $a(-payload)
152    }
153  }] {}
154}
155
156proc clock_seconds {} {
157  db one {SELECT strftime('%s')}
158}
159
160#-------------------------------------------------------------------------
161# Begin tests here.
162
163# Create a test database.
164do_test 1 {
165  execsql "PRAGMA page_size = 4096"
166  populate_table 100000 500
167} {}
168
169set iTimeLimit [expr [clock_seconds] + $SORT4TIMEOUT]
170
171for {set tn 2} {1} {incr tn} {
172  do_sorter_test $tn.2 -repeats 10 -rows 1000   -read 100
173  do_sorter_test $tn.3 -repeats 10 -rows 100000 -read 1000
174  do_sorter_test $tn.4 -repeats 10 -rows 100000 -read 1000 -payload 500
175  do_sorter_test $tn.5 -repeats 10 -rows 100000 -read 100000 -payload 8
176  do_sorter_test $tn.6 -repeats 10 -rows 100000 -read 10 -payload 8
177
178  set iNow [clock_seconds]
179  if {$iNow>=$iTimeLimit} break
180  do_test "$testprefix-([expr $iTimeLimit-$iNow] seconds remain)" {} {}
181}
182
183catch { db close }
184sqlite3_shutdown
185sqlite3_config_worker_threads 0
186sqlite3_initialize
187finish_test
188
189