-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstate_test.go
50 lines (46 loc) · 1.26 KB
/
state_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
package cli
import (
"flag"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestGetFlag(t *testing.T) {
t.Parallel()
t.Run("flag not found", func(t *testing.T) {
cmd := &Command{
Name: "root",
Flags: flag.NewFlagSet("root", flag.ContinueOnError),
}
state := &State{
path: []*Command{cmd},
}
defer func() {
r := recover()
require.NotNil(t, r)
err, ok := r.(error)
require.True(t, ok)
assert.ErrorContains(t, err, `flag "-version" not found in command "root" flag set`)
}()
// Panic because author tried to access a flag that doesn't exist in any of the commands
_ = GetFlag[string](state, "version")
})
t.Run("flag type mismatch", func(t *testing.T) {
cmd := &Command{
Name: "root",
Flags: FlagsFunc(func(f *flag.FlagSet) { f.String("version", "1.0.0", "show version") }),
}
state := &State{
path: []*Command{cmd},
}
defer func() {
r := recover()
require.NotNil(t, r)
err, ok := r.(error)
require.True(t, ok)
assert.ErrorContains(t, err, `type mismatch for flag "-version" in command "root": registered string, requested int`)
}()
// Panic because author tried to access a registered flag with the wrong type
_ = GetFlag[int](state, "version")
})
}