2023-05-24 10:22:00 +00:00
|
|
|
package domain
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
2023-12-08 14:30:55 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/zerrors"
|
2023-05-24 10:22:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func Test_renderURLTemplate(t *testing.T) {
|
|
|
|
type args struct {
|
|
|
|
tmpl string
|
|
|
|
data any
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
args args
|
|
|
|
wantW string
|
|
|
|
wantErr error
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "parse error",
|
|
|
|
args: args{
|
|
|
|
tmpl: "{{",
|
|
|
|
},
|
2023-12-08 14:30:55 +00:00
|
|
|
wantErr: zerrors.ThrowInvalidArgument(nil, "DOMAIN-oGh5e", "Errors.User.InvalidURLTemplate"),
|
2023-05-24 10:22:00 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "execution error",
|
|
|
|
args: args{
|
|
|
|
tmpl: "{{.Some}}",
|
|
|
|
data: struct{ Foo int }{Foo: 1},
|
|
|
|
},
|
2023-12-08 14:30:55 +00:00
|
|
|
wantErr: zerrors.ThrowInvalidArgument(nil, "DOMAIN-ieYa7", "Errors.User.InvalidURLTemplate"),
|
2023-05-24 10:22:00 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "success",
|
|
|
|
args: args{
|
|
|
|
tmpl: "{{.Foo}}",
|
|
|
|
data: struct{ Foo int }{Foo: 1},
|
|
|
|
},
|
|
|
|
wantW: "1",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
w := &bytes.Buffer{}
|
|
|
|
err := renderURLTemplate(w, tt.args.tmpl, tt.args.data)
|
|
|
|
require.ErrorIs(t, err, tt.wantErr)
|
|
|
|
assert.Equal(t, tt.wantW, w.String())
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|