Merge pull request #206 from netbox-community/test-initializers
Adds a test that validates the initializer yml files
This commit is contained in:
commit
51df2cbbaa
13
hooks/test
13
hooks/test
|
@ -2,21 +2,14 @@
|
||||||
|
|
||||||
. hooks/common
|
. hooks/common
|
||||||
|
|
||||||
run_test() {
|
|
||||||
echo "🐳🐳🐳 Testing '${1}'"
|
|
||||||
VERSION="${1}" docker-compose run netbox ./manage.py test
|
|
||||||
docker-compose down -v
|
|
||||||
echo "🐳🐳🐳 Done testing '${1}'"
|
|
||||||
}
|
|
||||||
|
|
||||||
# test on builds of 'branches'
|
# test on builds of 'branches'
|
||||||
if [ "${BUILD}" == "branches" ] \
|
if [ "${BUILD}" == "branches" ] \
|
||||||
|| [ "${DEBUG}" == "true" ]; then
|
|| [ "${DEBUG}" == "true" ]; then
|
||||||
run_test latest
|
./test.sh latest
|
||||||
run_test snapshot
|
./test.sh snapshot
|
||||||
# test on bulds of 'this' (i.e. pull request)
|
# test on bulds of 'this' (i.e. pull request)
|
||||||
elif [ "${BUILD}" == "this" ]; then
|
elif [ "${BUILD}" == "this" ]; then
|
||||||
run_test latest
|
./test.sh latest
|
||||||
else
|
else
|
||||||
echo "🐳🐳🐳 No tests are implemented for build '${BUILD}'."
|
echo "🐳🐳🐳 No tests are implemented for build '${BUILD}'."
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -0,0 +1,46 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# exit when a command exits with an exit code != 0
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# version is used by `docker-compose.yml` do determine the tag
|
||||||
|
# of the Docker Image that is to be used
|
||||||
|
export VERSION=${VERSION-latest}
|
||||||
|
|
||||||
|
test_netbox_unit_tests() {
|
||||||
|
echo "⏱ Running Netbox Unit Tests"
|
||||||
|
docker-compose run --rm netbox ./manage.py test
|
||||||
|
}
|
||||||
|
|
||||||
|
test_initializers() {
|
||||||
|
echo "🏗 Testing Initializers"
|
||||||
|
|
||||||
|
mkdir initializers_test
|
||||||
|
(
|
||||||
|
cd initializers
|
||||||
|
for script in *.yml; do
|
||||||
|
sed -E 's/^# //' "${script}" > "../initializers_test/${script}"
|
||||||
|
done
|
||||||
|
)
|
||||||
|
mv initializers initializers_original
|
||||||
|
mv initializers_test initializers
|
||||||
|
|
||||||
|
docker-compose run --rm netbox ./manage.py check
|
||||||
|
}
|
||||||
|
|
||||||
|
test_cleanup() {
|
||||||
|
echo "💣 Cleaning Up"
|
||||||
|
docker-compose down -v
|
||||||
|
rm -rf initializers
|
||||||
|
mv initializers_original initializers
|
||||||
|
}
|
||||||
|
|
||||||
|
echo "🐳🐳🐳 Start testing '${VERSION}'"
|
||||||
|
|
||||||
|
# Make sure the cleanup script is executed
|
||||||
|
trap test_cleanup EXIT ERR
|
||||||
|
|
||||||
|
test_netbox_unit_tests
|
||||||
|
test_initializers
|
||||||
|
|
||||||
|
echo "🐳🐳🐳 Done testing '${VERSION}'"
|
Loading…
Reference in New Issue