mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-13 12:41:21 +00:00
fc6a2a9975
* remove github.com/kr/pretty in favor of assert.EqualValues() * code format
59 lines
1.1 KiB
Go
59 lines
1.1 KiB
Go
package yaml
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
func TestUnmarshalSecrets(t *testing.T) {
|
|
testdata := []struct {
|
|
from string
|
|
want []*Secret
|
|
}{
|
|
{
|
|
from: "[ mysql_username, mysql_password]",
|
|
want: []*Secret{
|
|
{
|
|
Source: "mysql_username",
|
|
Target: "mysql_username",
|
|
},
|
|
{
|
|
Source: "mysql_password",
|
|
Target: "mysql_password",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
from: "[ { source: mysql_prod_username, target: mysql_username } ]",
|
|
want: []*Secret{
|
|
{
|
|
Source: "mysql_prod_username",
|
|
Target: "mysql_username",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
from: "[ { source: mysql_prod_username, target: mysql_username }, { source: redis_username, target: redis_username } ]",
|
|
want: []*Secret{
|
|
{
|
|
Source: "mysql_prod_username",
|
|
Target: "mysql_username",
|
|
},
|
|
{
|
|
Source: "redis_username",
|
|
Target: "redis_username",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range testdata {
|
|
in := []byte(test.from)
|
|
got := Secrets{}
|
|
err := yaml.Unmarshal(in, &got)
|
|
assert.NoError(t, err)
|
|
assert.EqualValues(t, test.want, got.Secrets, "problem parsing secrets %q", test.from)
|
|
}
|
|
}
|