#!/bin/sh #$Id$ #Copyright (c) 2013-2021 Pierre Pronchery #This file is part of DeforaOS Web DaPortal #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, version 3 of the License. # #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, see . #variables DAPORTALCONF='../tests/daportal.conf' PROGNAME="tests.sh" #executables CP="cp -f" DATE="date" DEBUG="_debug" ECHO="/bin/echo" PHP="/usr/bin/env php" RM="rm -f" #functions #date _date() { if [ -n "$SOURCE_DATE_EPOCH" ]; then TZ=UTC $DATE -d "@$SOURCE_DATE_EPOCH" '+%a %b %d %T %Z %Y' else $DATE fi } #fail _fail() { test="$1" shift $ECHO -n "$test:" 1>&2 (echo echo "Testing: $test" "$@" export DAPORTALCONF="$DAPORTALCONF" $CP -- "${OBJDIR}sqlite.db3" "${OBJDIR}sqlite-tests.db3" $DEBUG $PHP "./$test.php" "$@" 2>&1) >> "$target" res=$? if [ $res -ne 0 ]; then echo " FAIL (error $res)" 1>&2 else echo " PASS" 1>&2 fi } #test _test() { test="$1" shift $ECHO -n "$test:" 1>&2 (echo echo "Testing: $test" "$@" export DAPORTALCONF="$DAPORTALCONF" $CP -- "${OBJDIR}sqlite.db3" "${OBJDIR}sqlite-tests.db3" $DEBUG $PHP "./$test.php" "$@" 2>&1) >> "$target" res=$? if [ $res -ne 0 ]; then echo " FAIL" 1>&2 FAILED="$FAILED $test(error $res)" return 2 else echo " PASS" 1>&2 return 0 fi } #debug _debug() { echo "$@" 1>&2 "$@" } #usage _usage() { echo "Usage: $PROGNAME [-c][-P prefix] target" 1>&2 return 1 } #main clean=0 while getopts "cP:" name; do case "$name" in c) clean=1 ;; P) #XXX ignored for compatibility ;; ?) _usage exit $? ;; esac done shift $((OPTIND - 1)) if [ $# -ne 1 ]; then _usage exit $? fi target="$1" if [ $clean -ne 0 ]; then #XXX needs OBJDIR support $DEBUG $RM -r -- "pki" $DEBUG $RM -- "${OBJDIR}sqlite-tests.db3" exit $? fi _date > "$target" FAILED= echo "Performing tests:" 1>&2 _test "browser" _test "config" _test "content" _test "coverage" _test "daportal" _test "database" _test "engine" _test "format" _test "group" _test "html" _test "http" _test "json" _test "mail" _test "module" _test "observer" _test "pki" _test "pool" _test "profile" _test "salt" _test "search" _test "template" _test "transaction" _test "user" echo "Expected failures:" 1>&2 _fail "auth" if [ -n "$FAILED" ]; then echo "Failed tests:$FAILED" 1>&2 exit 2 fi echo "All tests completed" 1>&2