Add verify script for swagger-docs

Signed-off-by: lonelyCZ <531187475@qq.com>
This commit is contained in:
lonelyCZ 2022-03-21 16:56:05 +08:00
parent 065400875c
commit 6339fbec48
3 changed files with 38 additions and 0 deletions

View File

@ -11,3 +11,4 @@ bash "$REPO_ROOT/hack/update-crdgen.sh"
bash "$REPO_ROOT/hack/update-estimator-protobuf.sh" bash "$REPO_ROOT/hack/update-estimator-protobuf.sh"
bash "$REPO_ROOT/hack/update-import-aliases.sh" bash "$REPO_ROOT/hack/update-import-aliases.sh"
bash "$REPO_ROOT/hack/update-vendor.sh" bash "$REPO_ROOT/hack/update-vendor.sh"
bash "$REPO_ROOT/hack/update-swagger-docs.sh"

View File

@ -11,3 +11,4 @@ bash "$REPO_ROOT/hack/verify-crdgen.sh"
bash "$REPO_ROOT/hack/verify-staticcheck.sh" bash "$REPO_ROOT/hack/verify-staticcheck.sh"
bash "$REPO_ROOT/hack/verify-import-aliases.sh" bash "$REPO_ROOT/hack/verify-import-aliases.sh"
bash "$REPO_ROOT/hack/verify-vendor.sh" bash "$REPO_ROOT/hack/verify-vendor.sh"
bash "$REPO_ROOT/hack/verify-swagger-docs.sh"

36
hack/verify-swagger-docs.sh Executable file
View File

@ -0,0 +1,36 @@
#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
SCRIPT_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
DIFFROOT="${SCRIPT_ROOT}/api/openapi-spec"
TMP_DIFFROOT="${SCRIPT_ROOT}/_tmp/api/openapi-spec"
_tmp="${SCRIPT_ROOT}/_tmp"
cleanup() {
rm -rf "${_tmp}"
}
trap "cleanup" EXIT SIGINT
cleanup
mkdir -p "${TMP_DIFFROOT}"
cp -a "${DIFFROOT}"/* "${TMP_DIFFROOT}"
bash "${SCRIPT_ROOT}/hack/update-swagger-docs.sh"
echo "diffing ${DIFFROOT} against freshly generated files"
ret=0
diff -Naupr "${DIFFROOT}" "${TMP_DIFFROOT}" || ret=$?
cp -a "${TMP_DIFFROOT}"/* "${DIFFROOT}"
if [[ $ret -eq 0 ]]
then
echo "${DIFFROOT} up to date."
else
echo "${DIFFROOT} is out of date. Please run hack/update-swagger-docs.sh"
exit 1
fi