diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-07-26 13:56:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-26 13:56:19 +0200 |
commit | 5ef78c0bfa88c5423422774325bc4a89f23805b9 (patch) | |
tree | 41fa2038accaecda3d1913a346d6816355d1d55e /test/system | |
parent | 21e1c3175dda40b8fd54985335b4152fe6a6cbd5 (diff) | |
parent | 1a188f622355315973604e46f995f7eb8d7e82fc (diff) | |
download | podman-5ef78c0bfa88c5423422774325bc4a89f23805b9.tar.gz podman-5ef78c0bfa88c5423422774325bc4a89f23805b9.tar.bz2 podman-5ef78c0bfa88c5423422774325bc4a89f23805b9.zip |
Merge pull request #11019 from boaz0/test_cors
Add tests to verify CORs is enabled
Diffstat (limited to 'test/system')
-rw-r--r-- | test/system/271-tcp-cors-server.bats | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/test/system/271-tcp-cors-server.bats b/test/system/271-tcp-cors-server.bats new file mode 100644 index 000000000..cdfa82e82 --- /dev/null +++ b/test/system/271-tcp-cors-server.bats @@ -0,0 +1,44 @@ +#!/usr/bin/env bats -*- bats -*- +# +# Tests podman system service CORS enabled +# + +load helpers + +SERVICE_NAME="podman_test_$(random_string)" + +SERVICE_TCP_HOST="localhost" + +SERVICE_FILE="$UNIT_DIR/$SERVICE_NAME.service" +SOCKET_FILE="$UNIT_DIR/$SERVICE_NAME.socket" + +@test "podman system service - tcp CORS" { + skip_if_remote "system service tests are meaningless over remote" + PORT=$(( ((RANDOM<<15)|RANDOM) % 63001 + 2000 )) + run_podman system service --cors="*" tcp:$SERVICE_TCP_HOST:$PORT -t 20 & + podman_pid="$!" + sleep 5s + run curl -s --max-time 10 -vvv $SERVICE_TCP_HOST:$PORT/_ping 2>&1 + is "$output" ".*< Access-Control-Allow-Origin: \*.*" "access-control-allow-origin verifies CORS is set" + kill $podman_pid + wait $podman_pid || true +} + +@test "podman system service - tcp without CORS" { + skip_if_remote "system service tests are meaningless over remote" + PORT=$(( ((RANDOM<<15)|RANDOM) % 63001 + 2000 )) + run_podman system service tcp:$SERVICE_TCP_HOST:$PORT -t 20 & + podman_pid="$!" + sleep 5s + (curl -s --max-time 10 -vvv $SERVICE_TCP_HOST:$PORT/_ping 2>&1 | grep -Eq "Access-Control-Allow-Origin:") && false || true + kill $podman_pid + wait $podman_pid || true +} + +@test "podman system service - CORS enabled in logs" { + skip_if_remote "system service tests are meaningless over remote" + run_podman system service --log-level="debug" --cors="*" -t 1 + is "$output" ".*CORS Headers were set to \*.*" "debug log confirms CORS headers set" +} + +# vim: filetype=sh |