os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/fts2b.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
# 2006 September 13
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 script is testing the FTS2 module.
sl@0
    13
#
sl@0
    14
# $Id: fts2b.test,v 1.1 2006/10/19 23:36:26 shess Exp $
sl@0
    15
#
sl@0
    16
sl@0
    17
set testdir [file dirname $argv0]
sl@0
    18
source $testdir/tester.tcl
sl@0
    19
sl@0
    20
# If SQLITE_ENABLE_FTS2 is defined, omit this file.
sl@0
    21
ifcapable !fts2 {
sl@0
    22
  finish_test
sl@0
    23
  return
sl@0
    24
}
sl@0
    25
sl@0
    26
# Fill the full-text index "t1" with phrases in english, spanish,
sl@0
    27
# and german.  For the i-th row, fill in the names for the bits
sl@0
    28
# that are set in the value of i.  The least significant bit is
sl@0
    29
# 1.  For example,  the value 5 is 101 in binary which will be
sl@0
    30
# converted to "one three" in english.
sl@0
    31
#
sl@0
    32
proc fill_multilanguage_fulltext_t1 {} {
sl@0
    33
  set english {one two three four five}
sl@0
    34
  set spanish {un dos tres cuatro cinco}
sl@0
    35
  set german {eine zwei drei vier funf}
sl@0
    36
  
sl@0
    37
  for {set i 1} {$i<=31} {incr i} {
sl@0
    38
    set cmd "INSERT INTO t1 VALUES"
sl@0
    39
    set vset {}
sl@0
    40
    foreach lang {english spanish german} {
sl@0
    41
      set words {}
sl@0
    42
      for {set j 0; set k 1} {$j<5} {incr j; incr k $k} {
sl@0
    43
        if {$k&$i} {lappend words [lindex [set $lang] $j]}
sl@0
    44
      }
sl@0
    45
      lappend vset "'$words'"
sl@0
    46
    }
sl@0
    47
    set sql "INSERT INTO t1(english,spanish,german) VALUES([join $vset ,])"
sl@0
    48
    # puts $sql
sl@0
    49
    db eval $sql
sl@0
    50
  }
sl@0
    51
}
sl@0
    52
sl@0
    53
# Construct a full-text search table containing five keywords:
sl@0
    54
# one, two, three, four, and five, in various combinations.  The
sl@0
    55
# rowid for each will be a bitmask for the elements it contains.
sl@0
    56
#
sl@0
    57
db eval {
sl@0
    58
  CREATE VIRTUAL TABLE t1 USING fts2(english,spanish,german);
sl@0
    59
}
sl@0
    60
fill_multilanguage_fulltext_t1
sl@0
    61
sl@0
    62
do_test fts2b-1.1 {
sl@0
    63
  execsql {SELECT rowid FROM t1 WHERE english MATCH 'one'}
sl@0
    64
} {1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31}
sl@0
    65
do_test fts2b-1.2 {
sl@0
    66
  execsql {SELECT rowid FROM t1 WHERE spanish MATCH 'one'}
sl@0
    67
} {}
sl@0
    68
do_test fts2b-1.3 {
sl@0
    69
  execsql {SELECT rowid FROM t1 WHERE german MATCH 'one'}
sl@0
    70
} {}
sl@0
    71
do_test fts2b-1.4 {
sl@0
    72
  execsql {SELECT rowid FROM t1 WHERE t1 MATCH 'one'}
sl@0
    73
} {1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31}
sl@0
    74
do_test fts2b-1.5 {
sl@0
    75
  execsql {SELECT rowid FROM t1 WHERE t1 MATCH 'one dos drei'}
sl@0
    76
} {7 15 23 31}
sl@0
    77
do_test fts2b-1.6 {
sl@0
    78
  execsql {SELECT english, spanish, german FROM t1 WHERE rowid=1}
sl@0
    79
} {one un eine}
sl@0
    80
do_test fts2b-1.7 {
sl@0
    81
  execsql {SELECT rowid FROM t1 WHERE t1 MATCH '"one un"'}
sl@0
    82
} {}
sl@0
    83
sl@0
    84
