diff --git a/Makefile.am b/Makefile.am index a814ef6e..1fe53ae4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -177,6 +177,12 @@ check-local: $(CHECKER) ./testModule$(EXEEXT) $(CHECKER) ./runxmlconf$(EXEEXT) $(CHECKER) ./runsuite$(EXEEXT) +if WITH_DEBUG_SOURCES + test/scripts/test.sh ./xmllint$(EXEEXT) +endif +if WITH_CATALOG_SOURCES + ASAN_OPTIONS=detect_leaks=0 test/catalogs/test.sh ./xmlcatalog$(EXEEXT) +endif # Compatibility name of the check target runtests: check @@ -193,12 +199,6 @@ asan: # Old test suite. This should be ported to C. OLD_TESTS = Timingtests -if WITH_CATALOG_SOURCES -OLD_TESTS += Catatests -endif -if WITH_DEBUG_SOURCES -OLD_TESTS += Scripttests -endif if WITH_SCHEMAS_SOURCES if WITH_PYTHON OLD_TESTS += RelaxNGPythonTests SchemasPythonTests @@ -213,64 +213,6 @@ endif tests: $(OLD_TESTS) -Scripttests : xmllint$(EXEEXT) - @echo "## Scripts regression tests" - @echo "## Some of the base computations may be different if srcdir != ." - -@(for i in $(srcdir)/test/scripts/*.script ; do \ - name=`basename $$i .script`; \ - xml=$(srcdir)/test/scripts/`basename $$i .script`.xml; \ - if [ -f $$xml ] ; then \ - if [ ! -f $(srcdir)/result/scripts/$$name ] ; then \ - echo New test file $$name ; \ - $(CHECKER) $(top_builddir)/xmllint --shell $$xml < $$i > $(srcdir)/result/scripts/$$name 2> $(srcdir)/result/scripts/$$name.err ; \ - else \ - log=`$(CHECKER) $(top_builddir)/xmllint --shell $$xml < $$i > result.$$name 2> result.$$name.err ; \ - diff $(srcdir)/result/scripts/$$name result.$$name ; \ - diff $(srcdir)/result/scripts/$$name.err result.$$name.err` ; \ - if [ -n "$$log" ] ; then echo $$name result ; echo "$$log" ; fi ; \ - rm result.$$name result.$$name.err ; \ - fi ; fi ; done) - -Catatests : xmlcatalog$(EXEEXT) - @echo "## Catalog regression tests" - -@(for i in $(srcdir)/test/catalogs/*.script ; do \ - name=`basename $$i .script`; \ - xml=$(srcdir)/test/catalogs/`basename $$i .script`.xml; \ - if [ -f $$xml ] ; then \ - if [ ! -f $(srcdir)/result/catalogs/$$name ] ; then \ - echo New test file $$name ; \ - $(CHECKER) $(top_builddir)/xmlcatalog --shell $$xml < $$i 2>&1 > $(srcdir)/result/catalogs/$$name ; \ - else \ - log=`$(CHECKER) $(top_builddir)/xmlcatalog --shell $$xml < $$i 2>&1 > result.$$name ; \ - diff $(srcdir)/result/catalogs/$$name result.$$name` ; \ - if [ -n "$$log" ] ; then echo $$name result ; echo "$$log" ; fi ; \ - rm result.$$name ; \ - fi ; fi ; done) - -@(for i in $(srcdir)/test/catalogs/*.script ; do \ - name=`basename $$i .script`; \ - sgml=$(srcdir)/test/catalogs/`basename $$i .script`.sgml; \ - if [ -f $$sgml ] ; then \ - if [ ! -f $(srcdir)/result/catalogs/$$name ] ; then \ - echo New test file $$name ; \ - $(CHECKER) $(top_builddir)/xmlcatalog --shell $$sgml < $$i > $(srcdir)/result/catalogs/$$name ; \ - else \ - log=`$(CHECKER) $(top_builddir)/xmlcatalog --shell $$sgml < $$i > result.$$name ; \ - diff $(srcdir)/result/catalogs/$$name result.$$name` ; \ - if [ -n "$$log" ] ; then echo $$name result ; echo "$$log" ; fi ; \ - rm result.$$name ; \ - fi ; fi ; done) - @echo "## Add and del operations on XML Catalogs" - -@($(CHECKER) $(top_builddir)/xmlcatalog --create --noout $(srcdir)/result/catalogs/mycatalog; \ - $(CHECKER) $(top_builddir)/xmlcatalog --noout --add public Pubid sysid $(srcdir)/result/catalogs/mycatalog; \ - $(CHECKER) $(top_builddir)/xmlcatalog --noout --add public Pubid2 sysid2 $(srcdir)/result/catalogs/mycatalog; \ - $(CHECKER) $(top_builddir)/xmlcatalog --noout --add public Pubid3 sysid3 $(srcdir)/result/catalogs/mycatalog; \ - diff result/catalogs/mycatalog.full $(srcdir)/result/catalogs/mycatalog; \ - $(CHECKER) $(top_builddir)/xmlcatalog --noout --del sysid $(srcdir)/result/catalogs/mycatalog; \ - $(CHECKER) $(top_builddir)/xmlcatalog --noout --del sysid3 $(srcdir)/result/catalogs/mycatalog; \ - $(CHECKER) $(top_builddir)/xmlcatalog --noout --del sysid2 $(srcdir)/result/catalogs/mycatalog; \ - diff result/catalogs/mycatalog.empty $(srcdir)/result/catalogs/mycatalog; \ - rm -f $(srcdir)/result/catalogs/mycatalog) - dba100000.xml: dbgenattr.pl @echo "## generating dba100000.xml" @($(PERL) $(top_srcdir)/dbgenattr.pl 100000 > dba100000.xml) diff --git a/test/catalogs/test.sh b/test/catalogs/test.sh new file mode 100755 index 00000000..697fc52d --- /dev/null +++ b/test/catalogs/test.sh @@ -0,0 +1,70 @@ +#!/bin/sh + +set -e + +echo "## Catalog regression tests" + +if [ -n "$1" ]; then + xmlcatalog=$1 +else + xmlcatalog=./xmlcatalog +fi + +exitcode=0 + +for i in test/catalogs/*.script ; do + name=$(basename $i .script) + xml="./test/catalogs/$name.xml" + + if [ -f $xml ] ; then + if [ ! -f result/catalogs/$name ] ; then + echo New test file $name + $xmlcatalog --shell $xml < $i 2>&1 > result/catalogs/$name + else + $xmlcatalog --shell $xml < $i 2>&1 > catalog.out + log=$(diff result/catalogs/$name catalog.out) + if [ -n "$log" ] ; then + echo $name result + echo "$log" + exitcode=1 + fi + rm catalog.out + fi + fi +done + +for i in test/catalogs/*.script ; do + name=$(basename $i .script) + sgml="./test/catalogs/$name.sgml" + + if [ -f $sgml ] ; then + if [ ! -f result/catalogs/$name ] ; then + echo New test file $name + $xmlcatalog --shell $sgml < $i > result/catalogs/$name + else + $xmlcatalog --shell $sgml < $i > catalog.out + log=$(diff result/catalogs/$name catalog.out) + if [ -n "$log" ] ; then + echo $name result + echo "$log" + exitcode=1 + fi + rm catalog.out + fi + fi +done + +# Add and del operations on XML Catalogs + +$xmlcatalog --create --noout mycatalog +$xmlcatalog --noout --add public Pubid sysid mycatalog +$xmlcatalog --noout --add public Pubid2 sysid2 mycatalog +$xmlcatalog --noout --add public Pubid3 sysid3 mycatalog +diff result/catalogs/mycatalog.full mycatalog +$xmlcatalog --noout --del sysid mycatalog +$xmlcatalog --noout --del sysid3 mycatalog +$xmlcatalog --noout --del sysid2 mycatalog +diff result/catalogs/mycatalog.empty mycatalog +rm -f mycatalog + +exit $exitcode diff --git a/test/scripts/test.sh b/test/scripts/test.sh new file mode 100755 index 00000000..a9ec68a4 --- /dev/null +++ b/test/scripts/test.sh @@ -0,0 +1,51 @@ +#!/bin/sh + +set -e + +echo "## Scripts regression tests" + +if [ -n "$1" ]; then + xmllint=$1 +else + xmllint=./xmllint +fi + +exitcode=0 + +for i in test/scripts/*.script ; do + name=$(basename $i .script) + xml="./test/scripts/$name.xml" + + if [ -f $xml ] ; then + if [ ! -f result/scripts/$name ] ; then + echo "New test file $name" + + $xmllint --shell $xml < $i \ + > result/scripts/$name \ + 2> result/scripts/$name.err + else + $xmllint --shell $xml < $i > shell.out 2> shell.err || true + + if [ -f result/scripts/$name.err ]; then + resulterr="result/scripts/$name.err" + else + resulterr=/dev/null + fi + + log=$( + diff -u result/scripts/$name shell.out || true; + diff -u $resulterr shell.err || true + ) + + if [ -n "$log" ] ; then + echo $name result + echo "$log" + exitcode=1 + fi + + rm shell.out shell.err + fi + fi +done + +exit $exitcode