diff options
author | Paul Holzinger <paul.holzinger@web.de> | 2021-02-09 22:45:18 +0100 |
---|---|---|
committer | Paul Holzinger <paul.holzinger@web.de> | 2021-02-09 23:03:48 +0100 |
commit | f2a856203117bf97a8dfa5960468ae70e4526e3e (patch) | |
tree | b00a0a3463197c460cf47981f9e3b1a3a4613a53 /test | |
parent | f98605e0e4f25c148b27cc617976357ff5b9d96e (diff) | |
download | podman-f2a856203117bf97a8dfa5960468ae70e4526e3e.tar.gz podman-f2a856203117bf97a8dfa5960468ae70e4526e3e.tar.bz2 podman-f2a856203117bf97a8dfa5960468ae70e4526e3e.zip |
Fix compat networks endpoint for a empty result
The networks list compat api endpoint must return `[]`
and not `null` if no networks are found.
Fixes #9293
Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
Diffstat (limited to 'test')
-rw-r--r-- | test/apiv2/35-networks.at | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/apiv2/35-networks.at b/test/apiv2/35-networks.at index 5327bd076..7ce109913 100644 --- a/test/apiv2/35-networks.at +++ b/test/apiv2/35-networks.at @@ -46,6 +46,9 @@ length=1 \ # invalid filter filters={"dangling":["1"]} t GET networks?filters=%7B%22dangling%22%3A%5B%221%22%5D%7D 500 \ .cause='invalid filter "dangling"' +# (#9293 with no networks the endpoint should return empty array instead of null) +t GET networks?filters=%7B%22name%22%3A%5B%22doesnotexists%22%5D%7D 200 \ +"[]" # network inspect docker t GET networks/a7662f44d65029fd4635c91feea3d720a57cef52e2a9fcc7772b69072cc1ccd1 200 \ |