os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/fts3ao.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
# 2007 June 20
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 FTS3 module.
sl@0
    13
#
sl@0
    14
# $Id: fts3ao.test,v 1.1 2007/08/20 17:38:42 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_FTS3 is not defined, omit this file.
sl@0
    21
ifcapable !fts3 {
sl@0
    22
  finish_test
sl@0
    23
  return
sl@0
    24
}
sl@0
    25
sl@0
    26
#---------------------------------------------------------------------
sl@0
    27
# These tests, fts3ao-1.*, test that ticket #2429 is fixed.
sl@0
    28
#
sl@0
    29
db eval {
sl@0
    30
  CREATE VIRTUAL TABLE t1 USING fts3(a, b, c);
sl@0
    31
  INSERT INTO t1(a, b, c) VALUES('one three four', 'one four', 'one four two');
sl@0
    32
}
sl@0
    33
do_test fts3ao-1.1 {
sl@0
    34
  execsql {
sl@0
    35
    SELECT rowid, snippet(t1) FROM t1 WHERE c MATCH 'four';
sl@0
    36
  }
sl@0
    37
} {1 {one <b>four</b> two}}
sl@0
    38
do_test fts3ao-1.2 {
sl@0
    39
  execsql {
sl@0
    40
    SELECT rowid, snippet(t1) FROM t1 WHERE b MATCH 'four';
sl@0
    41
  }
sl@0
    42
} {1 {one <b>four</b>}}
sl@0
    43
do_test fts3ao-1.3 {
sl@0
    44
  execsql {
sl@0
    45
    SELECT rowid, snippet(t1) FROM t1 WHERE a MATCH 'four';
sl@0
    46
  }
sl@0
    47
} {1 {one three <b>four</b>}}
sl@0
    48
sl@0
    49
#---------------------------------------------------------------------
sl@0
    50
# Test that it is possible to rename an fts3 table.
sl@0
    51
#
sl@0
    52
do_test fts3ao-2.1 {
sl@0
    53
  execsql { SELECT tbl_name FROM sqlite_master WHERE type = 'table'}
sl@0
    54
} {t1 t1_content t1_segments t1_segdir}
sl@0
    55
do_test fts3ao-2.2 {
sl@0
    56
  execsql { ALTER TABLE t1 RENAME to fts_t1; }
sl@0
    57
} {}
sl@0
    58
do_test fts3ao-2.3 {
sl@0
    59
  execsql { SELECT rowid, snippet(fts_t1) FROM fts_t1 WHERE a MATCH 'four'; }
sl@0
    60
} {1 {one three <b>four</b>}}
sl@0
    61
do_test fts3ao-2.4 {
sl@0
    62
  execsql { SELECT tbl_name FROM sqlite_master WHERE type = 'table'}
sl@0
    63
} {fts_t1 fts_t1_content fts_t1_segments fts_t1_segdir}
sl@0
    64
sl@0
    65
# See what happens when renaming the fts3 table fails.
sl@0
    66
#
sl@0
    67
do_test fts3ao-2.5 {
sl@0
    68
  catchsql {
sl@0
    69
    CREATE TABLE t1_segdir(a, b, c);
sl@0
    70
    ALTER TABLE fts_t1 RENAME to t1;
sl@0
    71
  }
sl@0
    72
} {1 {SQL logic error or missing database}}
sl@0
    73
do_test fts3ao-2.6 {
sl@0
    74
  execsql { SELECT rowid, snippet(fts_t1) FROM fts_t1 WHERE a MATCH 'four'; }
sl@0
    75
} {1 {one three <b>four</b>}}
sl@0
    76
do_test fts3ao-2.7 {
sl@0
    77
  execsql { SELECT tbl_name FROM sqlite_master WHERE type = 'table'}
sl@0
    78
} {fts_t1 fts_t1_content fts_t1_segments fts_t1_segdir t1_segdir}
sl@0
    79
sl@0
    80
# See what happens when renaming the fts3 table fails inside a transaction.
sl@0
    81
#
sl@0
    82
do_test fts3ao-2.8 {
sl@0
    83
  execsql {
sl@0
    84
    BEGIN;
sl@0
    85
    INSERT INTO fts_t1(a, b, c) VALUES('one two three', 'one four', 'one two');
sl@0
    86
  }
sl@0
    87
} {}
sl@0
    88
do_test fts3ao-2.9 {
sl@0
    89
  catchsql {
sl@0
    90
    ALTER TABLE fts_t1 RENAME to t1;
sl@0
    91
  }
sl@0
    92
} {1 {SQL logic error or missing database}}
sl@0
    93
