/sqlite3cc

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