Created
November 7, 2014 13:41
-
-
Save mlafeldt/dc695074416bec4cb7a3 to your computer and use it in GitHub Desktop.
Helper script to run individual Puppet RSpec tests, best used with https://github.com/Jimdo/vim-spec-runner
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Helper script to run (almost) any individual Puppet RSpec test. | |
# Usage: ./scripts/spec-runner <specfile[:line]> ... | |
set -e | |
PUPPET_ROOT=$(cd -P -- $(dirname -- "$0")/.. && pwd) | |
if test "$PUPPET_ROOT" != "$(pwd -P)"; then | |
echo >&2 "error: spec-runner must be executed in $PUPPET_ROOT" | |
exit 1 | |
fi | |
SPEC= | |
ROOT= | |
parse_args() { | |
SPEC="$1" | |
ROOT=. | |
case "$SPEC" in | |
"") | |
echo >&2 "error: spec file missing" | |
exit 1 | |
;; | |
site/*|dist/*|modules/*) | |
ROOT=$(echo "$SPEC" | cut -d/ -f-2) | |
SPEC=$(echo "$SPEC" | cut -d/ -f3-) | |
;; | |
./site/*|./dist/*|./modules/*) | |
ROOT=$(echo "$SPEC" | cut -d/ -f-3) | |
SPEC=$(echo "$SPEC" | cut -d/ -f4-) | |
;; | |
*) | |
;; | |
esac | |
} | |
prepare_env() { | |
cd $PUPPET_ROOT | |
if test $ROOT != .; then | |
echo "cd $ROOT" | |
cd "$ROOT" | |
fi | |
if test -z "$BUNDLE_GEMFILE"; then | |
if test -f Gemfile; then | |
BUNDLE_GEMFILE="$ROOT/Gemfile" | |
else | |
BUNDLE_GEMFILE="$PUPPET_ROOT/Gemfile" | |
fi | |
export BUNDLE_GEMFILE | |
fi | |
# Try to install missing gems | |
bundle check >/dev/null || bundle install | |
# Prepare fixtures | |
if test -f Rakefile; then | |
tasks= | |
if grep -q puppetlabs_spec_helper Rakefile 2>/dev/null; then | |
rm -rf spec/fixtures/manifests spec/fixtures/modules | |
tasks="spec_prep" | |
elif grep -q prepare_manifests_for_rspec Rakefile 2>/dev/null; then | |
tasks="test:prepare_modules test:prepare_manifests_for_rspec" | |
else | |
: # unknown Rakefile | |
return | |
fi | |
bundle exec rake $tasks | |
fi | |
} | |
run_specs() { | |
bundle exec ${RSPEC-rspec} $RSPEC_OPTS $SPEC | |
} | |
for spec in "$@"; do | |
parse_args "$spec" | |
prepare_env | |
run_specs | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment