/sqlite3cc

To get this branch, use:
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
28 by edam
Removed an optimisation in command::step() (calling finalize() here prevents
77
	conn.make_command( "PRAGMA user_version = 12")->step();
78
	assert( conn.make_query( "PRAGMA user_version" )->step()
79
		.column< int >( 0 ) == 12 );
24 by edam
added command and query factory methods to connection
80
2 by edam
- further initial development
81
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
82
83
	// test basic queries
23 by edam
fixed up tests
84
	sqlite::query q1( conn, "SELECT age, age + 3, name "
2 by edam
- further initial development
85
		"FROM pets WHERE NOT age IS NULL "
86
		"ORDER BY age ASC" );
16 by edam
- renamed database to connection to better identify what it is (would database_connection be better though?)
87
88
	// test column count and names
2 by edam
- further initial development
89
	assert( q1.column_count() == 3 );
16 by edam
- renamed database to connection to better identify what it is (would database_connection be better though?)
90
	assert( q1.column_name( 2 ) == "name" );
2 by edam
- further initial development
91
92
	// test rows
93
	unsigned int age;
94
	std::string name;
95
	q1.step().column( 0, age ); assert( age == 12 );
9 by edam
- added NEWS
96
	name = q1.step().column< std::string >( 2 ); assert( name == "mopti" );
2 by edam
- further initial development
97
98
	// test row stream operator
99
	sqlite::row r1 = q1.step();
100
	r1 >> age; assert( age == 16 );
101
	r1 >> age; assert( age == 19 );
102
	r1 >> name; assert( name == "tessa" );
103
	q1.step() >> age >> sqlite::null >> name;
104
	assert( age == 22 && name == "foocat" );
105
	sqlite::row row = q1.step();
106
	row >> age >> sqlite::null >> sqlite::null; assert( age == 123 );
107
	row >> sqlite::set_index( 1 ) >> age; assert( age == 126 );
108
109
	// test NULL value handling
110
	assert( row.column_type( 2 ) == SQLITE_NULL );
9 by edam
- added NEWS
111
	age = row.column< unsigned int >( 2 ); assert( age == 0 );
2 by edam
- further initial development
112
	row.column( 2, name ); assert( name == "" );
113
114
	// test end of results
115
	assert( !q1.step() );
116
16 by edam
- renamed database to connection to better identify what it is (would database_connection be better though?)
117
	// test num results
23 by edam
fixed up tests
118
	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?)
119
	assert( q3.num_results() == 2 );
120
3 by edam
- rewrote transaction classes and added transaction_guard
121
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
122
16 by edam
- renamed database to connection to better identify what it is (would database_connection be better though?)
123
	// test query iterator
23 by edam
fixed up tests
124
	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?)
125
	sqlite::query::iterator i1 = q2.begin();
126
	assert( i1 != q2.end() );
127
128
	// test resetting iterators
129
	unsigned int count = 0;
130
	for( sqlite::query::iterator i = q2.begin(); i != q2.end(); i++ )
131
	{
132
		// test iterator dereferencing and row numbers
133
		assert( count++ == i->row_number() );
134
		if( i->row_number() == 3 )
9 by edam
- added NEWS
135
			assert( i->column< std::string >( 0 ) == "tessa" &&
136
				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?)
137
	}
138
139
//	for( sqlite::query::iterator i = q2.begin(); i != q2.end(); i++ ) {
9 by edam
- added NEWS
140
//		for( unsigned int a = 0; a < q2.column_count(); a++ )
141
//			std::cout << q2.column_name( a ) << "[" <<
142
//			i->column< std::string >( a ) << "] ";
143
//		std::cout << "\n";
16 by edam
- renamed database to connection to better identify what it is (would database_connection be better though?)
144
//	}
9 by edam
- added NEWS
145
146
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
147
3 by edam
- rewrote transaction classes and added transaction_guard
148
	// test transactions
16 by edam
- renamed database to connection to better identify what it is (would database_connection be better though?)
149
	{
23 by edam
fixed up tests
150
		sqlite::transaction_guard< sqlite::deferred_transaction > t1( conn );
151
	}
152
	{
153
		sqlite::transaction_guard< sqlite::immediate_transaction > t1( conn );
154
	}
155
	{
156
		sqlite::transaction_guard< sqlite::exclusive_transaction > t1( conn );
157
	}
158
	{
159
		sqlite::transaction_guard< sqlite::recursive_transaction > t1( conn );
160
		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?)
161
	}
3 by edam
- rewrote transaction classes and added transaction_guard
162
163
	// test transaction guard rollback
164
	{
23 by edam
fixed up tests
165
		sqlite::transaction_guard< > t1( conn );
166
		conn.exec( "UPDATE pets SET age = 99" );
3 by edam
- rewrote transaction classes and added transaction_guard
167
	}
23 by edam
fixed up tests
168
	sqlite::query( conn, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
3 by edam
- rewrote transaction classes and added transaction_guard
169
		.step() >> age; assert( age == 123 );
170
28 by edam
Removed an optimisation in command::step() (calling finalize() here prevents
171
	// test recursive transactions
3 by edam
- rewrote transaction classes and added transaction_guard
172
	{
23 by edam
fixed up tests
173
		sqlite::transaction_guard< sqlite::recursive_transaction > t1( conn );
174
		conn.exec( "UPDATE pets SET age = 66" );
3 by edam
- rewrote transaction classes and added transaction_guard
175
176
		{
23 by edam
fixed up tests
177
			sqlite::transaction_guard< sqlite::recursive_transaction > t2( conn );
178
			conn.exec( "UPDATE pets SET age = 1" );
3 by edam
- rewrote transaction classes and added transaction_guard
179
		}
180
23 by edam
fixed up tests
181
		sqlite::query( conn, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
9 by edam
- added NEWS
182
			.step() >> age; assert( age == 66 );
3 by edam
- rewrote transaction classes and added transaction_guard
183
	}
23 by edam
fixed up tests
184
	sqlite::query( conn, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
9 by edam
- added NEWS
185
		.step() >> age; assert( age == 123 );
3 by edam
- rewrote transaction classes and added transaction_guard
186
4 by edam
- print "ok" when test program is successful!
187
	// ok
1 by edam
- initial commit
188
	return 0;
189
}