From 2f9934958370d5d1d1543e304aad060bf764778a Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Fri, 24 Nov 2023 13:37:32 +0000 Subject: [PATCH] Integration tests: print test name before execution --- integrationTest/suite.sh | 30 ++++++++++++++++++++++++++---- 1 files changed, 26 insertions(+), 4 deletions(-) diff --git a/integrationTest/suite.sh b/integrationTest/suite.sh index 8b1507c..2f98512 100755 --- a/integrationTest/suite.sh +++ b/integrationTest/suite.sh @@ -1,17 +1,22 @@ #!/bin/bash set -e -keycloak_cas_url='http://localhost:8080/auth/realms/master/protocol/cas' +keycloak_cas_url='http://localhost:8080/realms/master/protocol/cas' action_pattern='action="([^"]+)"' -ticket_pattern='Location: .*\?ticket=(ST-[-A-Za-z0-9_.=]+)' get_ticket() { local cookie_options="-b /tmp/cookies" + local ticket_pattern='Location: .*\?ticket=(ST-[-A-Za-z0-9_.=]+)' + local client_url_param=service + if [ "$1" == "save_cookies" ]; then cookie_options="${cookie_options} -c /tmp/cookies" + elif [ "$1" == "SAML" ]; then + ticket_pattern='Location: .*\?SAMLart=(ST-[-A-Za-z0-9_.=]+)' + client_url_param=TARGET fi - local login_response=$(curl --fail --silent -c /tmp/cookies "${keycloak_cas_url}/login?service=http://localhost") + local login_response=$(curl --fail --silent -c /tmp/cookies "${keycloak_cas_url}/login?${client_url_param}=http://localhost") if [[ ! ($login_response =~ $action_pattern) ]] ; then echo "Could not parse login form in response" echo "${login_response}" @@ -30,25 +35,41 @@ } # CAS 1.0 +echo "Testing CAS 1.0..." ticket=$(get_ticket) curl --fail --silent "${keycloak_cas_url}/validate?service=http://localhost&ticket=$ticket" echo # CAS 2.0 +echo "Testing CAS 2.0 - XML..." ticket=$(get_ticket) curl --fail --silent "${keycloak_cas_url}/serviceValidate?service=http://localhost&format=XML&ticket=$ticket" echo +echo "Testing CAS 2.0 - JSON..." ticket=$(get_ticket) curl --fail --silent "${keycloak_cas_url}/serviceValidate?service=http://localhost&format=JSON&ticket=$ticket" echo # CAS 3.0 +echo "Testing CAS 3.0..." ticket=$(get_ticket save_cookies) curl --fail --silent "${keycloak_cas_url}/p3/serviceValidate?service=http://localhost&format=JSON&ticket=$ticket" echo -# CAS, gateway option +# SAML 1.1 +echo "Testing SAML 1.1..." +ticket=$(get_ticket SAML) +timestamp=$(date -u +"%Y-%m-%dT%H:%M:%SZ") +saml_template=$(dirname "$0")/samlValidateTemplate.xml +sed -e "s/CAS_TICKET/$ticket/g" -e "s/TIMESTAMP/$timestamp/g" "$saml_template" \ + | curl --fail --silent -X POST -H "Content-Type: text/xml" \ + -H "SOAPAction: http://www.oasis-open.org/committees/security" \ + --data-binary @- "${keycloak_cas_url}/samlValidate?TARGET=http://localhost" +echo + +# CAS - gateway option +echo "Testing CAS - gateway option, stage 1..." get_ticket save_cookies login_response=$(curl --fail --silent -D - -b /tmp/cookies "${keycloak_cas_url}/login?service=http://localhost&gateway=true") if echo "${login_response}" | grep '^Location: http://localhost\?ticket='; then @@ -57,6 +78,7 @@ exit 1 fi +echo "Testing CAS - gateway option, stage 2..." login_response=$(curl --fail --silent -D - "${keycloak_cas_url}/login?service=http://localhost&gateway=true") if echo "${login_response}" | grep '^Location: http://localhost$'; then echo "Gateway option did not redirect back to service without ticket" -- Gitblit v1.9.1