-
-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy pathoptions_test.go
185 lines (149 loc) · 3.81 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
package kong
import (
"reflect"
"strings"
"testing"
"github.com/alecthomas/assert/v2"
)
func TestOptions(t *testing.T) {
var cli struct{}
p, err := New(&cli, Name("name"), Description("description"), Writers(nil, nil), Exit(nil))
assert.NoError(t, err)
assert.Equal(t, "name", p.Model.Name)
assert.Equal(t, "description", p.Model.Help)
assert.Zero(t, p.Stdout)
assert.Zero(t, p.Stderr)
assert.Zero(t, p.Exit)
}
type impl string
func (impl) Method() {}
func TestBindTo(t *testing.T) {
type iface interface {
Method()
}
saw := ""
method := func(i iface) error {
saw = string(i.(impl)) //nolint
return nil
}
var cli struct{}
p, err := New(&cli, BindTo(impl("foo"), (*iface)(nil)))
assert.NoError(t, err)
err = callFunction(reflect.ValueOf(method), p.bindings)
assert.NoError(t, err)
assert.Equal(t, "foo", saw)
}
func TestInvalidCallback(t *testing.T) {
type iface interface {
Method()
}
saw := ""
method := func(i iface) string {
saw = string(i.(impl)) //nolint
return saw
}
var cli struct{}
p, err := New(&cli, BindTo(impl("foo"), (*iface)(nil)))
assert.NoError(t, err)
err = callFunction(reflect.ValueOf(method), p.bindings)
assert.EqualError(t, err, `return value of func(kong.iface) string must implement "error"`)
}
type zrror struct{}
func (*zrror) Error() string {
return "error"
}
func TestCallbackCustomError(t *testing.T) {
type iface interface {
Method()
}
saw := ""
method := func(i iface) *zrror {
saw = string(i.(impl)) //nolint
return nil
}
var cli struct{}
p, err := New(&cli, BindTo(impl("foo"), (*iface)(nil)))
assert.NoError(t, err)
err = callFunction(reflect.ValueOf(method), p.bindings)
assert.NoError(t, err)
assert.Equal(t, "foo", saw)
}
type bindToProviderCLI struct {
Filled bool `default:"true"`
Called bool
Cmd bindToProviderCmd `cmd:""`
}
type boundThing struct {
Filled bool
}
type bindToProviderCmd struct{}
func (*bindToProviderCmd) Run(cli *bindToProviderCLI, b *boundThing) error {
cli.Called = true
return nil
}
func TestBindToProvider(t *testing.T) {
var cli bindToProviderCLI
app, err := New(&cli, BindToProvider(func(cli *bindToProviderCLI) (*boundThing, error) {
assert.True(t, cli.Filled, "CLI struct should have already been populated by Kong")
return &boundThing{Filled: cli.Filled}, nil
}))
assert.NoError(t, err)
ctx, err := app.Parse([]string{"cmd"})
assert.NoError(t, err)
err = ctx.Run()
assert.NoError(t, err)
assert.True(t, cli.Called)
}
func TestBindSingletonProvider(t *testing.T) {
type (
Connection struct{}
ClientA struct{ conn *Connection }
ClientB struct{ conn *Connection }
)
var numConnections int
newConnection := func() *Connection {
numConnections++
return &Connection{}
}
var cli struct{}
app, err := New(&cli,
BindSingletonProvider(newConnection),
BindToProvider(func(conn *Connection) *ClientA {
return &ClientA{conn: conn}
}),
BindToProvider(func(conn *Connection) *ClientB {
return &ClientB{conn: conn}
}),
)
assert.NoError(t, err)
ctx, err := app.Parse([]string{})
assert.NoError(t, err)
_, err = ctx.Call(func(a *ClientA, b *ClientB) {
assert.NotZero(t, a.conn)
assert.NotZero(t, b.conn)
assert.Equal(t, 1, numConnections, "expected newConnection to be called only once")
})
assert.NoError(t, err)
}
func TestFlagNamer(t *testing.T) {
var cli struct {
SomeFlag string
}
app, err := New(&cli, FlagNamer(strings.ToUpper))
assert.NoError(t, err)
assert.Equal(t, "SOMEFLAG", app.Model.Flags[1].Name)
}
type npError string
func (e npError) Error() string {
return "ERROR: " + string(e)
}
func TestCallbackNonPointerError(t *testing.T) {
method := func() error {
return npError("failed")
}
var cli struct{}
p, err := New(&cli)
assert.NoError(t, err)
err = callFunction(reflect.ValueOf(method), p.bindings)
assert.EqualError(t, err, "ERROR: failed")
}