Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(722)

Side by Side Diff: third_party/sqlite/src/test/colmeta.test

Issue 1610963002: Import SQLite 3.10.2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/sqlite/src/test/collate8.test ('k') | third_party/sqlite/src/test/conflict2.test » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # 2006 February 9 2 # 2006 February 9
3 # 3 #
4 # The author disclaims copyright to this source code. In place of 4 # The author disclaims copyright to this source code. In place of
5 # a legal notice, here is a blessing: 5 # a legal notice, here is a blessing:
6 # 6 #
7 # May you do good and not evil. 7 # May you do good and not evil.
8 # May you find forgiveness for yourself and forgive others. 8 # May you find forgiveness for yourself and forgive others.
9 # May you share freely, never taking more than you give. 9 # May you share freely, never taking more than you give.
10 # 10 #
11 #*********************************************************************** 11 #***********************************************************************
12 # This file implements regression tests for SQLite library. The 12 # This file implements regression tests for SQLite library. The
13 # focus of this script is the sqlite3_table_column_metadata() API. 13 # focus of this script is the sqlite3_table_column_metadata() API.
14 # 14 #
15 # $Id: colmeta.test,v 1.4 2008/01/23 12:52:41 drh Exp $ 15 # $Id: colmeta.test,v 1.4 2008/01/23 12:52:41 drh Exp $
16 16
17 set testdir [file dirname $argv0] 17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl 18 source $testdir/tester.tcl
19 19
20 ifcapable !columnmetadata {
21 finish_test
22 return
23 }
24
25 # Set up a schema in the main and temp test databases. 20 # Set up a schema in the main and temp test databases.
26 do_test colmeta-0 { 21 do_test colmeta-0 {
27 execsql { 22 execsql {
28 CREATE TABLE abc(a, b, c); 23 CREATE TABLE abc(a, b, c);
29 CREATE TABLE abc2(a PRIMARY KEY COLLATE NOCASE, b VARCHAR(32), c); 24 CREATE TABLE abc2(a PRIMARY KEY COLLATE NOCASE, b VARCHAR(32), c);
30 CREATE TABLE abc3(a NOT NULL, b INTEGER PRIMARY KEY, c); 25 CREATE TABLE abc3(a NOT NULL, b INTEGER PRIMARY KEY, c);
26 CREATE TABLE abc5(w,x,y,z,PRIMARY KEY(x,z)) WITHOUT ROWID;
27 CREATE TABLE abc6(rowid TEXT COLLATE rtrim, oid REAL, _rowid_ BLOB);
31 } 28 }
32 ifcapable autoinc { 29 ifcapable autoinc {
33 execsql { 30 execsql {
34 CREATE TABLE abc4(a, b INTEGER PRIMARY KEY AUTOINCREMENT, c); 31 CREATE TABLE abc4(a, b INTEGER PRIMARY KEY AUTOINCREMENT, c);
35 } 32 }
36 } 33 }
37 ifcapable view { 34 ifcapable view {
38 execsql { 35 execsql {
39 CREATE VIEW v1 AS SELECT * FROM abc2; 36 CREATE VIEW v1 AS SELECT * FROM abc2;
40 } 37 }
41 } 38 }
42 } {} 39 } {}
43 40
44 41
45 # Return values are of the form: 42 # Return values are of the form:
46 # 43 #
47 # {<decl-type> <collation> <not null> <primary key> <auto increment>} 44 # {<decl-type> <collation> <not null> <primary key> <auto increment>}
48 # 45 #
49 set tests { 46 set tests {
50 1 {main abc a} {0 {{} BINARY 0 0 0}} 47 1 {main abc a} {0 {{} BINARY 0 0 0}}
51 2 {{} abc a} {0 {{} BINARY 0 0 0}} 48 2 {{} abc a} {0 {{} BINARY 0 0 0}}
52 3 {{} abc2 b} {0 {VARCHAR(32) BINARY 0 0 0}} 49 3 {{} abc2 b} {0 {VARCHAR(32) BINARY 0 0 0}}
53 4 {main abc2 b} {0 {VARCHAR(32) BINARY 0 0 0}} 50 4 {main abc2 b} {0 {VARCHAR(32) BINARY 0 0 0}}
54 5 {{} abc2 a} {0 {{} NOCASE 0 1 0}} 51 5 {{} abc2 a} {0 {{} NOCASE 0 1 0}}
55 6 {{} abc3 a} {0 {{} BINARY 1 0 0}} 52 6 {{} abc3 a} {0 {{} BINARY 1 0 0}}
56 7 {{} abc3 b} {0 {INTEGER BINARY 0 1 0}} 53 7 {{} abc3 b} {0 {INTEGER BINARY 0 1 0}}
57 13 {main abc rowid} {0 {INTEGER BINARY 0 1 0}} 54 13 {main abc rowid} {0 {INTEGER BINARY 0 1 0}}
58 14 {main abc3 rowid} {0 {INTEGER BINARY 0 1 0}} 55 14 {main abc3 rowid} {0 {INTEGER BINARY 0 1 0}}
59 16 {main abc d} {1 {no such table column: abc.d}} 56 16 {main abc d} {1 {no such table column: abc.d}}
57 20 {main abc5 w} {0 {{} BINARY 0 0 0}}
58 21 {main abc5 x} {0 {{} BINARY 1 1 0}}
59 22 {main abc5 y} {0 {{} BINARY 0 0 0}}
60 23 {main abc5 z} {0 {{} BINARY 1 1 0}}
61 24 {main abc5 rowid} {1 {no such table column: abc5.rowid}}
62 30 {main abc6 rowid} {0 {TEXT rtrim 0 0 0}}
63 31 {main abc6 oid} {0 {REAL BINARY 0 0 0}}
64 32 {main abc6 _rowid_} {0 {BLOB BINARY 0 0 0}}
60 } 65 }
61 ifcapable view { 66 ifcapable autoinc {
62 set tests [concat $tests { 67 set tests [concat $tests {
63 8 {{} abc4 b} {0 {INTEGER BINARY 0 1 1}} 68 100 {{} abc4 b} {0 {INTEGER BINARY 0 1 1}}
64 15 {main abc4 rowid} {0 {INTEGER BINARY 0 1 1}} 69 101 {main abc4 rowid} {0 {INTEGER BINARY 0 1 1}}
65 }] 70 }]
66 } 71 }
67 ifcapable view { 72 ifcapable view {
68 set tests [concat $tests { 73 set tests [concat $tests {
69 9 {{} v1 a} {1 {no such table column: v1.a}} 74 200 {{} v1 a} {1 {no such table column: v1.a}}
70 10 {main v1 b} {1 {no such table column: v1.b}} 75 201 {main v1 b} {1 {no such table column: v1.b}}
71 11 {main v1 badname} {1 {no such table column: v1.badname}} 76 202 {main v1 badname} {1 {no such table column: v1.badname}}
72 12 {main v1 rowid} {1 {no such table column: v1.rowid}} 77 203 {main v1 rowid} {1 {no such table column: v1.rowid}}
73 }] 78 }]
74 } 79 }
75 80
76 foreach {tn params results} $tests { 81 foreach {tn params results} $tests {
77 set ::DB [sqlite3_connection_pointer db] 82 set ::DB [sqlite3_connection_pointer db]
78 83
79 set tstbody [concat sqlite3_table_column_metadata $::DB $params] 84 set tstbody [concat sqlite3_table_column_metadata $::DB $params]
80 do_test colmeta-$tn.1 { 85 do_test colmeta-$tn.1 {
81 list [catch $tstbody msg] [set msg] 86 list [catch $tstbody msg] [set msg]
82 } $results 87 } $results
83 88
84 db close 89 db close
85 sqlite3 db test.db 90 sqlite3 db test.db
86 91
87 set ::DB [sqlite3_connection_pointer db] 92 set ::DB [sqlite3_connection_pointer db]
88 set tstbody [concat sqlite3_table_column_metadata $::DB $params] 93 set tstbody [concat sqlite3_table_column_metadata $::DB $params]
89 do_test colmeta-$tn.2 { 94 do_test colmeta-$tn.2 {
90 list [catch $tstbody msg] [set msg] 95 list [catch $tstbody msg] [set msg]
91 } $results 96 } $results
92 } 97 }
93 98
99 # Calling sqlite3_table_column_metadata with a NULL column name merely
100 # checks for the existance of the table.
101 #
102 do_test colmeta-300 {
103 catch {sqlite3_table_column_metadata $::DB main xyzzy} res
104 } {1}
105 do_test colmeta-301 {
106 catch {sqlite3_table_column_metadata $::DB main abc} res
107 } {0}
108
109
94 finish_test 110 finish_test
OLDNEW
« no previous file with comments | « third_party/sqlite/src/test/collate8.test ('k') | third_party/sqlite/src/test/conflict2.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698