diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-12 13:35:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-12 13:35:00 -0400 |
commit | a82ec1be458bb0861fdde8351c0474fc3c3fc9e7 (patch) | |
tree | d9ff092999119d7910aa1f602103c845b7f8b546 /test | |
parent | 87d129e805c993acbc571597baba8101afd475fe (diff) | |
parent | d8a902a167b91ca4fde4ffeef55e9aa4907ae258 (diff) | |
download | podman-a82ec1be458bb0861fdde8351c0474fc3c3fc9e7.tar.gz podman-a82ec1be458bb0861fdde8351c0474fc3c3fc9e7.tar.bz2 podman-a82ec1be458bb0861fdde8351c0474fc3c3fc9e7.zip |
Merge pull request #13787 from Luap99/nohost-api
API: use no_hosts from containers.conf
Diffstat (limited to 'test')
-rw-r--r-- | test/apiv2/20-containers.at | 43 | ||||
-rw-r--r-- | test/apiv2/containers.no_hosts.conf | 2 |
2 files changed, 45 insertions, 0 deletions
diff --git a/test/apiv2/20-containers.at b/test/apiv2/20-containers.at index 94de2cf24..a3675d40a 100644 --- a/test/apiv2/20-containers.at +++ b/test/apiv2/20-containers.at @@ -447,3 +447,46 @@ t GET images/$iid/json 200 \ t DELETE containers/$cid 204 t DELETE images/docker.io/library/newrepo:v3?force=false 200 + +# test create without default no_hosts +t POST containers/create \ + Image=$IMAGE \ + 201 \ + .Id~[0-9a-f]\\{64\\} +cid=$(jq -r '.Id' <<<"$output") + +t POST libpod/containers/$cid/init 204 + +t GET libpod/containers/$cid/json 200 + +cpid_file=$(jq -r '.ConmonPidFile' <<<"$output") +userdata_path=$(dirname $cpid_file) + +t GET libpod/containers/$cid/json 200 \ + .HostsPath=$userdata_path/hosts + +t DELETE containers/$cid 204 + +# test create with default no_hosts=true +stop_service + +CONTAINERS_CONF=$TESTS_DIR/containers.no_hosts.conf start_service + +# check docker and libpod endpoint +for endpoint in containers/create libpod/containers/create; do + t POST $endpoint \ + Image=$IMAGE \ + 201 \ + .Id~[0-9a-f]\\{64\\} + cid=$(jq -r '.Id' <<<"$output") + + t POST libpod/containers/$cid/init 204 + + t GET libpod/containers/$cid/json 200 \ + .HostsPath="" + + t DELETE containers/$cid 204 +done + +stop_service +start_service diff --git a/test/apiv2/containers.no_hosts.conf b/test/apiv2/containers.no_hosts.conf new file mode 100644 index 000000000..b4c78bedb --- /dev/null +++ b/test/apiv2/containers.no_hosts.conf @@ -0,0 +1,2 @@ +[containers] +no_hosts=true |