drone-yaml/yaml/registry_test.go
2019-01-22 15:44:17 -08:00

35 lines
674 B
Go

package yaml
import "testing"
func TestRegistryUnmarshal(t *testing.T) {
diff, err := diff("testdata/registry.yml")
if err != nil {
t.Error(err)
}
if diff != "" {
t.Error("Failed to parse registry")
t.Log(diff)
}
}
func TestRegistryValidate(t *testing.T) {
registry := new(Registry)
registry.Data = map[string]string{"index.drone.io": ""}
if err := registry.Validate(); err != nil {
t.Error(err)
return
}
registry.Data = map[string]string{}
if err := registry.Validate(); err == nil {
t.Errorf("Expect invalid registry error")
}
registry.Data = nil
if err := registry.Validate(); err == nil {
t.Errorf("Expect invalid registry error")
}
}