summaryrefslogtreecommitdiff
path: root/odb-tests/common/schema/embedded/basics/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb-tests/common/schema/embedded/basics/driver.cxx')
-rw-r--r--odb-tests/common/schema/embedded/basics/driver.cxx59
1 files changed, 59 insertions, 0 deletions
diff --git a/odb-tests/common/schema/embedded/basics/driver.cxx b/odb-tests/common/schema/embedded/basics/driver.cxx
new file mode 100644
index 0000000..7ba2bce
--- /dev/null
+++ b/odb-tests/common/schema/embedded/basics/driver.cxx
@@ -0,0 +1,59 @@
+// file : common/schema/embedded/basics/driver.cxx
+// license : GNU GPL v2; see accompanying LICENSE file
+
+// Test basic embedded schema functionality.
+//
+
+#include <memory> // std::unique_ptr
+#include <iostream>
+
+#include <odb/database.hxx>
+#include <odb/transaction.hxx>
+#include <odb/schema-catalog.hxx>
+
+#include <libcommon/common.hxx>
+
+#include "test.hxx"
+#include "test-odb.hxx"
+
+#undef NDEBUG
+#include <cassert>
+
+using namespace std;
+using namespace odb::core;
+
+int
+main (int argc, char* argv[])
+{
+ try
+ {
+ unique_ptr<database> db (create_database (argc, argv, false));
+
+ // Create the database schema.
+ //
+ {
+ connection_ptr c (db->connection ());
+
+ // Temporarily disable foreign key constraints for SQLite.
+ //
+ if (db->id () == odb::id_sqlite)
+ c->execute ("PRAGMA foreign_keys=OFF");
+
+ assert (schema_catalog::exists (*db, "test"));
+ assert (!schema_catalog::exists (*db, "test1"));
+ assert (!schema_catalog::exists (*db, ""));
+
+ transaction t (c->begin ());
+ schema_catalog::create_schema (*db, "test");
+ t.commit ();
+
+ if (db->id () == odb::id_sqlite)
+ c->execute ("PRAGMA foreign_keys=ON");
+ }
+ }
+ catch (const odb::exception& e)
+ {
+ cerr << e.what () << endl;
+ return 1;
+ }
+}