-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions_test.go
92 lines (75 loc) · 1.49 KB
/
options_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package vipertemplate_test
import (
"fmt"
"testing"
"text/template"
"github.com/spf13/viper"
"github.com/stretchr/testify/require"
vipertemplate "github.com/sv-tools/viper-template"
)
func TestGetWithViper(t *testing.T) {
t.Cleanup(func() {
viper.Reset()
})
viper.Set("foo", 43)
v := viper.New()
v.Set("foo", 42)
val, err := vipertemplate.Get("foo", vipertemplate.WithViper(v))
require.NoError(t, err)
require.Equal(t, 42, val)
}
func TestGetWithData(t *testing.T) {
t.Cleanup(func() {
viper.Reset()
})
viper.Set("foo", "{{ .Bar }}")
data := struct {
Bar int
}{
Bar: 42,
}
val, err := vipertemplate.Get("foo", vipertemplate.WithData(&data))
require.NoError(t, err)
require.Equal(t, "42", val)
}
func TestGetWithFuncs(t *testing.T) {
t.Cleanup(func() {
viper.Reset()
})
viper.Set("foo", "{{ Bar }}")
funcs := template.FuncMap{
"Bar": func() int {
return 42
},
}
val, err := vipertemplate.Get("foo", vipertemplate.WithFuncs(funcs))
require.NoError(t, err)
require.Equal(t, "42", val)
}
func ExampleGet_with_options() {
v := viper.New()
v.Set("foo", `{{ Get "bar" }}`)
v.Set("bar", `{{ Mul . 2 }}`)
type Data struct {
Bar int
}
data := Data{
Bar: 42,
}
funcs := template.FuncMap{
"Mul": func(d *Data, v int) int {
return d.Bar * v
},
}
val, err := vipertemplate.Get(
"foo",
vipertemplate.WithViper(v),
vipertemplate.WithData(&data),
vipertemplate.WithFuncs(funcs),
)
if err != nil {
panic(err)
}
fmt.Println(val)
// Output: 84
}