#!/bin/bash
set -e

pkg=libgff-dev

if [ "${AUTOPKGTEST_TMP}" = "" ] ; then
  AUTOPKGTEST_TMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
  trap "rm -rf ${AUTOPKGTEST_TMP}" 0 INT QUIT ABRT PIPE TERM
fi

cp /usr/share/doc/${pkg}/examples/* -a "${AUTOPKGTEST_TMP}"
cp /usr/share/doc/python-pysam/tests/pysam_data/test.gtf -a "${AUTOPKGTEST_TMP}"

cd "${AUTOPKGTEST_TMP}"
gunzip -r *

echo 'Compiling ...'
g++ TestGFFParse.cpp -lgff -Wall -o testlib
echo '------------------------------'
echo

echo 'Test 1'
./testlib test.gtf
echo 'PASS'
echo '-------------------------------'

echo 'Test 2'
./testlib example.gtf
echo 'PASS'
echo '-------------------------------'
