summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2007-09-30 15:04:58 +0000
committertetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2007-09-30 15:04:58 +0000
commit82faef9e9f3d3a46705f0000ffd4006ae8b6cf0c (patch)
tree6d7a44ea01e16686f0553f2e434025e69f39cc6d
parent31708d9623970b7cb333c00e16e56762c627e89c (diff)
Adding CoA load test script (1.2 variant)
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@1680 4979c152-3d1c-0410-bac9-87ea11338e46
-rwxr-xr-xutils/devel/chart-load-test.sh64
1 files changed, 64 insertions, 0 deletions
diff --git a/utils/devel/chart-load-test.sh b/utils/devel/chart-load-test.sh
new file mode 100755
index 00000000..576e0aa5
--- /dev/null
+++ b/utils/devel/chart-load-test.sh
@@ -0,0 +1,64 @@
+#!/bin/bash
+#
+# chart-load-test.sh [SQLDIR] [CHARTFILE]
+#
+# Attempts to load the charts and associated GIFI sets. Expected output is
+# discarded. Normally run from the top-level LSMB directory to check charts in
+# the directory 'sql', a chart directory or file can be given. When passed a
+# directory name, it checks all charts in that directory provided that a copy
+# of Pg-database.sql is present.
+#
+# This test script requires that plpgsql have been loaded to template1 and that
+# the running user has the ability to create and drop databases. Additionally,
+# this copy of chart-load-test.sh will not work with LedgerSMB >= 1.3.
+#
+#######################################################################
+# Copyright 2007, The LedgerSMB Core Team
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+#######################################################################
+
+sqldir="${1:-sql}"
+chart="$2"
+db="charttest$$"
+
+if [ -f "$sqldir" ] ; then
+ chart=`basename $sqldir`
+ sqldir=`dirname $sqldir`
+fi
+if [ ! -d "$sqldir" ] ; then
+ echo "chart-load-test.sh: Directory '$sqldir' cannot be accessed" 1>&2
+ exit 1
+elif [ ! -f "${sqldir}/Pg-database.sql" ] ; then
+ echo "chart-load-test.sh: Directory '$sqldir' does not contain Pg-database.sql" 1>&2
+elif [ "$chart" -a ! -f "${sqldir}/$chart" ] ; then
+ echo "chart-load-test.sh: Chart '$chart' cannot be accessed" 1>&2
+ exit 1
+fi
+
+pushd $sqldir > /dev/null
+( for i in ${chart:-*-chart.sql}; do
+ createdb $db
+ psql -f Pg-database.sql $db > /dev/null
+ sleep 3
+ psql -f "$i" $db > /dev/null
+ j="${i/chart.sql/gifi.sql}"
+ if [ -x "$j" ] ; then
+ psql -f "$j" $db > /dev/null
+ fi
+ sleep 3
+ dropdb $db
+done ) 2>&1 | grep -v 'NOTICE' | grep -v '^CREATE' |grep -v '^DROP'
+popd > /dev/null