2019-04-06 13:44:04 +00:00
|
|
|
package yaml
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-12-04 12:23:33 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2019-11-14 19:16:03 +00:00
|
|
|
"gopkg.in/yaml.v3"
|
2019-04-06 13:44:04 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestUnmarshalVolume(t *testing.T) {
|
|
|
|
testdata := []struct {
|
|
|
|
from string
|
|
|
|
want Volume
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
from: "{ name: foo, driver: bar }",
|
|
|
|
want: Volume{
|
|
|
|
Name: "foo",
|
|
|
|
Driver: "bar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
from: "{ name: foo, driver: bar, driver_opts: { baz: qux } }",
|
|
|
|
want: Volume{
|
|
|
|
Name: "foo",
|
|
|
|
Driver: "bar",
|
|
|
|
DriverOpts: map[string]string{
|
|
|
|
"baz": "qux",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testdata {
|
|
|
|
in := []byte(test.from)
|
|
|
|
got := Volume{}
|
|
|
|
err := yaml.Unmarshal(in, &got)
|
2021-12-04 12:23:33 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.EqualValues(t, test.want, got, "problem parsing volume %q", test.from)
|
2019-04-06 13:44:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestUnmarshalVolumes(t *testing.T) {
|
|
|
|
testdata := []struct {
|
|
|
|
from string
|
|
|
|
want []*Volume
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
from: "foo: { driver: bar }",
|
|
|
|
want: []*Volume{
|
|
|
|
{
|
|
|
|
Name: "foo",
|
|
|
|
Driver: "bar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
from: "foo: { name: baz }",
|
|
|
|
want: []*Volume{
|
|
|
|
{
|
|
|
|
Name: "baz",
|
|
|
|
Driver: "local",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
from: "foo: { name: baz, driver: bar }",
|
|
|
|
want: []*Volume{
|
|
|
|
{
|
|
|
|
Name: "baz",
|
|
|
|
Driver: "bar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testdata {
|
|
|
|
in := []byte(test.from)
|
|
|
|
got := Volumes{}
|
|
|
|
err := yaml.Unmarshal(in, &got)
|
2021-12-04 12:23:33 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.EqualValues(t, test.want, got.Volumes, "problem parsing volumes %q", test.from)
|
2019-04-06 13:44:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestUnmarshalVolumesErr(t *testing.T) {
|
|
|
|
testdata := []string{
|
|
|
|
"foo: { name: [ foo, bar] }",
|
|
|
|
"- foo",
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testdata {
|
|
|
|
in := []byte(test)
|
|
|
|
err := yaml.Unmarshal(in, new(Volumes))
|
2021-12-04 12:23:33 +00:00
|
|
|
assert.Error(t, err, "wanted error for volumes %q", test)
|
2019-04-06 13:44:04 +00:00
|
|
|
}
|
|
|
|
}
|