/sqlite3cc

To get this branch, use:
bzr branch http://bzr.ed.am/sqlite3cc

« back to all changes in this revision

Viewing changes to test/test-main.cc

  • Committer: edam
  • Date: 2012-01-23 13:47:08 UTC
  • Revision ID: edam@waxworlds.org-20120123134708-ol4tilkotsm3han0
updated build system

Show diffs side-by-side

added added

removed removed

1
1
/*
2
 
 * test-database.cpp
 
2
 * test-database.cc
3
3
 *
4
4
 * Copyright (C) 2009 Tim Marston <edam@waxworlds.org>
5
5
 *
6
 
 * This file is part of sqlitepp (hereafter referred to as "this program").
7
 
 * See http://www.waxworlds.org/edam/software/sqlitepp for more information.
 
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.
8
8
 *
9
9
 * This program is free software: you can redistribute it and/or modify
10
10
 * it under the terms of the GNU Lesser General Public License as published
20
20
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21
21
 */
22
22
 
23
 
#include <sqlitepp.hpp>
 
23
#include <sqlite3cc.h>
24
24
#include <boost/filesystem.hpp>
25
25
 
26
26
 
34
34
                boost::filesystem::remove( DBFILE );
35
35
 
36
36
        // open database
37
 
        sqlite::database db( DBFILE );
 
37
        sqlite::connection db( DBFILE );
 
38
 
 
39
        std::cout << "SQLite threading mode: " << sqlite::threadsafe() << "\n";
 
40
 
 
41
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
38
42
 
39
43
        // test basic statement, via command class
40
44
        sqlite::command c1( db,
44
48
                ")" );
45
49
        c1.step();
46
50
 
47
 
        // test statement bind() calls, via command
 
51
        // test basic_statement bind() calls, via command
48
52
        sqlite::command c2( db, "INSERT INTO pets VALUES( ?, ? )" );
49
53
        c2.bind( 1, "billy" ); c2.bind( 2, 12 ); c2.exec();
50
 
        sqlite::command c3( db, "INSERT INTO pets VALUES( ?, ? )" );
51
 
        c3.bind( 2, 16 ); c3.bind( 1, "mopti" ); c3.exec();
 
54
        sqlite::command c3( db, "INSERT INTO pets VALUES( ?6, ?9 )" );
 
55
        c3.bind( 9, 16 ); c3.bind( 6, "mopti" ); c3.exec();
52
56
        sqlite::command c6( db, "INSERT INTO pets VALUES( ?, ? )" );
53
57
        c6.bind_null( 1 ); c6.bind( 2, 123 ); c6.exec();
 
58
        sqlite::command c7( db, "INSERT INTO pets VALUES( :foo, :bar )" );
 
59
        c7.bind( ":foo", "foocat" ); c7.bind( ":bar", 22 ); c7.exec();
54
60
 
55
 
        // test binding via stream operator
 
61
        // test command binding via stream operator
 
62
        sqlite::command( db, "INSERT INTO pets VALUES( ?, ? )" ) <<
 
63
                "tessa" << 16 << sqlite::exec;
56
64
        sqlite::command c4( db, "INSERT INTO pets VALUES( ?, ? )" );
57
 
        c4 << "tessa" << 16 << sqlite::exec;
58
 
        sqlite::command c5( db, "INSERT INTO pets VALUES( ?, ? )" );
59
 
        c5 << sqlite::null << sqlite::null <<
60
 
                sqlite::set_index( 1 ) << "tamara" << sqlite::exec;
61
 
 
 
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
 
70
        sqlite::query( db, "SELECT * FROM pets WHERE name = ? OR age = ?" )
 
71
                << "foo" << 16;
 
72
        sqlite::query( db, "SELECT * FROM pets WHERE name = ? OR name = ? OR "
 
73
                "name = ? OR name = ?" ) << "foo" << sqlite::null << sqlite::null
 
74
                << sqlite::set_index( 1 ) << "bar" << "baz";
 
75
 
 
76
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 
77
 
 
78
        // test basic queries
 
79
        sqlite::query q1( db, "SELECT age, age + 3, name "
 
80
                "FROM pets WHERE NOT age IS NULL "
 
81
                "ORDER BY age ASC" );
 
82
 
 
83
        // test column count and names
 
84
        assert( q1.column_count() == 3 );
 
