#!/bin/sh
#
# More on tests available from
# http://anonscm.debian.org/cgit/autopkgtest/autopkgtest.git/tree/doc/README.package-tests.rst
set -e

at_exit() {
    echo "info: terminating script"
}

trap at_exit INT TERM EXIT

# Use predictable language setting.
LC_ALL=C
export LC_ALL

# Installing the binaries should set up apache on localhost and the cgi script
# for the sitesummary collector.

sitesummary-client

find /var/lib/sitesummary

if find /var/lib/sitesummary | grep ether- ; then
    echo success: found entry
else
    echo error: did not find entry
    exit 1
fi
