drone-yaml/yaml/converter/legacy/internal/volume_test.go
2019-01-22 15:44:17 -08:00

44 lines
964 B
Go

package yaml
import (
"reflect"
"testing"
"gopkg.in/yaml.v2"
)
func TestVolume(t *testing.T) {
var tests = []struct {
yaml string
want Volume
}{
{
yaml: "/opt/data:/var/lib/mysql",
want: Volume{Source: "/opt/data", Destination: "/var/lib/mysql"},
},
{
yaml: "/opt/data:/var/lib/mysql:ro",
want: Volume{Source: "/opt/data", Destination: "/var/lib/mysql", ReadOnly: true},
},
{
yaml: "/opt/data:/var/lib/mysql",
want: Volume{Source: "/opt/data", Destination: "/var/lib/mysql", ReadOnly: false},
},
}
for _, test := range tests {
got := Volume{}
if err := yaml.Unmarshal([]byte(test.yaml), &got); err != nil {
t.Errorf("got error unmarshaling volume %q", test.yaml)
}
if !reflect.DeepEqual(got, test.want) {
t.Errorf("got volume %v want %v", got, test.want)
}
}
var got Volume
if err := yaml.Unmarshal([]byte("{}"), &got); err == nil {
t.Errorf("Want error unmarshaling invalid volume string.")
}
}