From f54ed7269a99b26a6c8d14c1a0f7be8f038d10ba Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Fri, 26 Feb 2021 19:31:29 +0100 Subject: compat api network ls accept both format options Docker allows both the old `map[string]map[string]bool` and the newer `map[string][]string` for the filter param so we should too. Fixes #9526 Signed-off-by: Paul Holzinger --- test/apiv2/35-networks.at | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/apiv2/35-networks.at') diff --git a/test/apiv2/35-networks.at b/test/apiv2/35-networks.at index 7ce109913..25a292cc5 100644 --- a/test/apiv2/35-networks.at +++ b/test/apiv2/35-networks.at @@ -38,6 +38,9 @@ length=2 # filters={"label":["abc"]} t GET networks?filters=%7B%22label%22%3A%5B%22abc%22%5D%7D 200 \ length=1 +# filters={"label":{"abc":true}} old docker filter type see #9526 +t GET networks?filters=%7B%22label%22%3A%7B%22abc%22%3Atrue%7D%7D 200 \ +length=1 # id filter filters={"id":["a7662f44d65029fd4635c91feea3d720a57cef52e2a9fcc7772b69072cc1ccd1"]} t GET networks?filters=%7B%22id%22%3A%5B%22a7662f44d65029fd4635c91feea3d720a57cef52e2a9fcc7772b69072cc1ccd1%22%5D%7D 200 \ length=1 \ -- cgit v1.2.3-54-g00ecf