diff options
author | Ed Santiago <santiago@redhat.com> | 2021-03-01 10:47:48 -0700 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2021-03-01 10:47:48 -0700 |
commit | 9435e5b79b3dacca61118b159b06fa38cb1ac0d8 (patch) | |
tree | eafcb8c6d135034402c0d8f7e57c583ea39fb98c /test/apiv2/test-apiv2 | |
parent | b5827d80d39f2a9865d7f6486d63e61d5c9926ef (diff) | |
download | podman-9435e5b79b3dacca61118b159b06fa38cb1ac0d8.tar.gz podman-9435e5b79b3dacca61118b159b06fa38cb1ac0d8.tar.bz2 podman-9435e5b79b3dacca61118b159b06fa38cb1ac0d8.zip |
APIv2 tests: make more maintainable
While I wasn't looking, some completely unreadable cruft
crept in here, and it's totally my fault: I never knew
you could pass JSON to a GET query. Everyone who DID
know that, did so, but had to URL-escape it into a
completely gobbledygook mess to make curl happy.
Solution: trivial, do the URL-escaping in 't' itself. I
just never realized that was needed.
I'm so sorry. I hope this helps.
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'test/apiv2/test-apiv2')
-rwxr-xr-x | test/apiv2/test-apiv2 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/apiv2/test-apiv2 b/test/apiv2/test-apiv2 index 5b1e2ef80..d545df245 100755 --- a/test/apiv2/test-apiv2 +++ b/test/apiv2/test-apiv2 @@ -188,6 +188,13 @@ function t() { # entrypoint path can include a descriptive comment; strip it off path=${path%% *} + # path may include JSONish params that curl will barf on; url-encode them + path="${path//'['/%5B}" + path="${path//']'/%5D}" + path="${path//'{'/%7B}" + path="${path//'}'/%7D}" + path="${path//':'/%3A}" + # curl -X HEAD but without --head seems to wait for output anyway if [[ $method == "HEAD" ]]; then curl_args="--head" |