mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-16 15:20:38 +00:00
45 lines
680 B
Go
45 lines
680 B
Go
|
package yaml
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"gopkg.in/yaml.v2"
|
||
|
)
|
||
|
|
||
|
func TestBuild(t *testing.T) {
|
||
|
tests := []struct {
|
||
|
yaml string
|
||
|
image string
|
||
|
}{
|
||
|
{
|
||
|
yaml: "bar",
|
||
|
image: "bar",
|
||
|
},
|
||
|
{
|
||
|
yaml: "{ image: foo }",
|
||
|
image: "foo",
|
||
|
},
|
||
|
}
|
||
|
for _, test := range tests {
|
||
|
in := []byte(test.yaml)
|
||
|
out := new(Build)
|
||
|
err := yaml.Unmarshal(in, out)
|
||
|
if err != nil {
|
||
|
t.Error(err)
|
||
|
return
|
||
|
}
|
||
|
if got, want := out.Image, test.image; got != want {
|
||
|
t.Errorf("Want image %q, got %q", want, got)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestBuildError(t *testing.T) {
|
||
|
in := []byte("[]")
|
||
|
out := new(Build)
|
||
|
err := yaml.Unmarshal(in, out)
|
||
|
if err == nil {
|
||
|
t.Errorf("Expect unmarshal error")
|
||
|
}
|
||
|
}
|