From 8d209e371fb37efb2030e2eea47f2fdf49ba2ce1 Mon Sep 17 00:00:00 2001 From: Lukas Mestan Date: Sat, 18 Mar 2017 13:59:30 +0100 Subject: [PATCH] travisci --- .travis.yml | 2 + Makefile | 4 + tests/assert.sh | 214 +++++++++++++++++++++++++++++++++++++++++ tests/commands_test.sh | 19 ++++ 4 files changed, 239 insertions(+) create mode 100644 .travis.yml create mode 100755 tests/assert.sh create mode 100755 tests/commands_test.sh diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..f5ae071 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,2 @@ +language: bash +script: make test diff --git a/Makefile b/Makefile index 252592c..ad8570b 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,7 @@ EXEC_FILES=git-quick-stats all: @echo "usage: make install" @echo " make uninstall" + @echo " make test" install: install -m 0755 $(EXEC_FILES) $(prefix)/bin @@ -16,3 +17,6 @@ uninstall: cd $(prefix)/bin && \ rm -f $(EXEC_FILES) && \ git config --global --unset alias.quick-stats + +test: + tests/commands_test.sh diff --git a/tests/assert.sh b/tests/assert.sh new file mode 100755 index 0000000..2b7d6c4 --- /dev/null +++ b/tests/assert.sh @@ -0,0 +1,214 @@ +#!/bin/bash +# assert.sh 1.1 - bash unit testing framework +# Copyright (C) 2009-2015 Robert Lehmann +# +# http://github.com/lehmannro/assert.sh +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 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 Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this program. If not, see . + +export DISCOVERONLY=${DISCOVERONLY:-} +export DEBUG=${DEBUG:-} +export STOP=${STOP:-} +export INVARIANT=${INVARIANT:-} +export CONTINUE=${CONTINUE:-} + +args="$(getopt -n "$0" -l \ + verbose,help,stop,discover,invariant,continue vhxdic $*)" \ +|| exit -1 +for arg in $args; do + case "$arg" in + -h) + echo "$0 [-vxidc]" \ + "[--verbose] [--stop] [--invariant] [--discover] [--continue]" + echo "`sed 's/./ /g' <<< "$0"` [-h] [--help]" + exit 0;; + --help) + cat < [stdin] + (( tests_ran++ )) || : + [[ -z "$DISCOVERONLY" ]] || return + expected=$(echo -ne "${2:-}") + result="$(eval 2>/dev/null $1 <<< ${3:-})" || true + if [[ "$result" == "$expected" ]]; then + [[ -z "$DEBUG" ]] || echo -n . + return + fi + result="$(sed -e :a -e '$!N;s/\n/\\n/;ta' <<< "$result")" + [[ -z "$result" ]] && result="nothing" || result="\"$result\"" + [[ -z "$2" ]] && expected="nothing" || expected="\"$2\"" + _assert_fail "expected $expected${_indent}got $result" "$1" "$3" +} + +assert_raises() { + # assert_raises [stdin] + (( tests_ran++ )) || : + [[ -z "$DISCOVERONLY" ]] || return + status=0 + (eval $1 <<< ${3:-}) > /dev/null 2>&1 || status=$? + expected=${2:-0} + if [[ "$status" -eq "$expected" ]]; then + [[ -z "$DEBUG" ]] || echo -n . + return + fi + _assert_fail "program terminated with code $status instead of $expected" "$1" "$3" +} + +# _assert_with_grep +_assert_with_grep() { + local grep_modifier="$1" + local output="$($2)" + local exitcode="$4" || 0 + shift 2 + + while [ $# != 0 ]; do + assert_raises "echo '$output' | $GREP $grep_modifier '$1'" $exitcode || return 1 + shift + done +} + +# assert_startswith +assert_startswith() { + assert_success "[[ '$($1)' == '$2'* ]]" +} + +# assert_endswith +assert_endswith() { + assert_success "[[ '$($1)' == *'$2' ]]" +} + +# assert_contains +assert_contains() { + _assert_with_grep '-F' "$@" +} + +_assert_fail() { + # _assert_fail + [[ -n "$DEBUG" ]] && echo -n X + report="test #$tests_ran \"$2${3:+ <<< $3}\" failed:${_indent}$1" + if [[ -n "$STOP" ]]; then + [[ -n "$DEBUG" ]] && echo + echo "$report" + exit 1 + fi + tests_errors[$tests_failed]="$report" + (( tests_failed++ )) || : +} + +skip_if() { + # skip_if + (eval $@) > /dev/null 2>&1 && status=0 || status=$? + [[ "$status" -eq 0 ]] || return + skip +} + +skip() { + # skip (no arguments) + shopt -q extdebug && tests_extdebug=0 || tests_extdebug=1 + shopt -q -o errexit && tests_errexit=0 || tests_errexit=1 + # enable extdebug so returning 1 in a DEBUG trap handler skips next command + shopt -s extdebug + # disable errexit (set -e) so we can safely return 1 without causing exit + set +o errexit + tests_trapped=0 + trap _skip DEBUG +} +_skip() { + if [[ $tests_trapped -eq 0 ]]; then + # DEBUG trap for command we want to skip. Do not remove the handler + # yet because *after* the command we need to reset extdebug/errexit (in + # another DEBUG trap.) + tests_trapped=1 + [[ -z "$DEBUG" ]] || echo -n s + return 1 + else + trap - DEBUG + [[ $tests_extdebug -eq 0 ]] || shopt -u extdebug + [[ $tests_errexit -eq 1 ]] || set -o errexit + return 0 + fi +} + + +_assert_reset +: ${tests_suite_status:=0} # remember if any of the tests failed so far +_assert_cleanup() { + local status=$? + # modify exit code if it's not already non-zero + [[ $status -eq 0 && -z $CONTINUE ]] && exit $tests_suite_status +} +trap _assert_cleanup EXIT diff --git a/tests/commands_test.sh b/tests/commands_test.sh new file mode 100755 index 0000000..9733f6e --- /dev/null +++ b/tests/commands_test.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +. tests/assert.sh + +src="./git-quick-stats" + +assert "$src fail" "Invalid argument. Possible arguments: suggestReviewers, detailedGitStats, commitsPerDay, commitsByMonth, commitsByWeekday, commitsByHour, commitsByAuthorByHour, commitsPerAuthor, myDailyStats, contributors, branchTree, branchesByDate, changelogs" +assert_raises "$src fail" 0 + +assert_contains "$src suggestReviewers" "Suggested code reviewers (based on git history)" 127 +assert_raises "$src suggestReviewers" 0 + +assert_contains "$src detailedGitStats" "Contribution stats" 127 +assert_raises "$src detailedGitStats" 0 + +assert_contains "$src commitsPerDay" "Git commits per date" 127 +assert_raises "$src commitsPerDay" 0 + +assert_end