mirror of
https://github.com/containers/podman.git
synced 2025-09-26 00:06:04 +08:00
Recreate until container prune tests for bindings
Signed-off-by: Jakub Guzik <jakubmguzik@gmail.com>
This commit is contained in:
@ -568,6 +568,35 @@ var _ = Describe("Podman containers ", func() {
|
|||||||
Expect(err).To(BeNil())
|
Expect(err).To(BeNil())
|
||||||
Expect(len(reports.PruneReportsIds(pruneResponse))).To(Equal(0))
|
Expect(len(reports.PruneReportsIds(pruneResponse))).To(Equal(0))
|
||||||
Expect(len(reports.PruneReportsErrs(pruneResponse))).To(Equal(0))
|
Expect(len(reports.PruneReportsErrs(pruneResponse))).To(Equal(0))
|
||||||
|
|
||||||
|
// Valid filter params container should be pruned now.
|
||||||
|
filters := map[string][]string{
|
||||||
|
"until": {"5000000000"}, //Friday, June 11, 2128
|
||||||
|
}
|
||||||
|
pruneResponse, err = containers.Prune(bt.conn, new(containers.PruneOptions).WithFilters(filters))
|
||||||
|
Expect(err).To(BeNil())
|
||||||
|
Expect(len(reports.PruneReportsErrs(pruneResponse))).To(Equal(0))
|
||||||
|
Expect(len(reports.PruneReportsIds(pruneResponse))).To(Equal(1))
|
||||||
|
})
|
||||||
|
|
||||||
|
It("podman list containers with until filter", func() {
|
||||||
|
var name = "top"
|
||||||
|
_, err := bt.RunTopContainer(&name, nil)
|
||||||
|
Expect(err).To(BeNil())
|
||||||
|
|
||||||
|
filters := map[string][]string{
|
||||||
|
"until": {"5000000000"}, //Friday, June 11, 2128
|
||||||
|
}
|
||||||
|
c, err := containers.List(bt.conn, new(containers.ListOptions).WithFilters(filters).WithAll(true))
|
||||||
|
Expect(err).To(BeNil())
|
||||||
|
Expect(len(c)).To(Equal(1))
|
||||||
|
|
||||||
|
filters = map[string][]string{
|
||||||
|
"until": {"500000"}, // Tuesday, January 6, 1970
|
||||||
|
}
|
||||||
|
c, err = containers.List(bt.conn, new(containers.ListOptions).WithFilters(filters).WithAll(true))
|
||||||
|
Expect(err).To(BeNil())
|
||||||
|
Expect(len(c)).To(Equal(0))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("podman prune running containers", func() {
|
It("podman prune running containers", func() {
|
||||||
|
@ -237,7 +237,7 @@ func prepareUntilFilterFunc(filterValues []string) (func(container *libpod.Conta
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return func(c *libpod.Container) bool {
|
return func(c *libpod.Container) bool {
|
||||||
if !until.IsZero() && c.CreatedTime().After((until)) {
|
if !until.IsZero() && c.CreatedTime().Before(until) {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
|
Reference in New Issue
Block a user