From 6ce70a33c5825c0f4d2afae7643db95e8b7d46f1 Mon Sep 17 00:00:00 2001 From: baude Date: Tue, 20 Feb 2018 10:57:37 -0600 Subject: Inspect output should be in array form Inspect should be able to inspect one or more containers depending on the user input. Therefore, inspect output should be in array format so the consumer could potentially iterate it. This PR allows users to specify one more or containers|images|or a mix for inspection. The output, as stated, is therefore in array form. This holds true even for a singular image. In the case that the user enters an invalid container|image "name", we handle that gracefully. Podman will output json for the valid names until it reaches the invalid one. For example: In this case, podman will out the json for alpine and then print an error about 123 being invalid. It will not continute onto busybox. This behavior imatates docker. This addresses issue #360 Signed-off-by: baude Closes: #371 Approved by: baude --- test/e2e/create_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/e2e/create_test.go') diff --git a/test/e2e/create_test.go b/test/e2e/create_test.go index e54e35761..ebe4ed924 100644 --- a/test/e2e/create_test.go +++ b/test/e2e/create_test.go @@ -38,7 +38,7 @@ var _ = Describe("Podman create", func() { check := podmanTest.Podman([]string{"inspect", "-l"}) check.WaitWithDefaultTimeout() data := check.InspectContainerToJSON() - Expect(data.ID).To(ContainSubstring(cid)) + Expect(data[0].ID).To(ContainSubstring(cid)) }) It("podman create container based on a remote image", func() { -- cgit v1.2.3-54-g00ecf