keycloak/.github/scripts/pr-find-issues-test.sh
Alexander Schwartz e31064881b
Parse long issue reference variant from body
Closes #40365

Signed-off-by: Alexander Schwartz <aschwart@redhat.com>
2025-06-17 13:17:12 +02:00

25 lines
528 B
Bash
Executable File

#!/bin/bash -e
# Use this script to test different variants of a PR body.
source ./pr-find-issues.sh
function testParsing() {
echo -n "$1 -> $2 "
if [ "$(parse_issues "$1")" != "$2" ]; then
echo "(failure)"
return 1
fi
echo "(success)"
return 0
}
function testFailed() {
echo "Test Failed!"
}
trap 'testFailed' ERR
testParsing "Closes #123" "123"
testParsing "Fixes #123" "123"
testParsing "Fixes: #123" "123"
testParsing "Fixes https://github.com/keycloak/keycloak/issues/123" "123"