do_test fts2b-2.1 {
sl@0
    85
  execsql {
sl@0
    86
    CREATE VIRTUAL TABLE t2 USING fts2(from,to);
sl@0
    87
    INSERT INTO t2([from],[to]) VALUES ('one two three', 'four five six');
sl@0
    88
    SELECT [from], [to] FROM t2
sl@0
    89
  }
sl@0
    90
} {{one two three} {four five six}}
sl@0
    91
sl@0
    92
sl@0
    93
# Compute an SQL string that contains the words one, two, three,... to
sl@0
    94
# describe bits set in the value $i.  Only the lower 5 bits are examined.
sl@0
    95
#
sl@0
    96
proc wordset {i} {
sl@0
    97
  set x {}
sl@0
    98
  for {set j 0; set k 1} {$j<5} {incr j; incr k $k} {
sl@0
    99
    if {$k&$i} {lappend x [lindex {one two three four five} $j]}
sl@0
   100
  }
sl@0
   101
  return '$x'
sl@0
   102
}
sl@0
   103
sl@0
   104
# Create a new FTS table with three columns:
sl@0
   105
#
sl@0
   106
#    norm:      words for the bits of rowid
sl@0
   107
#    plusone:   words for the bits of rowid+1
sl@0
   108
#    invert:    words for the bits of ~rowid
sl@0
   109
#
sl@0
   110
db eval {
sl@0
   111
   CREATE VIRTUAL TABLE t4 USING fts2([norm],'plusone',"invert");
sl@0
   112
}
sl@0
   113
for {set i 1} {$i<=15} {incr i} {
sl@0
   114
  set vset [list [wordset $i] [wordset [expr {$i+1}]] [wordset [expr {~$i}]]]
sl@0
   115
  db eval "INSERT INTO t4(norm,plusone,invert) VALUES([join $vset ,]);"
sl@0
   116
}
sl@0
   117
sl@0
   118
do_test fts2b-4.1 {
sl@0
   119
  execsql {SELECT rowid FROM t4 WHERE t4 MATCH 'norm:one'}
sl@0
   120
} {1 3 5 7 9 11 13 15}
sl@0
   121
do_test fts2b-4.2 {
sl@0
   122
  execsql {SELECT rowid FROM t4 WHERE norm MATCH 'one'}
sl@0
   123
} {1 3 5 7 9 11 13 15}
sl@0
   124
do_test fts2b-4.3 {
sl@0
   125
  execsql {SELECT rowid FROM t4 WHERE t4 MATCH 'one'}
sl@0
   126
} {1 2 3 4 5 6 7 8 9 10 11 12 13 14 15}
sl@0
   127
do_test fts2b-4.4 {
sl@0
   128
  execsql {SELECT rowid FROM t4 WHERE t4 MATCH 'plusone:one'}
sl@0
   129
} {2 4 6 8 10 12 14}
sl@0
   130
do_test fts2b-4.5 {
sl@0
   131
  execsql {SELECT rowid FROM t4 WHERE plusone MATCH 'one'}
sl@0
   132
} {2 4 6 8 10 12 14}
sl@0
   133
do_test fts2b-4.6 {
sl@0
   134
  execsql {SELECT rowid FROM t4 WHERE t4 MATCH 'norm:one plusone:two'}
sl@0
   135
} {1 5 9 13}
sl@0
   136
do_test fts2b-4.7 {
sl@0
   137
  execsql {SELECT rowid FROM t4 WHERE t4 MATCH 'norm:one two'}
sl@0
   138
} {1 3 5 7 9 11 13 15}
sl@0
   139
do_test fts2b-4.8 {
sl@0
   140
  execsql {SELECT rowid FROM t4 WHERE t4 MATCH 'plusone:two norm:one'}
sl@0
   141
} {1 5 9 13}
sl@0
   142
do_test fts2b-4.9 {
sl@0
   143
  execsql {SELECT rowid FROM t4 WHERE t4 MATCH 'two norm:one'}
sl@0
   144
} {1 3 5 7 9 11 13 15}
sl@0
   145
sl@0
   146
sl@0
   147
finish_test