diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2013-04-03 11:22:42 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2013-04-10 18:46:46 +0200 |
commit | 516523183fad016a26c7400d784eb9c0343b7964 (patch) | |
tree | b2e5df0194c28df2b9bcaf822f6f06b92a267118 /evolution/tester | |
parent | e7f6315882ef16939f99dd757eaf800b9f12e92b (diff) |
Generate add/drop table migration statements
Diffstat (limited to 'evolution/tester')
-rwxr-xr-x | evolution/tester | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/evolution/tester b/evolution/tester new file mode 100755 index 0000000..5ccb839 --- /dev/null +++ b/evolution/tester @@ -0,0 +1,38 @@ +#! /bin/sh + +# file : evolution/tester.in +# copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC +# license : GNU GPL v2; see accompanying LICENSE file + +# +# Run an evolution test. The test driver is in the current directory. The +# data files, if any, are in $srcdir. +# + +if test -f test1.sql; then + # Standalone schema. + # + + # Drop everything. + $top_builddir/db-driver test1.sql || exit 1 + $top_builddir/db-driver test2.sql || exit 1 + + # Base schema (-post is always empty). + $top_builddir/db-driver test2-002-pre.sql || exit 1 + ./driver --options-file "$top_builddir/db.options" 1 || exit 1 + + # Migration. + $top_builddir/db-driver test2-003-pre.sql || exit 1 + ./driver --options-file "$top_builddir/db.options" 2 || exit 1 + $top_builddir/db-driver test2-003-post.sql || exit 1 + + # Current schema. + ./driver --options-file "$top_builddir/db.options" 3 || exit 1 + +else + # Embedded schema. Just run the driver. + # + ./driver --options-file "$top_builddir/db.options" 1 || exit 1 + ./driver --options-file "$top_builddir/db.options" 2 || exit 1 + ./driver --options-file "$top_builddir/db.options" 3 || exit 1 +fi |