diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-08 17:06:00 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-08 17:06:00 +0200 |
commit | cbaa5532f056d0ad20300abbba253b065982187a (patch) | |
tree | e5cb266ec911ad81bdc4fd0a3149d9941ac4a424 /common/transaction/driver.cxx | |
parent | 35662787f479b93b3205310934574132609461cc (diff) |
Add common/transaction test (port from tracer)
Diffstat (limited to 'common/transaction/driver.cxx')
-rw-r--r-- | common/transaction/driver.cxx | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/common/transaction/driver.cxx b/common/transaction/driver.cxx new file mode 100644 index 0000000..d868782 --- /dev/null +++ b/common/transaction/driver.cxx @@ -0,0 +1,117 @@ +// file : common/transaction/driver.cxx +// author : Boris Kolpackov <boris@codesynthesis.com> +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +// Test transaction operations. +// + +#include <string> +#include <cassert> +#include <iostream> + +#include <odb/tracer.hxx> +#include <odb/database.hxx> +#include <odb/transaction.hxx> +#include <odb/exceptions.hxx> + +#include <common/common.hxx> +#include <common/concrete.hxx> + +using namespace std; +using namespace odb::core; + +struct transaction_tracer: odb::tracer +{ + virtual void + execute (connection&, const char* s) + { + string str (s); + + if (str == "BEGIN") + cout << "begin transaction" << endl; + else if (str == "COMMIT") + cout << "commit transaction" << endl; + else if (str == "ROLLBACK") + cout << "rollback transaction" << endl; + } +}; + +int +main (int argc, char* argv[]) +{ + transaction_tracer tracer; + auto_ptr<database> db (create_database (argc, argv, false)); + db->tracer (tracer); + + assert (!transaction::has_current ()); + + // Current and db accessors. + // + cout << "test 001" << endl; + { + transaction t (db->begin ()); + assert (&t.database () == db.get ()); + assert (transaction::has_current ()); + assert (&transaction::current () == &t); + + transaction::reset_current (); + assert (!transaction::has_current ()); + + transaction t2 (db->begin (), false); + assert (!transaction::has_current ()); + + transaction::current (t2); + assert (&transaction::current () == &t2); + } + + // Commit. + // + cout << "test 002" << endl; + { + transaction t (db->begin ()); + t.commit (); + } + + // Rollback. + // + cout << "test 003" << endl; + { + transaction t (db->begin ()); + t.rollback (); + } + + // Auto rollback. + // + cout << "test 004" << endl; + { + transaction t (db->begin ()); + } + + // Nested transaction. + // + cout << "test 005" << endl; + { + transaction t (db->begin ()); + + try + { + transaction n (db->begin ()); + } + catch (const already_in_transaction&) + { + cout << "already_in_transaction" << endl; + } + } + + // Concrete transaction type. + // + cout << "test 006" << endl; + { + assert (sizeof (odb_db::transaction) == sizeof (transaction)); + + odb_db::transaction t (static_cast<odb_db::database&> (*db).begin ()); + odb_db::transaction& r (odb_db::transaction::current ()); + assert (&t == &r); + } +} |