author | sl@SLION-WIN7.fritz.box |
Fri, 15 Jun 2012 03:10:57 +0200 | |
changeset 0 | bde4ae8d615e |
permissions | -rw-r--r-- |
sl@0 | 1 |
# 2002 May 24 |
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. |
sl@0 | 12 |
# |
sl@0 | 13 |
# The focus of this file is testing of the proper handling of conversions |
sl@0 | 14 |
# to the native text representation. |
sl@0 | 15 |
# |
sl@0 | 16 |
# $Id: enc3.test,v 1.8 2008/01/22 01:48:09 drh Exp $ |
sl@0 | 17 |
|
sl@0 | 18 |
set testdir [file dirname $argv0] |
sl@0 | 19 |
source $testdir/tester.tcl |
sl@0 | 20 |
|
sl@0 | 21 |
ifcapable {utf16} { |
sl@0 | 22 |
do_test enc3-1.1 { |
sl@0 | 23 |
execsql { |
sl@0 | 24 |
PRAGMA encoding=utf16le; |
sl@0 | 25 |
PRAGMA encoding; |
sl@0 | 26 |
} |
sl@0 | 27 |
} {UTF-16le} |
sl@0 | 28 |
} |
sl@0 | 29 |
do_test enc3-1.2 { |
sl@0 | 30 |
execsql { |
sl@0 | 31 |
CREATE TABLE t1(x,y); |
sl@0 | 32 |
INSERT INTO t1 VALUES('abc''123',5); |
sl@0 | 33 |
SELECT * FROM t1 |
sl@0 | 34 |
} |
sl@0 | 35 |
} {abc'123 5} |
sl@0 | 36 |
do_test enc3-1.3 { |
sl@0 | 37 |
execsql { |
sl@0 | 38 |
SELECT quote(x) || ' ' || quote(y) FROM t1 |
sl@0 | 39 |
} |
sl@0 | 40 |
} {{'abc''123' 5}} |
sl@0 | 41 |
ifcapable {bloblit} { |
sl@0 | 42 |
do_test enc3-1.4 { |
sl@0 | 43 |
execsql { |
sl@0 | 44 |
DELETE FROM t1; |
sl@0 | 45 |
INSERT INTO t1 VALUES(x'616263646566',NULL); |
sl@0 | 46 |
SELECT * FROM t1 |
sl@0 | 47 |
} |
sl@0 | 48 |
} {abcdef {}} |
sl@0 | 49 |
do_test enc3-1.5 { |
sl@0 | 50 |
execsql { |
sl@0 | 51 |
SELECT quote(x) || ' ' || quote(y) FROM t1 |
sl@0 | 52 |
} |
sl@0 | 53 |
} {{X'616263646566' NULL}} |
sl@0 | 54 |
} |
sl@0 | 55 |
ifcapable {bloblit && utf16} { |
sl@0 | 56 |
do_test enc3-2.1 { |
sl@0 | 57 |
execsql { |
sl@0 | 58 |
PRAGMA encoding |
sl@0 | 59 |
} |
sl@0 | 60 |
} {UTF-16le} |
sl@0 | 61 |
do_test enc3-2.2 { |
sl@0 | 62 |
execsql { |
sl@0 | 63 |
CREATE TABLE t2(a); |
sl@0 | 64 |
INSERT INTO t2 VALUES(x'61006200630064006500'); |
sl@0 | 65 |
SELECT CAST(a AS text) FROM t2 WHERE a LIKE 'abc%'; |
sl@0 | 66 |
} |
sl@0 | 67 |
} {abcde} |
sl@0 | 68 |
do_test enc3-2.3 { |
sl@0 | 69 |
execsql { |
sl@0 | 70 |
SELECT CAST(x'61006200630064006500' AS text); |
sl@0 | 71 |
} |
sl@0 | 72 |
} {abcde} |
sl@0 | 73 |
do_test enc3-2.4 { |
sl@0 | 74 |
execsql { |
sl@0 | 75 |
SELECT rowid FROM t2 WHERE a LIKE x'610062002500'; |
sl@0 | 76 |
} |
sl@0 | 77 |
} {1} |
sl@0 | 78 |
} |
sl@0 | 79 |
|
sl@0 | 80 |
# Try to attach a database with a different encoding. |
sl@0 | 81 |
# |
sl@0 | 82 |
ifcapable {utf16 && shared_cache} { |
sl@0 | 83 |
db close |
sl@0 | 84 |
file delete -force test8.db test8.db-journal |
sl@0 | 85 |
set ::enable_shared_cache [sqlite3_enable_shared_cache 1] |
sl@0 | 86 |
sqlite3 dbaux test8.db |
sl@0 | 87 |
sqlite3 db test.db |
sl@0 | 88 |
db eval {SELECT 1 FROM sqlite_master LIMIT 1} |
sl@0 | 89 |
do_test enc3-3.1 { |
sl@0 | 90 |
dbaux eval { |
sl@0 | 91 |
PRAGMA encoding='utf8'; |
sl@0 | 92 |
CREATE TABLE t1(x); |
sl@0 | 93 |
PRAGMA encoding |
sl@0 | 94 |
} |
sl@0 | 95 |
} {UTF-8} |
sl@0 | 96 |
do_test enc3-3.2 { |
sl@0 | 97 |
catchsql { |
sl@0 | 98 |
ATTACH 'test.db' AS utf16; |
sl@0 | 99 |
SELECT 1 FROM utf16.sqlite_master LIMIT 1; |
sl@0 | 100 |
} dbaux |
sl@0 | 101 |
} {1 {attached databases must use the same text encoding as main database}} |
sl@0 | 102 |
dbaux close |
sl@0 | 103 |
file delete -force test8.db test8.db-journal |
sl@0 | 104 |
sqlite3_enable_shared_cache $::enable_shared_cache |
sl@0 | 105 |
} |
sl@0 | 106 |
|
sl@0 | 107 |
finish_test |