From 13df9a4acf3b1a411f66274bd3ed2cb633dc1e7b Mon Sep 17 00:00:00 2001
From: Boris Kolpackov <boris@codesynthesis.com>
Date: Thu, 6 Sep 2012 11:26:24 +0200
Subject: Test that database constructors are unambiguous

---
 pgsql/database/driver.cxx | 41 ++++++++++++++++++++++++
 pgsql/database/makefile   | 80 +++++++++++++++++++++++++++++++++++++++++++++++
 pgsql/database/test.std   |  0
 pgsql/makefile            |  1 +
 4 files changed, 122 insertions(+)
 create mode 100644 pgsql/database/driver.cxx
 create mode 100644 pgsql/database/makefile
 create mode 100644 pgsql/database/test.std

(limited to 'pgsql')

diff --git a/pgsql/database/driver.cxx b/pgsql/database/driver.cxx
new file mode 100644
index 0000000..8746c37
--- /dev/null
+++ b/pgsql/database/driver.cxx
@@ -0,0 +1,41 @@
+// file      : pgsql/database/driver.cxx
+// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// license   : GNU GPL v2; see accompanying LICENSE file
+
+// Test that database constructors are unambiguous (compilation only).
+//
+
+#include <odb/pgsql/database.hxx>
+
+using namespace odb::pgsql;
+
+int
+main (int argc, char* argv[])
+{
+  // This code should not execute.
+  //
+  if (argc != 0)
+    return 0;
+
+  {
+    database d1 ("bob", "secret", "db1");
+    database d2 ("bob", "secret", "db1", "server1");
+    database d3 ("bob", "secret", "db1", "server1", 999);
+    database d4 ("bob", "secret", "db1", "server1", 999, "extra");
+  }
+
+  {
+    database d1 ("bob", "secret", "db1", "server1", "ext1");
+    database d2 ("bob", "secret", "db1", "server1", "ext1", "extra");
+  }
+
+  {
+    database d1 ("conninfo");
+  }
+
+  {
+    database d1 (argc, argv);
+    database d2 (argc, argv, false);
+    database d3 (argc, argv, true, "extra");
+  }
+}
diff --git a/pgsql/database/makefile b/pgsql/database/makefile
new file mode 100644
index 0000000..41b6fb9
--- /dev/null
+++ b/pgsql/database/makefile
@@ -0,0 +1,80 @@
+# file      : pgsql/database/makefile
+# copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+# license   : GNU GPL v2; see accompanying LICENSE file
+
+include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make
+
+cxx_tun := driver.cxx
+cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o))
+cxx_od  := $(cxx_obj:.o=.o.d)
+
+common.l  	     := $(out_root)/libcommon/common/common.l
+common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
+
+driver  := $(out_base)/driver
+dist    := $(out_base)/.dist
+test    := $(out_base)/.test
+clean   := $(out_base)/.clean
+
+# Build.
+#
+$(driver): $(cxx_obj) $(common.l)
+$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
+$(cxx_obj) $(cxx_od): $(common.l.cpp-options)
+
+$(call include-dep,$(cxx_od))
+
+# Alias for default target.
+#
+$(out_base)/: $(driver)
+
+# Dist
+#
+$(dist): sources := $(cxx_tun)
+$(dist): data_dist := test.std
+$(dist): export name := $(subst /,-,$(subst $(src_root)/pgsql/,,$(src_base)))
+$(dist): export extra_dist := $(data_dist) $(name)-vc9.vcproj \
+$(name)-vc10.vcxproj $(name)-vc10.vcxproj.filters
+$(dist):
+	$(call dist-data,$(sources) $(data_dist))
+	$(call meta-automake,../template/Makefile.am)
+	$(call meta-vc9proj,../template/template-vc9.vcproj,$(name)-vc9.vcproj)
+	$(call meta-vc10proj,../template/template-vc10.vcxproj,$(name)-vc10.vcxproj)
+
+# Test.
+#
+$(test): $(driver) $(src_base)/test.std
+	$(call message,test $<,$< --options-file $(dcf_root)/db.options \
+>$(out_base)/test.out)
+	$(call message,,diff -u $(src_base)/test.std $(out_base)/test.out)
+	$(call message,,rm -f $(out_base)/test.out)
+
+# Clean.
+#
+$(clean):                            \
+  $(driver).o.clean                  \
+  $(addsuffix .cxx.clean,$(cxx_obj)) \
+  $(addsuffix .cxx.clean,$(cxx_od))
+	$(call message,,rm -f $(out_base)/test.out)
+
+# Generated .gitignore.
+#
+ifeq ($(out_base),$(src_base))
+$(driver): | $(out_base)/.gitignore
+
+$(out_base)/.gitignore: files := driver
+$(clean): $(out_base)/.gitignore.clean
+
+$(call include,$(bld_root)/git/gitignore.make)
+endif
+
+# How to.
+#
+$(call include,$(bld_root)/dist.make)
+$(call include,$(bld_root)/meta/vc9proj.make)
+$(call include,$(bld_root)/meta/vc10proj.make)
+$(call include,$(bld_root)/meta/automake.make)
+
+$(call include,$(bld_root)/cxx/cxx-d.make)
+$(call include,$(bld_root)/cxx/cxx-o.make)
+$(call include,$(bld_root)/cxx/o-e.make)
diff --git a/pgsql/database/test.std b/pgsql/database/test.std
new file mode 100644
index 0000000..e69de29
diff --git a/pgsql/makefile b/pgsql/makefile
index 702825a..77ee368 100644
--- a/pgsql/makefile
+++ b/pgsql/makefile
@@ -7,6 +7,7 @@ include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make
 tests :=      \
 template      \
 custom        \
+database      \
 index         \
 native        \
 truncation    \
-- 
cgit v1.1