mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-16 15:20:38 +00:00
37 lines
643 B
Go
37 lines
643 B
Go
|
package yaml
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestSecretUnmarshal(t *testing.T) {
|
||
|
diff, err := diff("testdata/secret.yml")
|
||
|
if err != nil {
|
||
|
t.Error(err)
|
||
|
}
|
||
|
if diff != "" {
|
||
|
t.Error("Failed to parse secret")
|
||
|
t.Log(diff)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestSecretValidate(t *testing.T) {
|
||
|
secret := new(Secret)
|
||
|
|
||
|
secret.Data = map[string]string{"foo": "bar"}
|
||
|
if err := secret.Validate(); err != nil {
|
||
|
t.Error(err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
secret.Data = map[string]string{}
|
||
|
if err := secret.Validate(); err == nil {
|
||
|
t.Errorf("Expect invalid secret error")
|
||
|
}
|
||
|
|
||
|
secret.Data = nil
|
||
|
if err := secret.Validate(); err == nil {
|
||
|
t.Errorf("Expect invalid secret error")
|
||
|
}
|
||
|
}
|