os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/tableapi.test
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
# 2001 September 15
sl@0
     2
#
sl@0
     3
# The author disclaims copyright to this source code.  In place of
sl@0
     4
# a legal notice, here is a blessing:
sl@0
     5
#
sl@0
     6
#    May you do good and not evil.
sl@0
     7
#    May you find forgiveness for yourself and forgive others.
sl@0
     8
#    May you share freely, never taking more than you give.
sl@0
     9
#
sl@0
    10
#***********************************************************************
sl@0
    11
# This file implements regression tests for SQLite library.  The
sl@0
    12
# focus of this file is testing the sqlite_exec_printf() and
sl@0
    13
# sqlite_get_table_printf() APIs.
sl@0
    14
#
sl@0
    15
# $Id: tableapi.test,v 1.20 2008/07/31 02:05:05 shane Exp $
sl@0
    16
sl@0
    17
set testdir [file dirname $argv0]
sl@0
    18
source $testdir/tester.tcl
sl@0
    19
sl@0
    20
ifcapable memdebug {
sl@0
    21
  source $testdir/malloc_common.tcl
sl@0
    22
}
sl@0
    23
sl@0
    24
do_test tableapi-1.0 {
sl@0
    25
  set ::dbx [sqlite3_open test.db]
sl@0
    26
  catch {sqlite_exec_printf $::dbx {DROP TABLE xyz} {}}
sl@0
    27
  sqlite3_exec_printf $::dbx {CREATE TABLE %s(a int, b text)} xyz
sl@0
    28
} {0 {}}
sl@0
    29
