/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-database.cpp

  • Committer: edam
  • Date: 2009-11-25 20:32:34 UTC
  • Revision ID: edam@waxworlds.org-20091125203234-24i7mzd60c7o46py
- initial commit
- basic support for: database, statements, commands, transactions, exceptions
- initial test app
- initial liscence and readme

Show diffs side-by-side

added added

removed removed

1
1
/*
2
 
 * test-database.cc
 
2
 * test-database.cpp
3
3
 *
4
4
 * Copyright (C) 2009 Tim Marston <edam@waxworlds.org>
5
5
 *
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.
 
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.
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 <sqlite3cc.h>
 
23
#include <sqlitepp.hpp>
24
24
#include <boost/filesystem.hpp>
25
25
 
26
26
 
36
36
        // open database
37
37
        sqlite::database db( DBFILE );
38
38
 
39
 
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
40
 
 
41
39
        // test basic statement, via command class
42
40
        sqlite::command c1( db,
43
41
                "CREATE TABLE pets ( "
46
44
                ")" );
47
45
        c1.step();
48
46
 
49
 
        // test basic_statement bind() calls, via command
 
47
        // test statement bind() calls, via command
50
48
        sqlite::command c2( db, "INSERT INTO pets VALUES( ?, ? )" );
51
49
        c2.bind( 1, "billy" ); c2.bind( 2, 12 ); c2.exec();
52
 
        sqlite::command c3( db, "INSERT INTO pets VALUES( ?6, ?9 )" );
53
 
        c3.bind( 9, 16 ); c3.bind( 6, "mopti" ); c3.exec();
 
50
        sqlite::command c3( db, "INSERT INTO pets VALUES( ?, ? )" );
 
51
        c3.bind( 2, 16 ); c3.bind( 1, "mopti" ); c3.exec();
54
52
        sqlite::command c6( db, "INSERT INTO pets VALUES( ?, ? )" );
55
53
        c6.bind_null( 1 ); c6.bind( 2, 123 ); c6.exec();
56
 
        sqlite::command c7( db, "INSERT INTO pets VALUES( :foo, :bar )" );
57
 
        c7.bind( ":foo", "foocat" ); c7.bind( ":bar", 22 ); c7.exec();
58
54
 
59
 
        // test command binding via stream operator
60
 
        sqlite::command( db, "INSERT INTO pets VALUES( ?, ? )" ) <<
61
 
                "tessa" << 16 << sqlite::exec;
 
55
        // test binding via stream operator
62
56
        sqlite::command c4( db, "INSERT INTO pets VALUES( ?, ? )" );
63
 
        c4 << sqlite::null << sqlite::null << sqlite::set_index( 1 ) <<
64
 
                "tamara" << sqlite::exec;
65
 
        assert( c4.changes() == 1 );
66
 
 
67
 
        // test query binding via stream operator
68
 
        sqlite::query( db, "SELECT * FROM pets WHERE name = ? OR age = ?" )
69
 
                << "foo" << 16;
70
 
        sqlite::query( db, "SELECT * FROM pets WHERE name = ? OR name = ? OR "
71
 
                "name = ? OR name = ?" ) << "foo" << sqlite::null << sqlite::null
72
 
                << sqlite::set_index( 1 ) << "bar" << "baz";
73
 
 
74
 
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
75
 
 
76
 
        // test basic queries
77
 
        sqlite::query q1( db, "SELECT age, age + 3, name "
78
 
                "FROM pets WHERE NOT age IS NULL "
79
 
                "ORDER BY age ASC" );
80
 
        assert( q1.column_count() == 3 );
81
 
 
82
 
        // test rows
83
 
        unsigned int age;
84
 
        std::string name;
85
 
        q1.step().column( 0, age ); assert( age == 12 );
86
 
        name = q1.step().column< std::string >( 2 ); assert( name == "mopti" );
87
 
 
88
 
        // test row stream operator
89
 
        sqlite::row r1 = q1.step();
90
 
        r1 >> age; assert( age == 16 );
91
 
        r1 >> age; assert( age == 19 );
92
 
        r1 >> name; assert( name == "tessa" );
93
 
        q1.step() >> age >> sqlite::null >> name;
94
 
        assert( age == 22 && name == "foocat" );
95
 
        sqlite::row row = q1.step();
96
 
        row >> age >> sqlite::null >> sqlite::null; assert( age == 123 );
97
 
        row >> sqlite::set_index( 1 ) >> age; assert( age == 126 );
98
 
 
99
 
        // test NULL value handling
100
 
        assert( row.column_type( 2 ) == SQLITE_NULL );
101
 
        age = row.column< unsigned int >( 2 ); assert( age == 0 );
102
 
        row.column( 2, name ); assert( name == "" );
103
 
 
104
 
        // test end of results
105
 
        assert( !q1.step() );
106
 
 
107
 
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
108
 
 
109
 
        // test query itterator
110
 
        sqlite::query q2( db, "SELECT * FROM pets ORDER BY age DESC" );
111
 
        for( sqlite::query::iterator i = q2.begin(); i != q2.end(); i++ ) {
112
 
                if( i->index() == 3 )
113
 
                        assert( i->column< std::string >( 0 ) == "tessa" &&
114
 
                                i->column< unsigned int >( 1 ) == 16 );
115
 
//              for( unsigned int a = 0; a < q2.column_count(); a++ )
116
 
//                      std::cout << q2.column_name( a ) << "[" <<
117
 
//                      i->column< std::string >( a ) << "] ";
118
 
//              std::cout << "\n";
119
 
        }
120
 
        assert( q2.column_count() == 2 );
121
 
        assert( q2.column_name( 0 ) == "name" );
122
 
 
123
 
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
124
 
 
125
 
        // test transactions
126
 
        {       sqlite::transaction_guard< > t1( db ); }
127
 
        {       sqlite::transaction_guard< sqlite::exclusive_transaction > t1( db ); }
128
 
        {       sqlite::transaction_guard< sqlite::recursive_transaction > t1( db );
129
 
                sqlite::transaction_guard< sqlite::recursive_transaction > t2( db ); }
130
 
 
131
 
        // test transaction guard rollback
132
 
        {
133
 
                sqlite::transaction_guard< > t1( db );
134
 
                db.exec( "UPDATE pets SET age = 99" );
135
 
        }
136
 
        sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
137
 
                .step() >> age; assert( age == 123 );
138
 
 
139
 
        // text recursive transactions
140
 
        {
141
 
                sqlite::transaction_guard< sqlite::recursive_transaction > t1( db );
142
 
                db.exec( "UPDATE pets SET age = 66" );
143
 
 
144
 
                {
145
 
                        sqlite::transaction_guard< sqlite::recursive_transaction > t2( db );
146
 
                        db.exec( "UPDATE pets SET age = 1" );
147
 
                }
148
 
 
149
 
                sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
150
 
                        .step() >> age; assert( age == 66 );
151
 
        }
152
 
        sqlite::query( db, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
153
 
                .step() >> age; assert( age == 123 );
154
 
 
155
 
        // ok
 
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
 
156
62
        return 0;
157
63
}