/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
 *
4
 * Copyright (C) 2009 Tim Marston <edam@waxworlds.org>
5
 *
2 by edam
- further initial development
6
 * This file is part of sqlite3cc (hereafter referred to as "this program").
7
 * See http://www.waxworlds.org/edam/software/sqlite3cc for more information.
1 by edam
- initial commit
8
 *
9
 * This program is free software: you can redistribute it and/or modify
10
 * it under the terms of the GNU Lesser General Public License as published
11
 * by the Free Software Foundation, either version 3 of the License, or
12
 * (at your option) any later version.
13
 *
14
 * This program is distributed in the hope that it will be useful,
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 * GNU Lesser General Public License for more details.
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
37
	sqlite::database db( DBFILE );
38
2 by edam
- further initial development
39
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
40
1 by edam
- initial commit
41
	// test basic statement, via command class
42
	sqlite::command c1( db,
43
		"CREATE TABLE pets ( "
44
			"name TEXT PRIMARY KEY, "
45
			"age INTEGER "
46
		")" );
47
	c1.step();
48
2 by edam
- further initial development
49
	// test basic_statement bind() calls, via command
1 by edam
- initial commit
50
	sqlite::command c2( db, "INSERT INTO pets VALUES( ?, ? )" );
51
	c2.bind( 1, "billy" ); c2.bind( 2, 12 ); c2.exec();
2 by edam
- further initial development
52
	sqlite::command c3( db, "INSERT INTO pets VALUES( ?6, ?9 )" );
53
	c3.bind( 9, 16 ); c3.bind( 6, "mopti" ); c3.exec();
1 by edam
- initial commit
54
	sqlite::command c6( db, "INSERT INTO pets VALUES( ?, ? )" );
55
	c6.bind_null( 1 ); c6.bind( 2, 123 ); c6.exec();
2 by edam
- further initial development
56
	sqlite::command c7( db, "INSERT INTO pets VALUES( :foo, :bar )" );
57
	c7.bind( ":foo", "foocat" ); c7.bind( ":bar", 22 ); c7.exec();
1 by edam
- initial commit
58
2 by edam
- further initial development
59
	// test basic_statement binding via stream operator
1 by edam
- initial commit
60
	sqlite::command c4( db, "INSERT INTO pets VALUES( ?, ? )" );
61
	c4 << "tessa" << 16 << sqlite::exec;
3 by edam
- rewrote transaction classes and added transaction_guard
62
	sqlite::command( db, "INSERT INTO pets VALUES( ?, ? )" ) <<
63
		sqlite::null << sqlite::null <<
1 by edam
- initial commit
64
		sqlite::set_index( 1 ) << "tamara" << sqlite::exec;
65
2 by edam
- further initial development
66
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
67
68
	// test basic queries
69
	sqlite::query q1( db, "SELECT age, age + 3, name "
70
		"FROM pets WHERE NOT age IS NULL "
71
		"ORDER BY age ASC" );
72
	assert( q1.column_count() == 3 );
73
74
	// test rows
75
	unsigned int age;
76
	std::string name;
77
	q1.step().column( 0, age ); assert( age == 12 );
9 by edam
- added NEWS
78
	name = q1.step().column< std::string >( 2 ); assert( name == "mopti" );
2 by edam
- further initial development
79
80
	// test row stream operator
81
	sqlite::row r1 = q1.step();
82
	r1 >> age; assert( age == 16 );
83
	r1 >> age; assert( age == 19 );
84
	r1 >> name; assert( name == "tessa" );
85
	q1.step() >> age >> sqlite::null >> name;
86
	assert( age == 22 && name == "foocat" );
87
	sqlite::row row = q1.step();
88
	row >> age >> sqlite::null >> sqlite::null; assert( age == 123 );
89
	row >> sqlite::set_index( 1 ) >> age; assert( age == 126 );
90
91
	// test NULL value handling
92
	assert( row.column_type( 2 ) == SQLITE_NULL );
9 by edam
- added NEWS
93
	age = row.column< unsigned int >( 2 ); assert( age == 0 );
2 by edam
- further initial development
94
	row.column( 2, name ); assert( name == "" );
95
96
	// test end of results
97
	assert( !q1.step() );
98
3 by edam
- rewrote transaction classes and added transaction_guard
99
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
100
9 by edam
- added NEWS
101
	// test query itterator
102
	sqlite::query q2( db, "SELECT * FROM pets ORDER BY age DESC" );
103
	for( sqlite::query::iterator i = q2.begin(); i != q2.end(); i++ ) {
104
		if( i->index() == 3 )
105
			assert( i->column< std::string >( 0 ) == "tessa" &&
106
				i->column< unsigned int >( 1 ) == 16 );
107
//		for( unsigned int a = 0; a < q2.column_count(); a++ )
108
//			std::cout << q2.column_name( a ) << "[" <<
109
//			i->column< std::string >( a ) << "] ";
110
//		std::cout << "\n";
111
	}
112
	assert( q2.column_count() == 2 );
113
	assert( q2.column_name( 0 ) == "name" );
114
115
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
116
3 by edam
- rewrote transaction classes and added transaction_guard
117
	// test transactions
118
	{	sqlite::transaction_guard< > t1( db ); }
119
	{	sqlite::transaction_guard< sqlite::exclusive_transaction > t1( db ); }
120
	{	sqlite::transaction_guard< sqlite::recursive_transaction > t1( db );
121
		sqlite::transaction_guard< sqlite::recursive_transaction > t2( db ); }
122
123
	// test transaction guard rollback
124
	{
125
		sqlite::transaction_guard< > t1( db );
126
		db.exec( "UPDATE pets SET age = 99" );
127
	}
128
	sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
129
		.step() >> age; assert( age == 123 );
130
131
	// text recursive transactions
132
	{
133
		sqlite::transaction_guard< sqlite::recursive_transaction > t1( db );
9 by edam
- added NEWS
134
		db.exec( "UPDATE pets SET age = 66" );
3 by edam
- rewrote transaction classes and added transaction_guard
135
136
		{
137
			sqlite::transaction_guard< sqlite::recursive_transaction > t2( db );
138
			db.exec( "UPDATE pets SET age = 1" );
139
		}
140
141
		sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
9 by edam
- added NEWS
142
			.step() >> age; assert( age == 66 );
3 by edam
- rewrote transaction classes and added transaction_guard
143
	}
144
	sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
9 by edam
- added NEWS
145
		.step() >> age; assert( age == 123 );
3 by edam
- rewrote transaction classes and added transaction_guard
146
4 by edam
- print "ok" when test program is successful!
147
	// ok
1 by edam
- initial commit
148
	return 0;
149
}