#!/bin/bash -e echo running test-commit-message.sh travis_regex='^\([a-z0-9]\(\(, \)\|[a-z0-9]\)\+[a-z0-9]: \)\+[A-Z0-9][^:]\+[^:.]$' # Testing the regex itself. # Correct patterns. [[ $(echo "foo, bar: Bar" | grep -c "$travis_regex") -eq 1 ]] [[ $(echo "foo: Bar" | grep -c "$travis_regex") -eq 1 ]] [[ $(echo "f1oo, b2ar: Bar" | grep -c "$travis_regex") -eq 1 ]] [[ $(echo "2foo: Bar" | grep -c "$travis_regex") -eq 1 ]] [[ $(echo "foo: bar: Barfoo" | grep -c "$travis_regex") -eq 1 ]] [[ $(echo "foo: bar, foo: Barfoo" | grep -c "$travis_regex") -eq 1 ]] [[ $(echo "foo: bar, foo: Barfoo" | grep -c "$travis_regex") -eq 1 ]] [[ $(echo "resources: augeas: New resource" | grep -c "$travis_regex") -eq 1 ]] # Space required after : [[ $(echo "foo:bar" | grep -c "$travis_regex") -eq 0 ]] # First char must be a a-z0-9 [[ $(echo ", bar: bar" | grep -c "$travis_regex") -eq 0 ]] # Last chat before : must be a a-z0-9 [[ $(echo "foo, : bar" | grep -c "$travis_regex") -eq 0 ]] # Last chat before : must be a a-z0-9 [[ $(echo "foo,: bar" | grep -c "$travis_regex") -eq 0 ]] # No caps [[ $(echo "Foo: bar" | grep -c "$travis_regex") -eq 0 ]] # No dot at the end of the message. [[ $(echo "foo: bar." | grep -c "$travis_regex") -eq 0 ]] # Capitalize the first word after : [[ $(echo "foo: bar" | grep -c "$travis_regex") -eq 0 ]] # More than one char is required before : [[ $(echo "a: bar" | grep -c "$travis_regex") -eq 0 ]] # Run checks agains multiple :. [[ $(echo "a: bar:" | grep -c "$travis_regex") -eq 0 ]] [[ $(echo "a: bar, fooX: Barfoo" | grep -c "$travis_regex") -eq 0 ]] [[ $(echo "a: bar, foo: barfoo foo: Nope" | grep -c "$travis_regex") -eq 0 ]] [[ $(echo "nope a: bar, foo: barfoofoo: Nope" | grep -c "$travis_regex") -eq 0 ]] test_commit_message() { echo "Testing commit message $1" if ! git log --format=%s $1 | head -n 1 | grep -q "$travis_regex" then echo "FAIL: Commit message should match the following regex: '$travis_regex'" echo echo "eg:" echo "prometheus: Implement rest api" echo "resources: svc: Fix a race condition with reloads" exit 1 fi } if [[ -n "$TRAVIS_PULL_REQUEST_SHA" ]] then commits=$(git log --format=%H origin/${TRAVIS_BRANCH}..${TRAVIS_PULL_REQUEST_SHA}) [[ -n "$commits" ]] for commit in $commits do test_commit_message $commit done fi echo 'PASS'