From 6666d1e973b4dd2b5bf22970cfcc53d77007a3e8 Mon Sep 17 00:00:00 2001 From: Lars Kellogg-Stedman Date: Wed, 22 Oct 2014 11:12:50 -0400 Subject: [PATCH] add maintainer check to tests Change-Id: I6ee985e694142aa7dadeb085b77910667ac6359f --- tools/pre-commit-hook | 14 ++++++++++---- tools/validate-all-maintainer.sh | 9 +++++++++ tools/validate-maintainer.sh | 14 ++++++++++++++ tox.ini | 1 + 4 files changed, 34 insertions(+), 4 deletions(-) create mode 100755 tools/validate-all-maintainer.sh create mode 100755 tools/validate-maintainer.sh diff --git a/tools/pre-commit-hook b/tools/pre-commit-hook index 699cb978ee..475e059126 100755 --- a/tools/pre-commit-hook +++ b/tools/pre-commit-hook @@ -33,13 +33,19 @@ find . -type f -print0 | echo "=== yaml checks ===" find . -name '*.yaml' -print0 | - xargs -0 --no-run-if-empty python ${TOPLEVEL}/tools/try-parse-yaml.py + xargs -0 --no-run-if-empty ${TOPLEVEL}/tools/validate-yaml.py \ + || RES = 1 echo "=== json checks ===" find . -name '*.json' -print0 | - xargs -0 -n1 --no-run-if-empty python -mjson.tool \ - || RES=1 + xargs -0 --no-run-if-empty ${TOPLEVEL}/tools/validate-json.py \ + || RES=1 + +echo "=== maintainer checks ===" + +find . -name Dockerfile -print0 | + xargs -0 --no-run-if-empty ${TOPLEVEL}/tools/validate-maintainer \ + || RES=1 exit $RES - diff --git a/tools/validate-all-maintainer.sh b/tools/validate-all-maintainer.sh new file mode 100755 index 0000000000..a488385a1e --- /dev/null +++ b/tools/validate-all-maintainer.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +TOPLEVEL=$(git rev-parse --show-toplevel) + +cd $TOPLEVEL + +git ls-files -z '*/Dockerfile' | + xargs -0 tools/validate-maintainer.sh || exit 1 + diff --git a/tools/validate-maintainer.sh b/tools/validate-maintainer.sh new file mode 100755 index 0000000000..d6bb75a84f --- /dev/null +++ b/tools/validate-maintainer.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +MAINTANER='MAINTAINER Kolla Project (https://launchpad.net/kolla)' +RES=0 + +for dockerfile in "$@"; do + if ! grep -q "$MAINTAINER" "$dockerfile"; then + echo "ERROR: $dockerfile has incorrect MAINTAINER" >&2 + RES=1 + fi +done + +exit $RES + diff --git a/tox.ini b/tox.ini index 286a71767a..282dba038d 100644 --- a/tox.ini +++ b/tox.ini @@ -10,3 +10,4 @@ deps = -r{toxinidir}/test-requirements.txt commands = {toxinidir}/tools/validate-all-json.sh {toxinidir}/tools/validate-all-yaml.sh + {toxinidir}/tools/validate-all-maintainer.sh