2017-03-30 20:21:14 -04:00
|
|
|
package image
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2017-08-21 16:30:09 -04:00
|
|
|
"github.com/docker/cli/internal/test"
|
2017-08-21 16:39:35 -04:00
|
|
|
"github.com/docker/cli/internal/test/testutil"
|
2017-03-30 20:21:14 -04:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/stretchr/testify/assert"
|
2017-04-25 19:24:07 -04:00
|
|
|
"github.com/stretchr/testify/require"
|
2017-03-30 20:21:14 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestNewSaveCommandErrors(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
args []string
|
|
|
|
isTerminal bool
|
|
|
|
expectedError string
|
|
|
|
imageSaveFunc func(images []string) (io.ReadCloser, error)
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "wrong args",
|
|
|
|
args: []string{},
|
2017-08-12 12:25:38 -04:00
|
|
|
expectedError: "requires at least 1 argument.",
|
2017-03-30 20:21:14 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "output to terminal",
|
|
|
|
args: []string{"output", "file", "arg1"},
|
|
|
|
isTerminal: true,
|
2017-05-03 22:26:45 -04:00
|
|
|
expectedError: "cowardly refusing to save to a terminal. Use the -o flag or redirect",
|
2017-03-30 20:21:14 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "ImageSave fail",
|
|
|
|
args: []string{"arg1"},
|
|
|
|
isTerminal: false,
|
|
|
|
expectedError: "error saving image",
|
|
|
|
imageSaveFunc: func(images []string) (io.ReadCloser, error) {
|
|
|
|
return ioutil.NopCloser(strings.NewReader("")), errors.Errorf("error saving image")
|
|
|
|
},
|
|
|
|
},
|
2017-07-26 15:11:02 -04:00
|
|
|
{
|
|
|
|
name: "output directory does not exist",
|
|
|
|
args: []string{"-o", "fakedir/out.tar", "arg1"},
|
|
|
|
expectedError: "failed to save image: unable to validate output path: directory \"fakedir\" does not exist",
|
|
|
|
},
|
2017-03-30 20:21:14 -04:00
|
|
|
}
|
|
|
|
for _, tc := range testCases {
|
2017-07-05 14:43:39 -04:00
|
|
|
cli := test.NewFakeCli(&fakeClient{imageSaveFunc: tc.imageSaveFunc})
|
2017-03-30 20:21:14 -04:00
|
|
|
cli.Out().SetIsTerminal(tc.isTerminal)
|
|
|
|
cmd := NewSaveCommand(cli)
|
|
|
|
cmd.SetOutput(ioutil.Discard)
|
|
|
|
cmd.SetArgs(tc.args)
|
2017-04-25 19:24:07 -04:00
|
|
|
testutil.ErrorContains(t, cmd.Execute(), tc.expectedError)
|
2017-03-30 20:21:14 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestNewSaveCommandSuccess(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
args []string
|
|
|
|
isTerminal bool
|
|
|
|
imageSaveFunc func(images []string) (io.ReadCloser, error)
|
|
|
|
deferredFunc func()
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
args: []string{"-o", "save_tmp_file", "arg1"},
|
|
|
|
isTerminal: true,
|
|
|
|
imageSaveFunc: func(images []string) (io.ReadCloser, error) {
|
2017-04-25 19:24:07 -04:00
|
|
|
require.Len(t, images, 1)
|
|
|
|
assert.Equal(t, "arg1", images[0])
|
2017-03-30 20:21:14 -04:00
|
|
|
return ioutil.NopCloser(strings.NewReader("")), nil
|
|
|
|
},
|
|
|
|
deferredFunc: func() {
|
|
|
|
os.Remove("save_tmp_file")
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
args: []string{"arg1", "arg2"},
|
|
|
|
isTerminal: false,
|
|
|
|
imageSaveFunc: func(images []string) (io.ReadCloser, error) {
|
2017-04-25 19:24:07 -04:00
|
|
|
require.Len(t, images, 2)
|
|
|
|
assert.Equal(t, "arg1", images[0])
|
|
|
|
assert.Equal(t, "arg2", images[1])
|
2017-03-30 20:21:14 -04:00
|
|
|
return ioutil.NopCloser(strings.NewReader("")), nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tc := range testCases {
|
2017-08-16 12:19:53 -04:00
|
|
|
cmd := NewSaveCommand(test.NewFakeCli(&fakeClient{
|
2017-03-30 20:21:14 -04:00
|
|
|
imageSaveFunc: func(images []string) (io.ReadCloser, error) {
|
|
|
|
return ioutil.NopCloser(strings.NewReader("")), nil
|
|
|
|
},
|
2017-08-16 12:19:53 -04:00
|
|
|
}))
|
2017-03-30 20:21:14 -04:00
|
|
|
cmd.SetOutput(ioutil.Discard)
|
|
|
|
cmd.SetArgs(tc.args)
|
|
|
|
assert.NoError(t, cmd.Execute())
|
|
|
|
if tc.deferredFunc != nil {
|
|
|
|
tc.deferredFunc()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|