/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 14:34:45 UTC
  • Revision ID: edam@waxworlds.org-20120123143445-s2v4v90nycmfm6bv
fixed up tests

Show diffs side-by-side

added added

removed removed

1
1
/*
2
 
 * test-main.cc
 
2
 * test-database.cc
3
3
 *
4
4
 * Copyright (C) 2009 Tim Marston <tim@ed.am>
5
5
 *
48
48
                ")" );
49
49
        c1.step();
50
50
 
51
 
        // test basic_statement::bind() calls, via command
 
51
        // test basic_statement bind() calls, via command
52
52
        sqlite::command c2( conn, "INSERT INTO pets VALUES( ?, ? )" );
53
53
        c2.bind( 1, "billy" ); c2.bind( 2, 12 ); c2.exec();
54
54
        sqlite::command c3( conn, "INSERT INTO pets VALUES( ?6, ?9 )" );
56
56
        sqlite::command c6( conn, "INSERT INTO pets VALUES( ?, ? )" );
57
57
        c6.bind_null( 1 ); c6.bind( 2, 123 ); c6.exec();
58
58
        sqlite::command c7( conn, "INSERT INTO pets VALUES( :foo, :bar )" );
59
 
        c7.bind( ":foo", "foocat" ); c7.bind( ":bar", 22.5 ); c7.exec();
 
59
        c7.bind( ":foo", "foocat" ); c7.bind( ":bar", 22 ); c7.exec();
60
60
 
61
61
        // test command binding via stream operator
62
62
        sqlite::command( conn, "INSERT INTO pets VALUES( ?, ? )" ) <<
73
73
                "name = ? OR name = ?" ) << "foo" << sqlite::null << sqlite::null
74
74
                << sqlite::set_index( 1 ) << "bar" << "baz";
75
75
 
76
 
        // test connection command and query factory methods
77
 
        conn.make_command( "PRAGMA user_version = 12")->step();
78
 
        assert( conn.make_query( "PRAGMA user_version" )->step()
79
 
                .column< int >( 0 ) == 12 );
80
 
 
81
76
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
82
77
 
83
78
        // test basic queries
91
86
 
92
87
        // test rows
93
88
        unsigned int age;
94
 
        double dblage;
95
89
        std::string name;
96
90
        q1.step().column( 0, age ); assert( age == 12 );
97
91
        name = q1.step().column< std::string >( 2 ); assert( name == "mopti" );
101
95
        r1 >> age; assert( age == 16 );
102
96
        r1 >> age; assert( age == 19 );
103
97
        r1 >> name; assert( name == "tessa" );
104
 
        q1.step() >> dblage >> sqlite::null >> name;
105
 
        assert( dblage == 22.5 && name == "foocat" );
 
98
        q1.step() >> age >> sqlite::null >> name;
 
99
        assert( age == 22 && name == "foocat" );
106
100
        sqlite::row row = q1.step();
107
101
        row >> age >> sqlite::null >> sqlite::null; assert( age == 123 );
108
102
        row >> sqlite::set_index( 1 ) >> age; assert( age == 126 );
169
163
        sqlite::query( conn, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
170
164
                .step() >> age; assert( age == 123 );
171
165
 
172
 
        // test recursive transactions
 
166
        // text recursive transactions
173
167
        {
174
168
                sqlite::transaction_guard< sqlite::recursive_transaction > t1( conn );
175
169
                conn.exec( "UPDATE pets SET age = 66" );
185
179
        sqlite::query( conn, "SELECT age FROM pets ORDER BY age DESC LIMIT 1" )
186
180
                .step() >> age; assert( age == 123 );
187
181
 
188
 
        // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
189
 
 
190
182
        // ok
191
183
        return 0;
192
184
}