2019-02-10 19:00:16 +00:00
|
|
|
// Copyright 2019 Drone.IO Inc. All rights reserved.
|
2019-02-21 20:48:45 +00:00
|
|
|
// Use of this source code is governed by the Drone Non-Commercial License
|
|
|
|
// that can be found in the LICENSE file.
|
2019-02-10 19:00:16 +00:00
|
|
|
|
2019-01-22 23:44:17 +00:00
|
|
|
package yaml
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
|
2019-05-30 01:21:23 +00:00
|
|
|
"github.com/buildkite/yaml"
|
2019-01-22 23:44:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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.")
|
|
|
|
}
|
|
|
|
}
|