bzr branch
http://bzr.ed.am/sqlite3cc
1
by edam
- initial commit |
1 |
/* |
2
by edam
- further initial development |
2 |
* test-database.cc |
1
by edam
- initial commit |
3 |
* |
22
by edam
updated email and web addresses |
4 |
* Copyright (C) 2009 Tim Marston <tim@ed.am> |
1
by edam
- initial commit |
5 |
* |
2
by edam
- further initial development |
6 |
* This file is part of sqlite3cc (hereafter referred to as "this program"). |
22
by edam
updated email and web addresses |
7 |
* See http://ed.am/dev/sqlite3cc for more information. |
8 |
* |
|
9 |
* This program is free software: you can redistribute it and/or modify it under |
|
10 |
* the terms of the GNU Lesser General Public License as published by the Free |
|
11 |
* Software Foundation, either version 3 of the License, or (at your option) any |
|
12 |
* later version. |
|
13 |
* |
|
14 |
* This program is distributed in the hope that it will be useful, but WITHOUT |
|
15 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
|
16 |
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
|
17 |
* details. |
|
1
by edam
- initial commit |
18 |
* |
19 |
* You should have received a copy of the GNU Lesser General Public License |
|
20 |
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
21 |
*/ |
|
22 |
||
2
by edam
- further initial development |
23 |
#include <sqlite3cc.h> |
1
by edam
- initial commit |
24 |
#include <boost/filesystem.hpp> |
25 |
||
26 |
||
27 |
#define DBFILE "test.db" |
|
28 |
||
29 |
||
30 |
int main() |
|
31 |
{ |
|
32 |
// delete any existing test database |
|
33 |
if( boost::filesystem::exists( DBFILE ) ) |
|
34 |
boost::filesystem::remove( DBFILE ); |
|
35 |
||
36 |
// open database |
|
23
by edam
fixed up tests |
37 |
sqlite::connection conn( DBFILE ); |
16
by edam
- renamed database to connection to better identify what it is (would database_connection be better though?) |
38 |
|
39 |
std::cout << "SQLite threading mode: " << sqlite::threadsafe() << "\n"; |
|
1
by edam
- initial commit |
40 |
|
2
by edam
- further initial development |
41 |
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
42 |
||
1
by edam
- initial commit |
43 |
// test basic statement, via command class |
23
by edam
fixed up tests |
44 |
sqlite::command c1( conn, |
1
by edam
- initial commit |
45 |
"CREATE TABLE pets ( " |
46 |
"name TEXT PRIMARY KEY, " |
|
47 |
"age INTEGER " |
|
48 |
")" ); |
|
49 |
c1.step(); |
|
50 |
||
24
by edam
added command and query factory methods to connection |
51 |
// test basic_statement::bind() calls, via command |
23
by edam
fixed up tests |
52 |
sqlite::command c2( conn, "INSERT INTO pets VALUES( ?, ? )" ); |
1
by edam
- initial commit |
53 |
c2.bind( 1, "billy" ); c2.bind( 2, 12 ); c2.exec(); |
23
by edam
fixed up tests |
54 |
sqlite::command c3( conn, "INSERT INTO pets VALUES( ?6, ?9 )" ); |
2
by edam
- further initial development |
55 |
c3.bind( 9, 16 ); c3.bind( 6, "mopti" ); c3.exec(); |
23
by edam
fixed up tests |
56 |
sqlite::command c6( conn, "INSERT INTO pets VALUES( ?, ? )" ); |
1
by edam
- initial commit |
57 |
c6.bind_null( 1 ); c6.bind( 2, 123 ); c6.exec(); |
23
by edam
fixed up tests |
58 |
sqlite::command c7( conn, "INSERT INTO pets VALUES( :foo, :bar )" ); |
2
by edam
- further initial development |
59 |
c7.bind( ":foo", "foocat" ); c7.bind( ":bar", 22 ); c7.exec(); |
1
by edam
- initial commit |
60 |
|
13
by edam
- made basic_statement::step() protected, for use by query and command only |
61 |
// test command binding via stream operator |
23
by edam
fixed up tests |
62 |
sqlite::command( conn, "INSERT INTO pets VALUES( ?, ? )" ) << |
13
by edam
- made basic_statement::step() protected, for use by query and command only |
63 |
"tessa" << 16 << sqlite::exec; |
23
by edam
fixed up tests |
64 |
sqlite::command c4( conn, "INSERT INTO pets VALUES( ?, ? )" ); |
13
by edam
- made basic_statement::step() protected, for use by query and command only |
65 |
c4 << sqlite::null << sqlite::null << sqlite::set_index( 1 ) << |
66 |
"tamara" << sqlite::exec; |
|
67 |
assert( c4.changes() == 1 ); |
|
68 |
||
69 |
// test query binding via stream operator |
|
23
by edam
fixed up tests |
70 |
sqlite::query( conn, "SELECT * FROM pets WHERE name = ? OR age = ?" ) |
13
by edam
- made basic_statement::step() protected, for use by query and command only |
71 |
<< "foo" << 16; |
23
by edam
fixed up tests |
72 |
sqlite::query( conn, "SELECT * FROM pets WHERE name = ? OR name = ? OR " |
13
by edam
- made basic_statement::step() protected, for use by query and command only |
73 |
"name = ? OR name = ?" ) << "foo" << sqlite::null << sqlite::null |
74 |
<< sqlite::set_index( 1 ) << "bar" << "baz"; |
|
1
by edam
- initial commit |
75 |
|
24
by edam
added command and query factory methods to connection |
76 |
// test connection command and query factory methods |
25
by edam
simplify test code |
77 |
*conn.make_command( "PRAGMA user_version = 1") << sqlite::exec; |
24
by edam
added command and query factory methods to connection |
78 |
conn.make_query( "PRAGMA user_version")->step(); |
79 |
||
2
by edam
- further initial development |
80 |
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
81 |
||
82 |
// test basic queries |
|
23
by edam
fixed up tests |
83 |
sqlite::query q1( conn, "SELECT age, age + 3, name " |
2
by edam
- further initial development |
84 |
"FROM pets WHERE NOT age IS NULL " |
85 |
"ORDER BY age ASC" ); |
|
16
by edam
- renamed database to connection to better identify what it is (would database_connection be better though?) |
86 |
|
87 |
// test column count and names |
|
2
by edam
- further initial development |
88 |
assert( q1.column_count() == 3 ); |
16
by edam
- renamed database to connection to better identify what it is (would database_connection be better though?) |
89 |
assert( q1.column_name( 2 ) == "name" ); |
2
by edam
- further initial development |
90 |
|
91 |
// test rows |
|
92 |
unsigned int age; |
|
93 |
std::string name; |
|
94 |
q1.step().column( 0, age ); assert( age == 12 ); |
|
9
by edam
- added NEWS |
95 |
name = q1.step().column< std::string >( 2 ); assert( name == "mopti" ); |
2
by edam
- further initial development |
96 |
|
97 |
// test row stream operator |
|
98 |
sqlite::row r1 = q1.step(); |
|
99 |
r1 >> age; assert( age == 16 ); |
|
100 |
r1 >> age; assert( age == 19 ); |
|
101 |
r1 >> name; assert( name == "tessa" ); |
|
102 |
q1.step() >> age >> sqlite::null >> name; |
|
103 |
assert( age == 22 && name == "foocat" ); |
|
104 |
sqlite::row row = q1.step(); |
|
105 |
row >> age >> sqlite::null >> sqlite::null; assert( age == 123 ); |
|
106 |
row >> sqlite::set_index( 1 ) >> age; assert( age == 126 ); |
|
107 |
||
108 |
// test NULL value handling |
|
109 |
assert( row.column_type( 2 ) == SQLITE_NULL ); |
|
9
by edam
- added NEWS |
110 |
age = row.column< unsigned int >( 2 ); assert( age == 0 ); |
2
by edam
- further initial development |
111 |
row.column( 2, name ); assert( name == "" ); |
112 |
||
113 |
// test end of results |
|
114 |
assert( !q1.step() ); |
|
115 |
||
16
by edam
- renamed database to connection to better identify what it is (would database_connection be better though?) |
116 |
// test num results |
23
by edam
fixed up tests |
117 |
sqlite::query q3( conn, "SELECT name FROM pets WHERE age = 16" ); |
16
by edam
- renamed database to connection to better identify what it is (would database_connection be better though?) |
118 |
assert( q3.num_results() == 2 ); |
119 |
||
3
by edam
- rewrote transaction classes and added transaction_guard |
120 |
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
121 |
||
16
by edam
- renamed database to connection to better identify what it is (would database_connection be better though?) |
122 |
// test query iterator |
23
by edam
fixed up tests |
123 |
sqlite::query q2( conn, "SELECT * FROM pets ORDER BY age DESC" ); |
16
by edam
- renamed database to connection to better identify what it is (would database_connection be better though?) |
124 |
sqlite::query::iterator i1 = q2.begin(); |
125 |
assert( i1 != q2.end() ); |
|
126 |
||
127 |
// test resetting iterators |
|
128 |
unsigned int count = 0; |
|
129 |
for( sqlite::query::iterator i = q2.begin(); i != q2.end(); i++ ) |
|
130 |
{ |
|
131 |
// test iterator dereferencing and row numbers |
|
132 |
assert( count++ == i->row_number() ); |
|
133 |
if( i->row_number() == 3 ) |
|
9
by edam
- added NEWS |
134 |
assert( i->column< std::string >( 0 ) == "tessa" && |
135 |
i->column< unsigned int >( 1 ) == 16 ); |
|
16
by edam
- renamed database to connection to better identify what it is (would database_connection be better though?) |
136 |
} |
137 |
||
138 |
// for( sqlite::query::iterator i = q2.begin(); i != q2.end(); i++ ) { |
|
9
by edam
- added NEWS |
139 |
// for( unsigned int a = 0; a < q2.column_count(); a++ ) |
140 |
// std::cout << q2.column_name( a ) << "[" << |
|
141 |
// i->column< std::string >( a ) << "] "; |
|
142 |
// std::cout << "\n"; |
|
16
by edam
- renamed database to connection to better identify what it is (would database_connection be better though?) |
143 |
// } |
9
by edam
- added NEWS |
144 |
|
145 |
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
|
146 |
||
3
by edam
- rewrote transaction classes and added transaction_guard |
147 |
// test transactions |
16
by edam
- renamed database to connection to better identify what it is (would database_connection be better though?) |
148 |
{ |
23
by edam
fixed up tests |
149 |
sqlite::transaction_guard< sqlite::deferred_transaction > t1( conn ); |
150 |
} |
|
151 |
{ |
|
152 |
sqlite::transaction_guard< sqlite::immediate_transaction > t1( conn ); |
|
153 |
} |
|
154 |
{ |
|
155 |
sqlite::transaction_guard< sqlite::exclusive_transaction > t1( conn ); |
|
156 |
} |
|
157 |
{ |
|
158 |
sqlite::transaction_guard< sqlite::recursive_transaction > t1( conn ); |
|
159 |
sqlite::transaction_guard< sqlite::recursive_transaction > t2( conn ); |
|
16
by edam
- renamed database to connection to better identify what it is (would database_connection be better though?) |
160 |
} |
3
by edam
- rewrote transaction classes and added transaction_guard |
161 |
|
162 |
// test transaction guard rollback |
|
163 |
{ |
|
23
by edam
fixed up tests |
164 |
sqlite::transaction_guard< > t1( conn ); |
165 |
conn.exec( "UPDATE pets SET age = 99" ); |
|
3
by edam
- rewrote transaction classes and added transaction_guard |
166 |
} |
23
by edam
fixed up tests |
167 |
sqlite::query( conn, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" ) |
3
by edam
- rewrote transaction classes and added transaction_guard |
168 |
.step() >> age; assert( age == 123 ); |
169 |
||
170 |
// text recursive transactions |
|
171 |
{ |
|
23
by edam
fixed up tests |
172 |
sqlite::transaction_guard< sqlite::recursive_transaction > t1( conn ); |
173 |
conn.exec( "UPDATE pets SET age = 66" ); |
|
3
by edam
- rewrote transaction classes and added transaction_guard |
174 |
|
175 |
{ |
|
23
by edam
fixed up tests |
176 |
sqlite::transaction_guard< sqlite::recursive_transaction > t2( conn ); |
177 |
conn.exec( "UPDATE pets SET age = 1" ); |
|
3
by edam
- rewrote transaction classes and added transaction_guard |
178 |
} |
179 |
||
23
by edam
fixed up tests |
180 |
sqlite::query( conn, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" ) |
9
by edam
- added NEWS |
181 |
.step() >> age; assert( age == 66 ); |
3
by edam
- rewrote transaction classes and added transaction_guard |
182 |
} |
23
by edam
fixed up tests |
183 |
sqlite::query( conn, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" ) |
9
by edam
- added NEWS |
184 |
.step() >> age; assert( age == 123 ); |
3
by edam
- rewrote transaction classes and added transaction_guard |
185 |
|
4
by edam
- print "ok" when test program is successful! |
186 |
// ok |
1
by edam
- initial commit |
187 |
return 0; |
188 |
} |