2017-08-17 16:37:23 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Check that no new tests are being added to integration-cli
|
|
|
|
|
2020-03-02 22:27:49 -05:00
|
|
|
export SCRIPTDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
2017-08-17 16:37:23 -04:00
|
|
|
source "${SCRIPTDIR}/.validate"
|
|
|
|
|
|
|
|
new_tests=$(
|
2020-03-02 22:27:49 -05:00
|
|
|
validate_diff --diff-filter=ACMR --unified=0 -- 'integration-cli/*_api_*.go' 'integration-cli/*_cli_*.go' \
|
|
|
|
| grep -E '^\+func (.*) Test' || true
|
2017-08-17 16:37:23 -04:00
|
|
|
)
|
|
|
|
|
2019-10-11 07:15:01 -04:00
|
|
|
if [ -n "$new_tests" ]; then
|
|
|
|
{
|
|
|
|
echo "The following new tests were added to integration-cli:"
|
|
|
|
echo
|
|
|
|
echo "$new_tests"
|
|
|
|
echo
|
|
|
|
echo "integration-cli is deprecated. Please add an API integration test to"
|
|
|
|
echo "./integration/COMPONENT/. See ./TESTING.md for more details."
|
|
|
|
echo
|
|
|
|
} >&2
|
|
|
|
false
|
|
|
|
else
|
2019-10-11 07:31:18 -04:00
|
|
|
echo 'Congratulations! No new tests were added to integration-cli.'
|
2017-08-17 16:37:23 -04:00
|
|
|
fi
|