100 lines
2.5 KiB
Bash
Executable file
100 lines
2.5 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
# Copyright (C) 2018, Antonio Terceiro <terceiro@debian.org>
|
|
#
|
|
# 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; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# 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 <http://www.gnu.org/licenses/>.
|
|
|
|
set -u
|
|
|
|
. ${0%/*}/test_helper.sh
|
|
|
|
if test "${1:-}" = --installed; then
|
|
sadt="sadt"
|
|
shift
|
|
else
|
|
sadt="$(readlink -f "${0%/*}/../scripts/sadt")"
|
|
fi
|
|
|
|
samples="${0%/*}/sadt"
|
|
|
|
run_sadt() {
|
|
dir="$1"
|
|
shift
|
|
(cd "$samples/$dir" && $sadt "$@")
|
|
}
|
|
|
|
test_passes() {
|
|
assertPasses run_sadt passes
|
|
}
|
|
|
|
test_superficial() {
|
|
assertPasses run_sadt superficial
|
|
assertFails run_sadt superficial-fails
|
|
}
|
|
|
|
test_flaky() {
|
|
assertPasses run_sadt flaky
|
|
}
|
|
|
|
test_skippable() {
|
|
assertPasses run_sadt skippable
|
|
}
|
|
|
|
test_skippable_fails() {
|
|
assertFails run_sadt unskippable
|
|
assertFails run_sadt unskipped
|
|
}
|
|
|
|
test_fails() {
|
|
assertFails run_sadt fails
|
|
}
|
|
|
|
test_space_separated_tests() {
|
|
assertPasses run_sadt space-separated-tests
|
|
assertFalse "skipped=1 found in output" "grep -q skipped=1 $log"
|
|
}
|
|
|
|
test_comma_separated_tests() {
|
|
assertPasses run_sadt comma-separated-tests
|
|
assertFalse "skipped=1 found in output" "grep -q skipped=1 $log"
|
|
}
|
|
|
|
test_space_separated_restrictions() {
|
|
assertPasses run_sadt space-separated-restrictions
|
|
assertFalse "skipped=1 found in output" "grep -q skipped=1 $log"
|
|
}
|
|
|
|
test_comma_separated_restrictions() {
|
|
assertPasses run_sadt comma-separated-restrictions
|
|
assertFalse "skipped=1 found in output" "grep -q skipped=1 $log"
|
|
}
|
|
|
|
test_tests_directory() {
|
|
assertPasses run_sadt tests-directory
|
|
assertFalse "skipped=1 found in output" "grep -q skipped=1 $log"
|
|
}
|
|
|
|
test_test_command() {
|
|
assertPasses run_sadt test-command --verbose
|
|
assertTrue "recognizes Test-Command" "grep 'O: Test-Command is supported' $log"
|
|
assertTrue "recognizes Test-Command" "grep tests=1 $log"
|
|
}
|
|
|
|
test_run_specific_tests() {
|
|
assertPasses run_sadt comma-separated-tests --verbose test1
|
|
assertTrue "runs test1" "grep '^test1:' $log"
|
|
assertFalse "does not run test2" "grep '^test2:' $log"
|
|
}
|
|
|
|
. shunit2
|