do_test tableapi-1.1 {
sl@0
    30
  sqlite3_exec_printf $::dbx {
sl@0
    31
    INSERT INTO xyz VALUES(1,'%q')
sl@0
    32
  } {Hi Y'all}
sl@0
    33
} {0 {}}
sl@0
    34
do_test tableapi-1.2 {
sl@0
    35
  sqlite3_exec_printf $::dbx {SELECT * FROM xyz} {}
sl@0
    36
} {0 {a b 1 {Hi Y'all}}}
sl@0
    37
sl@0
    38
ifcapable gettable {
sl@0
    39
sl@0
    40
do_test tableapi-2.1 {
sl@0
    41
  sqlite3_get_table_printf $::dbx {
sl@0
    42
    BEGIN TRANSACTION;
sl@0
    43
    SELECT * FROM xyz WHERE b='%q'
sl@0
    44
  } {Hi Y'all}
sl@0
    45
} {0 1 2 a b 1 {Hi Y'all}}
sl@0
    46
do_test tableapi-2.2 {
sl@0
    47
  sqlite3_get_table_printf $::dbx {
sl@0
    48
    SELECT * FROM xyz
sl@0
    49
  } {}
sl@0
    50
} {0 1 2 a b 1 {Hi Y'all}}
sl@0
    51
do_test tableapi-2.3 {
sl@0
    52
  for {set i 2} {$i<=50} {incr i} {
sl@0
    53
    sqlite3_get_table_printf $::dbx \
sl@0
    54
       "INSERT INTO xyz VALUES($i,'(%s)')" $i
sl@0
    55
  }
sl@0
    56
  sqlite3_get_table_printf $::dbx {
sl@0
    57
    SELECT * FROM xyz ORDER BY a
sl@0
    58
  } {}
sl@0
    59
} {0 50 2 a b 1 {Hi Y'all} 2 (2) 3 (3) 4 (4) 5 (5) 6 (6) 7 (7) 8 (8) 9 (9) 10 (10) 11 (11) 12 (12) 13 (13) 14 (14) 15 (15) 16 (16) 17 (17) 18 (18) 19 (19) 20 (20) 21 (21) 22 (22) 23 (23) 24 (24) 25 (25) 26 (26) 27 (27) 28 (28) 29 (29) 30 (30) 31 (31) 32 (32) 33 (33) 34 (34) 35 (35) 36 (36) 37 (37) 38 (38) 39 (39) 40 (40) 41 (41) 42 (42) 43 (43) 44 (44) 45 (45) 46 (46) 47 (47) 48 (48) 49 (49) 50 (50)}
sl@0
    60
do_test tableapi-2.3.1 {
sl@0
    61
  sqlite3_get_table_printf $::dbx {
sl@0
    62
    SELECT * FROM xyz  WHERE a>49 ORDER BY a
sl@0
    63
  } {}
sl@0
    64
} {0 1 2 a b 50 (50)}
sl@0
    65
do_test tableapi-2.3.2 {
sl@0
    66
  sqlite3_get_table_printf $::dbx {
sl@0
    67
    SELECT * FROM xyz WHERE a>47 ORDER BY a
sl@0
    68
  } {}
sl@0
    69
} {0 3 2 a b 48 (48) 49 (49) 50 (50)}
sl@0
    70
do_test tableapi-2.3.3 {
sl@0
    71
  sqlite3_get_table_printf $::dbx {
sl@0
    72
    SELECT * FROM xyz WHERE a>47 ORDER BY a; invalid
sl@0
    73
  } {}
sl@0
    74
} {1 {near "invalid": syntax error}}
sl@0
    75
do_test tableapi-2.3.4 {
sl@0
    76
  sqlite3_get_table_printf $::dbx {
sl@0
    77
    SELECT * FROM xyz WHERE a>47 ORDER BY a
sl@0
    78
  } {} 8
sl@0
    79
} {0 a b 48 (48) 49 (49) 50 (50)}
sl@0
    80
do_test tableapi-2.4 {
sl@0
    81
  set manyquote ''''''''
sl@0
    82
  append manyquote $manyquote
sl@0
    83
  append manyquote $manyquote
sl@0
    84
  append manyquote $manyquote
sl@0
    85
  append manyquote $manyquote
sl@0
    86
  append manyquote $manyquote
sl@0
    87
  append manyquote $manyquote
sl@0
    88
  set ::big_str "$manyquote Hello $manyquote"
sl@0
    89
  sqlite3_get_table_printf $::dbx {
sl@0
    90
    INSERT INTO xyz VALUES(51,'%q')
sl@0
    91
  } $::big_str
sl@0
    92
} {0 0 0}
sl@0
    93
do_test tableapi-2.5 {
sl@0
    94
  sqlite3_get_table_printf $::dbx {
sl@0
    95
    SELECT * FROM xyz WHERE a>49 ORDER BY a;
sl@0
    96
  } {}
sl@0
    97
} "0 2 2 a b 50 (50) 51 \173$::big_str\175"
sl@0
    98
do_test tableapi-2.6 {
sl@0
    99
  sqlite3_get_table_printf $::dbx {
sl@0
   100
    INSERT INTO xyz VALUES(52,NULL)
sl@0
   101
  } {}
sl@0
   102
  ifcapable subquery {
sl@0
   103
    sqlite3_get_table_printf $::dbx {
sl@0
   104
      SELECT * FROM xyz WHERE a IN (42,50,52) ORDER BY a DESC
sl@0
   105
    } {}
sl@0
   106
  } else {
sl@0
   107
    sqlite3_get_table_printf $::dbx {
sl@0
   108
      SELECT * FROM xyz WHERE a=42 OR a=50 OR a=52 ORDER BY a DESC
sl@0
   109
    } {}
sl@0
   110
  }
sl@0
   111
} {0 3 2 a b 52 NULL 50 (50) 42 (42)}
sl@0
   112
do_test tableapi-2.7 {
sl@0
   113
  sqlite3_get_table_printf $::dbx {
sl@0
   114
    SELECT * FROM xyz WHERE a>1000
sl@0
   115
  } {}
sl@0
   116
} {0 0 0}
sl@0
   117
sl@0
   118
}; # end ifcapable gettable
sl@0
   119
sl@0
   120
sl@0
   121
# Repeat all tests with the empty_result_callbacks pragma turned on
sl@0
   122
#
sl@0
   123
do_test tableapi-3.1 {
sl@0
   124
  sqlite3_get_table_printf $::dbx {
sl@0
   125
    ROLLBACK;
sl@0
   126
    PRAGMA empty_result_callbacks = ON;
sl@0
   127
    SELECT * FROM xyz WHERE b='%q'
sl@0
   128
  } {Hi Y'all}
sl@0
   129
} {0 1 2 a b 1 {Hi Y'all}}
sl@0
   130
do_test tableapi-3.2 {
sl@0
   131
  sqlite3_get_table_printf $::dbx {
sl@0
   132
    SELECT * FROM xyz
sl@0
   133
  } {}
sl@0
   134
} {0 1 2 a b 1 {Hi Y'all}}
sl@0
   135
do_test tableapi-3.3 {
sl@0
   136
  for {set i 2} {$i<=50} {incr i} {
sl@0
   137
    sqlite3_get_table_printf $::dbx \
sl@0
   138
       "INSERT INTO xyz VALUES($i,'(%s)')" $i
sl@0
   139
  }
sl@0
   140
  sqlite3_get_table_printf $::dbx {
sl@0
   141
    SELECT * FROM xyz ORDER BY a
sl@0
   142
  } {}
sl@0
   143
} {0 50 2 a b 1 {Hi Y'all} 2 (2) 3 (3) 4 (4) 5 (5) 6 (6) 7 (7) 8 (8) 9 (9) 10 (10) 11 (11) 12 (12) 13 (13) 14 (14) 15 (15) 16 (16) 17 (17) 18 (18) 19 (19) 20 (20) 21 (21) 22 (22) 23 (23) 24 (24) 25 (25) 26 (26) 27 (27) 28 (28) 29 (29) 30 (30) 31 (31) 32 (32) 33 (33) 34 (34) 35 (35) 36 (36) 37 (37) 38 (38) 39 (39) 40 (40) 41 (41) 42 (42) 43 (43) 44 (44) 45 (45) 46 (46) 47 (47) 48 (48) 49 (49) 50 (50)}
sl@0
   144
do_test tableapi-3.3.1 {
sl@0
   145
  sqlite3_get_table_printf $::dbx {
sl@0
   146
    SELECT * FROM xyz  WHERE a>49 ORDER BY a
sl@0
   147
  } {}
sl@0
   148
} {0 1 2 a b 50 (50)}
sl@0
   149
do_test tableapi-3.3.2 {
sl@0
   150
  sqlite3_get_table_printf $::dbx {
sl@0
   151
    SELECT * FROM xyz WHERE a>47 ORDER BY a
sl@0
   152
  } {}
sl@0
   153
} {0 3 2 a b 48 (48) 49 (49) 50 (50)}
sl@0
   154
do_test tableapi-3.4 {
sl@0
   155
  sqlite3_get_table_printf $::dbx {
sl@0
   156
    INSERT INTO xyz VALUES(51,'%q')
sl@0
   157
  } $::big_str
sl@0
   158
} {0 0 0}
sl@0
   159
do_test tableapi-3.5 {
sl@0
   160
  sqlite3_get_table_printf $::dbx {
sl@0
   161
    SELECT * FROM xyz WHERE a>49 ORDER BY a;
sl@0
   162
  } {}
sl@0
   163
} "0 2 2 a b 50 (50) 51 \173$::big_str\175"
sl@0
   164
do_test tableapi-3.6 {
sl@0
   165
  sqlite3_get_table_printf $::dbx {
sl@0
   166
    INSERT INTO xyz VALUES(52,NULL)
sl@0
   167
  } {}
sl@0
   168
  ifcapable subquery {
sl@0
   169
    sqlite3_get_table_printf $::dbx {
sl@0
   170
      SELECT * FROM xyz WHERE a IN (42,50,52) ORDER BY a DESC
sl@0
   171
    } {}
sl@0
   172
  } else {
sl@0
   173
    sqlite3_get_table_printf $::dbx {
sl@0
   174
      SELECT * FROM xyz WHERE a=42 OR a=50 OR a=52 ORDER BY a DESC
sl@0
   175
    } {}
sl@0
   176
  }
sl@0
   177
} {0 3 2 a b 52 NULL 50 (50) 42 (42)}
sl@0
   178
do_test tableapi-3.7 {
sl@0
   179
  sqlite3_get_table_printf $::dbx {
sl@0
   180
    SELECT * FROM xyz WHERE a>1000
sl@0
   181
  } {}
sl@0
   182
} {0 0 2 a b}
sl@0
   183
sl@0
   184
do_test tableapi-4.1 {
sl@0
   185
  set rc [catch {
sl@0
   186
    sqlite3_get_table_printf $::dbx {
sl@0
   187
      SELECT * FROM xyz;  SELECT * FROM sqlite_master
sl@0
   188
    } {}
sl@0
   189
  } msg]
sl@0
   190
  concat $rc $msg
sl@0
   191
} {0 1 {sqlite3_get_table() called with two or more incompatible queries}}
sl@0
   192
sl@0
   193
# A report on the mailing list says that the sqlite_get_table() api fails
sl@0
   194
# on queries involving more than 40 columns.  The following code attempts
sl@0
   195
# to test that complaint
sl@0
   196
#
sl@0
   197
do_test tableapi-5.1 {
sl@0
   198
  set sql "CREATE TABLE t2("
sl@0
   199
  set sep ""
sl@0
   200
  for {set i 1} {$i<=100} {incr i} {
sl@0
   201
    append sql ${sep}x$i
sl@0
   202
    set sep ,
sl@0
   203
  }
sl@0
   204
  append sql )
sl@0
   205
  sqlite3_get_table_printf $::dbx $sql {}
sl@0
   206
  set sql "INSERT INTO t2 VALUES("
sl@0
   207
  set sep ""
sl@0
   208
  for {set i 1} {$i<=100} {incr i} {
sl@0
   209
    append sql ${sep}$i
sl@0
   210
    set sep ,
sl@0
   211
  }
sl@0
   212
  append sql )
sl@0
   213
  sqlite3_get_table_printf $::dbx $sql {}
sl@0
   214
  sqlite3_get_table_printf $::dbx {SELECT * FROM t2} {}
sl@0
   215
} {0 1 100 x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 x100 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100}
sl@0
   216
do_test tableapi-5.2 {
sl@0
   217
  set sql "INSERT INTO t2 VALUES("
sl@0
   218
  set sep ""
sl@0
   219
  for {set i 1} {$i<=100} {incr i} {
sl@0
   220
    append sql ${sep}[expr {$i+1000}]
sl@0
   221
    set sep ,
sl@0
   222
  }
sl@0
   223
  append sql )
sl@0
   224
  sqlite3_get_table_printf $::dbx $sql {}
sl@0
   225
  sqlite3_get_table_printf $::dbx {SELECT * FROM t2} {}
sl@0
   226
} {0 2 100 x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 x100 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100}
sl@0
   227
sl@0
   228
ifcapable schema_pragmas {
sl@0
   229
  do_test tableapi-6.1 {
sl@0
   230
    sqlite3_get_table_printf $::dbx {PRAGMA user_version} {}
sl@0
   231
  } {0 1 1 user_version 0}
sl@0
   232
}
sl@0
   233
sl@0
   234
ifcapable memdebug {
sl@0
   235
  do_malloc_test tableapi-7 -sqlprep {
sl@0
   236
    DROP TABLE IF EXISTS t1;
sl@0
   237
    CREATE TABLE t1(a,b);
sl@0
   238
    INSERT INTO t1 VALUES(1,2);
sl@0
   239
    INSERT INTO t1 VALUES(3,4);
sl@0
   240
    INSERT INTO t1 SELECT a+4, b+4 FROM t1;
sl@0
   241
    INSERT INTO t1 SELECT a+8, b+8 FROM t1;
sl@0
   242
  } -tclbody {
sl@0
   243
    set r [sqlite3_get_table_printf db {SELECT rowid, a, b FROM t1} {}]
sl@0
   244
    if {[llength $r]<26} {error "out of memory"}
sl@0
   245
  }
sl@0
   246
}
sl@0
   247
sl@0
   248
do_test tableapi-99.0 {
sl@0
   249
  sqlite3_close $::dbx
sl@0
   250
} {SQLITE_OK}
sl@0
   251
sl@0
   252
finish_test