do_test fts3ao-2.10 {
sl@0
    94
  execsql { SELECT rowid, snippet(fts_t1) FROM fts_t1 WHERE a MATCH 'four'; }
sl@0
    95
} {1 {one three <b>four</b>}}
sl@0
    96
do_test fts3ao-2.11 {
sl@0
    97
  execsql { SELECT tbl_name FROM sqlite_master WHERE type = 'table'}
sl@0
    98
} {fts_t1 fts_t1_content fts_t1_segments fts_t1_segdir t1_segdir}
sl@0
    99
do_test fts3ao-2.12 {
sl@0
   100
  execsql COMMIT
sl@0
   101
  execsql {SELECT a FROM fts_t1}
sl@0
   102
} {{one three four} {one two three}}
sl@0
   103
do_test fts3ao-2.12 {
sl@0
   104
  execsql { SELECT a, b, c FROM fts_t1 WHERE c MATCH 'four'; }
sl@0
   105
} {{one three four} {one four} {one four two}}
sl@0
   106
sl@0
   107
#-------------------------------------------------------------------
sl@0
   108
# Close, delete and reopen the database. The following test should 
sl@0
   109
# be run on an initially empty db.
sl@0
   110
#
sl@0
   111
db close
sl@0
   112
file delete -force test.db test.db-journal
sl@0
   113
sqlite3 db test.db
sl@0
   114
sl@0
   115
do_test fts3ao-3.1 {
sl@0
   116
  execsql {
sl@0
   117
    CREATE VIRTUAL TABLE t1 USING fts3(a, b, c);
sl@0
   118
    INSERT INTO t1(a, b, c) VALUES('one three four', 'one four', 'one two');
sl@0
   119
    SELECT a, b, c FROM t1 WHERE c MATCH 'two';
sl@0
   120
  }
sl@0
   121
} {{one three four} {one four} {one two}}
sl@0
   122
sl@0
   123
# This test was crashing at one point.
sl@0
   124
#
sl@0
   125
do_test fts3ao-3.2 {
sl@0
   126
  execsql {
sl@0
   127
    SELECT a, b, c FROM t1 WHERE c MATCH 'two';
sl@0
   128
    CREATE TABLE t3(a, b, c);
sl@0
   129
    SELECT a, b, c FROM t1 WHERE  c  MATCH 'two';
sl@0
   130
  }
sl@0
   131
} {{one three four} {one four} {one two} {one three four} {one four} {one two}}
sl@0
   132
sl@0
   133
#---------------------------------------------------------------------
sl@0
   134
# Test that it is possible to rename an fts3 table in an attached 
sl@0
   135
# database.
sl@0
   136
#
sl@0
   137
file delete -force test2.db test2.db-journal
sl@0
   138
sl@0
   139
do_test fts3ao-3.1 {
sl@0
   140
  execsql {
sl@0
   141
    ATTACH 'test2.db' AS aux;
sl@0
   142
    CREATE VIRTUAL TABLE aux.t1 USING fts3(a, b, c);
sl@0
   143
    INSERT INTO aux.t1(a, b, c) VALUES(
sl@0
   144
      'neung song sahm', 'neung see', 'neung see song'
sl@0
   145
    );
sl@0
   146
  }
sl@0
   147
} {}
sl@0
   148
sl@0
   149
do_test fts3ao-3.2 {
sl@0
   150
  execsql { SELECT a, b, c FROM aux.t1 WHERE a MATCH 'song'; }
sl@0
   151
} {{neung song sahm} {neung see} {neung see song}}
sl@0
   152
sl@0
   153
do_test fts3ao-3.3 {
sl@0
   154
  execsql { SELECT a, b, c FROM t1 WHERE c MATCH 'two'; }
sl@0
   155
} {{one three four} {one four} {one two}}
sl@0
   156
sl@0
   157
do_test fts3ao-3.4 {
sl@0
   158
  execsql { ALTER TABLE aux.t1 RENAME TO t2 }
sl@0
   159
} {}
sl@0
   160
sl@0
   161
do_test fts3ao-3.2 {
sl@0
   162
  execsql { SELECT a, b, c FROM t2 WHERE a MATCH 'song'; }
sl@0
   163
} {{neung song sahm} {neung see} {neung see song}}
sl@0
   164
sl@0
   165
do_test fts3ao-3.3 {
sl@0
   166
  execsql { SELECT a, b, c FROM t1 WHERE c MATCH 'two'; }
sl@0
   167
} {{one three four} {one four} {one two}}
sl@0
   168
sl@0
   169
finish_test