85
        assert( q1.column_name( 2 ) == "name" );
 
86
 
 
87
        // test rows
 
88
        unsigned int age;
 
89
        std::string name;
 
90
        q1.step().column( 0, age ); assert( age == 12 );
 
91
        name = q1.step().column< std::string >( 2 ); assert( name == "mopti" );
 
92
 
 
93
        // test row stream operator
 
94
        sqlite::row r1 = q1.step();
 
95
        r1 >> age; assert( age == 16 );
 
96
        r1 >> age; assert( age == 19 );
 
97
        r1 >> name; assert( name == "tessa" );
 
98
        q1.step() >> age >> sqlite::null >> name;
 
99
        assert( age == 22 && name == "foocat" );
 
100
        sqlite::row row = q1.step();
 
101
        row >> age >> sqlite::null >> sqlite::null; assert( age == 123 );
 
102
        row >> sqlite::set_index( 1 ) >> age; assert( age == 126 );
 
103
 
 
104
        // test NULL value handling
 
105
        assert( row.column_type( 2 ) == SQLITE_NULL );
 
106
        age = row.column< unsigned int >( 2 ); assert( age == 0 );
 
107
        row.column( 2, name ); assert( name == "" );
 
108
 
 
109
        // test end of results
 
110
        assert( !q1.step() );
 
111
 
 
112
        // test num results
 
113
        sqlite::query q3( db, "SELECT name FROM pets WHERE age = 16" );
 
114
        assert( q3.num_results() == 2 );
 
115
 
 
116
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 
117
 
 
118
        // test query iterator
 
119
        sqlite::query q2( db, "SELECT * FROM pets ORDER BY age DESC" );
 
120
        sqlite::query::iterator i1 = q2.begin();
 
121
        assert( i1 != q2.end() );
 
122
 
 
123
        // test resetting iterators
 
124
        unsigned int count = 0;
 
125
        for( sqlite::query::iterator i = q2.begin(); i != q2.end(); i++ )
 
126
        {
 
127
                // test iterator dereferencing and row numbers
 
128
                assert( count++ == i->row_number() );
 
129
                if( i->row_number() == 3 )
 
130
                        assert( i->column< std::string >( 0 ) == "tessa" &&
 
131
                                i->column< unsigned int >( 1 ) == 16 );
 
132
        }
 
133
 
 
134
//      for( sqlite::query::iterator i = q2.begin(); i != q2.end(); i++ ) {
 
135
//              for( unsigned int a = 0; a < q2.column_count(); a++ )
 
136
//                      std::cout << q2.column_name( a ) << "[" <<
 
137
//                      i->column< std::string >( a ) << "] ";
 
138
//              std::cout << "\n";
 
139
//      }
 
140
 
 
141
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 
142
 
 
143
        // test transactions
 
144
        {
 
145
                sqlite::transaction_guard< sqlite::deferred_tranaction > t1( db );
 
146
        }
 
147
        {
 
148
                sqlite::transaction_guard< sqlite::immediate_transaction > t1( db );
 
149
        }
 
150
        {
 
151
                sqlite::transaction_guard< sqlite::exclusive_transaction > t1( db );
 
152
        }
 
153
        {
 
154
                sqlite::transaction_guard< sqlite::recursive_transaction > t1( db );
 
155
                sqlite::transaction_guard< sqlite::recursive_transaction > t2( db );
 
156
        }
 
157
 
 
158
        // test transaction guard rollback
 
159
        {
 
160
                sqlite::transaction_guard< > t1( db );
 
161
                db.exec( "UPDATE pets SET age = 99" );
 
162
        }
 
163
        sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
 
164
                .step() >> age; assert( age == 123 );
 
165
 
 
166
        // text recursive transactions
 
167
        {
 
168
                sqlite::transaction_guard< sqlite::recursive_transaction > t1( db );
 
169
                db.exec( "UPDATE pets SET age = 66" );
 
170
 
 
171
                {
 
172
                        sqlite::transaction_guard< sqlite::recursive_transaction > t2( db );
 
173
                        db.exec( "UPDATE pets SET age = 1" );
 
174
                }
 
175
 
 
176
                sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
 
177
                        .step() >> age; assert( age == 66 );
 
178
        }
 
179
        sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
 
180
                .step() >> age; assert( age == 123 );
 
181
 
 
182
        // ok
62
183
        return 0;
63
184
}