mirror of https://github.com/docker/cli.git
30 lines
839 B
Go
30 lines
839 B
Go
package container
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/docker/cli/cli/command"
|
|
"github.com/docker/cli/internal/test"
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/api/types/filters"
|
|
"github.com/pkg/errors"
|
|
"gotest.tools/v3/assert"
|
|
)
|
|
|
|
func TestContainerPrunePromptTermination(t *testing.T) {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
t.Cleanup(cancel)
|
|
|
|
cli := test.NewFakeCli(&fakeClient{
|
|
containerPruneFunc: func(ctx context.Context, pruneFilters filters.Args) (types.ContainersPruneReport, error) {
|
|
return types.ContainersPruneReport{}, errors.New("fakeClient containerPruneFunc should not be called")
|
|
},
|
|
})
|
|
cmd := NewPruneCommand(cli)
|
|
test.TerminatePrompt(ctx, t, cmd, cli, func(t *testing.T, err error) {
|
|
t.Helper()
|
|
assert.ErrorIs(t, err, command.ErrPromptTerminated)
|
|
})
|
|
}
|