#!/bin/sh -e

debname=r-cran-estimatr

if [ "$AUTOPKGTEST_TMP" = "" ] ; then
    AUTOPKGTEST_TMP=`mktemp -d /tmp/${debname}-test.XXXXXX`
    trap "rm -rf $AUTOPKGTEST_TMP" 0 INT QUIT ABRT PIPE TERM
fi
cd $AUTOPKGTEST_TMP
cp -a /usr/share/doc/$debname/tests $AUTOPKGTEST_TMP
gunzip -r *
cd tests

rm $(grep -Rl randomizr)
if apt-cache show r-cran-randomizr > /dev/null 2>/dev/null ; then
  echo "Package r-cran-randomizr is available now - please drop this paragraph from run-unit-test"
  exit -1
fi

rm $(grep -Rl fabricatr)
if apt-cache show r-cran-fabricatr > /dev/null 2>/dev/null ; then
  echo "Package r-cran-fabricatr is available now - please drop this paragraph from run-unit-test"
  exit -1
fi

for testfile in *.R; do
    echo "BEGIN TEST $testfile"
    LC_ALL=C.UTF-8 R --no-save < $testfile
done

