mirror of
https://github.com/containers/podman.git
synced 2025-06-24 19:42:56 +08:00
Merge pull request #11499 from flouthoc/inspect-tmpl-flush-writer
inspect: printTmpl must Flush writer
This commit is contained in:
@ -254,7 +254,9 @@ func printTmpl(typ, row string, data []interface{}) error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
return t.Execute(w, data)
|
err = t.Execute(w, data)
|
||||||
|
w.Flush()
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i *inspector) inspectAll(ctx context.Context, namesOrIDs []string) ([]interface{}, []error, error) {
|
func (i *inspector) inspectAll(ctx context.Context, namesOrIDs []string) ([]interface{}, []error, error) {
|
||||||
|
@ -80,5 +80,7 @@ func inspect(cmd *cobra.Command, args []string) error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
return t.Execute(w, *responses)
|
err = t.Execute(w, *responses)
|
||||||
|
w.Flush()
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
|
3
test/e2e/build/envwithtab/Dockerfile
Normal file
3
test/e2e/build/envwithtab/Dockerfile
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
FROM alpine
|
||||||
|
|
||||||
|
ENV TEST=" t"
|
@ -50,6 +50,24 @@ var _ = Describe("Podman inspect", func() {
|
|||||||
Expect(session).To(ExitWithError())
|
Expect(session).To(ExitWithError())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
It("podman inspect filter should work if result contains tab", func() {
|
||||||
|
session := podmanTest.Podman([]string{"build", "--tag", "envwithtab", "build/envwithtab"})
|
||||||
|
session.WaitWithDefaultTimeout()
|
||||||
|
Expect(session).Should(Exit(0))
|
||||||
|
|
||||||
|
// Verify that OS and Arch are being set
|
||||||
|
inspect := podmanTest.Podman([]string{"inspect", "-f", "{{ .Config.Env }}", "envwithtab"})
|
||||||
|
inspect.WaitWithDefaultTimeout()
|
||||||
|
Expect(inspect).Should(Exit(0))
|
||||||
|
// output should not be empty
|
||||||
|
// test validates fix for https://github.com/containers/podman/issues/8785
|
||||||
|
Expect(strings.Contains(inspect.OutputToString(), "TEST"))
|
||||||
|
|
||||||
|
session = podmanTest.Podman([]string{"rmi", "envwithtab"})
|
||||||
|
session.WaitWithDefaultTimeout()
|
||||||
|
Expect(session).Should(Exit(0))
|
||||||
|
})
|
||||||
|
|
||||||
It("podman inspect with GO format", func() {
|
It("podman inspect with GO format", func() {
|
||||||
session := podmanTest.Podman([]string{"inspect", "--format", "{{.ID}}", ALPINE})
|
session := podmanTest.Podman([]string{"inspect", "--format", "{{.ID}}", ALPINE})
|
||||||
session.WaitWithDefaultTimeout()
|
session.WaitWithDefaultTimeout()
|
||||||
|
Reference in New Issue
Block a user