mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
58738cdee3
This fix is a follow up for comment https://github.com/docker/docker/pull/28535#issuecomment-263215225 This fix provides `--filter until=<timestamp>` for `docker container/image prune`. This fix adds `--filter until=<timestamp>` to `docker container/image prune` so that it is possible to specify a timestamp and prune those containers/images that are earlier than the timestamp. Related docs has been updated Several integration tests have been added to cover changes. This fix fixes #28497. This fix is related to #28535. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
111 lines
2.8 KiB
Go
111 lines
2.8 KiB
Go
package client
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/api/types/filters"
|
|
"github.com/docker/docker/pkg/testutil/assert"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
func TestContainersPruneError(t *testing.T) {
|
|
client := &Client{
|
|
client: newMockClient(errorMock(http.StatusInternalServerError, "Server error")),
|
|
version: "1.25",
|
|
}
|
|
|
|
filters := filters.NewArgs()
|
|
|
|
_, err := client.ContainersPrune(context.Background(), filters)
|
|
assert.Error(t, err, "Error response from daemon: Server error")
|
|
}
|
|
|
|
func TestContainersPrune(t *testing.T) {
|
|
expectedURL := "/v1.25/containers/prune"
|
|
|
|
danglingFilters := filters.NewArgs()
|
|
danglingFilters.Add("dangling", "true")
|
|
|
|
noDanglingFilters := filters.NewArgs()
|
|
noDanglingFilters.Add("dangling", "false")
|
|
|
|
danglingUntilFilters := filters.NewArgs()
|
|
danglingUntilFilters.Add("dangling", "true")
|
|
danglingUntilFilters.Add("until", "2016-12-15T14:00")
|
|
|
|
listCases := []struct {
|
|
filters filters.Args
|
|
expectedQueryParams map[string]string
|
|
}{
|
|
{
|
|
filters: filters.Args{},
|
|
expectedQueryParams: map[string]string{
|
|
"until": "",
|
|
"filter": "",
|
|
"filters": "",
|
|
},
|
|
},
|
|
{
|
|
filters: danglingFilters,
|
|
expectedQueryParams: map[string]string{
|
|
"until": "",
|
|
"filter": "",
|
|
"filters": `{"dangling":{"true":true}}`,
|
|
},
|
|
},
|
|
{
|
|
filters: danglingUntilFilters,
|
|
expectedQueryParams: map[string]string{
|
|
"until": "",
|
|
"filter": "",
|
|
"filters": `{"dangling":{"true":true},"until":{"2016-12-15T14:00":true}}`,
|
|
},
|
|
},
|
|
{
|
|
filters: noDanglingFilters,
|
|
expectedQueryParams: map[string]string{
|
|
"until": "",
|
|
"filter": "",
|
|
"filters": `{"dangling":{"false":true}}`,
|
|
},
|
|
},
|
|
}
|
|
for _, listCase := range listCases {
|
|
client := &Client{
|
|
client: newMockClient(func(req *http.Request) (*http.Response, error) {
|
|
if !strings.HasPrefix(req.URL.Path, expectedURL) {
|
|
return nil, fmt.Errorf("Expected URL '%s', got '%s'", expectedURL, req.URL)
|
|
}
|
|
query := req.URL.Query()
|
|
for key, expected := range listCase.expectedQueryParams {
|
|
actual := query.Get(key)
|
|
assert.Equal(t, actual, expected)
|
|
}
|
|
content, err := json.Marshal(types.ContainersPruneReport{
|
|
ContainersDeleted: []string{"container_id1", "container_id2"},
|
|
SpaceReclaimed: 9999,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &http.Response{
|
|
StatusCode: http.StatusOK,
|
|
Body: ioutil.NopCloser(bytes.NewReader(content)),
|
|
}, nil
|
|
}),
|
|
version: "1.25",
|
|
}
|
|
|
|
report, err := client.ContainersPrune(context.Background(), listCase.filters)
|
|
assert.NilError(t, err)
|
|
assert.Equal(t, len(report.ContainersDeleted), 2)
|
|
assert.Equal(t, report.SpaceReclaimed, uint64(9999))
|
|
}
|
|
}
|