aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/sqlite/unix/sqlite-3.5.1/test/enc3.test
diff options
context:
space:
mode:
authordan miller2007-10-20 02:49:29 +0000
committerdan miller2007-10-20 02:49:29 +0000
commite36d23a85ebff914d74bb541558c2b6082b78edb (patch)
tree54b58fdf162e78af64055282a6035c8d2443389d /libraries/sqlite/unix/sqlite-3.5.1/test/enc3.test
parent* Fixed an issue whereby avatar chat distances were being calculated against ... (diff)
downloadopensim-SC-e36d23a85ebff914d74bb541558c2b6082b78edb.zip
opensim-SC-e36d23a85ebff914d74bb541558c2b6082b78edb.tar.gz
opensim-SC-e36d23a85ebff914d74bb541558c2b6082b78edb.tar.bz2
opensim-SC-e36d23a85ebff914d74bb541558c2b6082b78edb.tar.xz
sqlite source (unix build) added to libraries
Diffstat (limited to 'libraries/sqlite/unix/sqlite-3.5.1/test/enc3.test')
-rw-r--r--libraries/sqlite/unix/sqlite-3.5.1/test/enc3.test81
1 files changed, 81 insertions, 0 deletions
diff --git a/libraries/sqlite/unix/sqlite-3.5.1/test/enc3.test b/libraries/sqlite/unix/sqlite-3.5.1/test/enc3.test
new file mode 100644
index 0000000..64f5807
--- /dev/null
+++ b/libraries/sqlite/unix/sqlite-3.5.1/test/enc3.test
@@ -0,0 +1,81 @@
1# 2002 May 24
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 focus of this file is testing of the proper handling of conversions
14# to the native text representation.
15#
16# $Id: enc3.test,v 1.6 2007/05/10 21:14:03 drh Exp $
17
18set testdir [file dirname $argv0]
19source $testdir/tester.tcl
20
21ifcapable {utf16} {
22 do_test enc3-1.1 {
23 execsql {
24 PRAGMA encoding=utf16le;
25 PRAGMA encoding;
26 }
27 } {UTF-16le}
28}
29do_test enc3-1.2 {
30 execsql {
31 CREATE TABLE t1(x,y);
32 INSERT INTO t1 VALUES('abc''123',5);
33 SELECT * FROM t1
34 }
35} {abc'123 5}
36do_test enc3-1.3 {
37 execsql {
38 SELECT quote(x) || ' ' || quote(y) FROM t1
39 }
40} {{'abc''123' 5}}
41ifcapable {bloblit} {
42 do_test enc3-1.4 {
43 execsql {
44 DELETE FROM t1;
45 INSERT INTO t1 VALUES(x'616263646566',NULL);
46 SELECT * FROM t1
47 }
48 } {abcdef {}}
49 do_test enc3-1.5 {
50 execsql {
51 SELECT quote(x) || ' ' || quote(y) FROM t1
52 }
53 } {{X'616263646566' NULL}}
54}
55ifcapable {bloblit && utf16} {
56 do_test enc3-2.1 {
57 execsql {
58 PRAGMA encoding
59 }
60 } {UTF-16le}
61 do_test enc3-2.2 {
62 execsql {
63 CREATE TABLE t2(a);
64 INSERT INTO t2 VALUES(x'61006200630064006500');
65 SELECT CAST(a AS text) FROM t2 WHERE a LIKE 'abc%';
66 }
67 } {abcde}
68 do_test enc3-2.3 {
69 execsql {
70 SELECT CAST(x'61006200630064006500' AS text);
71 }
72 } {abcde}
73 do_test enc3-2.4 {
74 execsql {
75 SELECT rowid FROM t2 WHERE a LIKE x'610062002500';
76 }
77 } {1}
78}
79
80
81finish_test