-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_values_test.go
234 lines (182 loc) · 5.19 KB
/
example_values_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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
package gflag_test
import (
"fmt"
"log"
"github.com/fredbi/gflag"
"github.com/spf13/pflag"
)
// Joint usage with pflag, for a simple bool flag
func ExampleValue() {
// variable to store the value of the flag
var flagVal bool
// Custom pflag.FlagSet.
// Simple CLIs may just use the default pre-baked package-level FlagSet for the command line.
name := "verbose"
short := name[:1]
fs := pflag.NewFlagSet("Example", pflag.ContinueOnError)
// declare a new generic flag: type is inferred from the provided default value
verboseFlag := gflag.NewFlagValue(&flagVal, false)
// register this flag into the FlagSet
fl := fs.VarPF(verboseFlag, name, short, "verbose output")
fl.NoOptDefVal = verboseFlag.GetNoOptDefVal() // allow no argument passed to the flag
// parse args from the command line.
// Simple CLIs may just use the default, with pflag.Parse() from the command line arguments.
if err := fs.Parse([]string{"--verbose"}); err != nil {
log.Fatalln("parsing error:", err)
}
// retrieve parsed values
flag := fs.Lookup(name)
fmt.Println(flag.Name)
fmt.Println(flag.Value)
flag = fs.ShorthandLookup(short)
fmt.Println(flag.Name)
fmt.Println(flag.Value)
// various ways to retrieve the parsed value
// using the variable used for storing the value
fmt.Println(flagVal)
// using GetValue[bool]()
fmt.Println(verboseFlag.GetValue())
// Output:
// verbose
// true
// verbose
// true
// true
// true
}
// Simple int flag
func ExampleAddValueFlag() {
const name = "integer"
short := name[:1]
const usage = "an integer flag"
fs := pflag.NewFlagSet("Example", pflag.ContinueOnError)
// add flag without a preallocated variable: all interaction is performed via the flag
gfl, fl := gflag.AddValueFlag(
fs,
gflag.NewFlagValue(nil, 5), // create a generic flag of type integer
name, short, usage, // the usual specification for the flag
)
if err := fs.Parse([]string{"--integer", "12"}); err != nil {
log.Fatalln("parsing error:", err)
}
// retrieve parsed values from name
flag := fs.Lookup(name)
fmt.Println(flag.Name)
fmt.Println(flag.Value)
// retrieve parsed value from short name
flag = fs.ShorthandLookup(short)
fmt.Println(flag.Name)
fmt.Println(flag.Value)
// various ways to retrieve the parsed value
// using underlying value
fmt.Println(fl.Value)
// using FlagSet.GetInt() (old way)
val, err := fs.GetInt(name)
if err != nil {
log.Fatalln("flag type error:", err)
}
fmt.Printf("%v (%T)\n", val, val)
// using GetValue[int]() (new way)
val2 := gfl.GetValue()
fmt.Printf("%v (%T)\n", val2, val2)
// Output:
// integer
// 12
// integer
// 12
// 12
// 12 (int)
// 12 (int)
}
// Joint usage with pflag, for a string array flag
func ExampleSliceValue() {
var flagVal []string
name := "strings"
short := name[:1]
fs := pflag.NewFlagSet("Example", pflag.ContinueOnError)
stringsFlag := gflag.NewFlagSliceValue(&flagVal, []string{"a", "b"})
fs.VarP(stringsFlag, name, short, "csv input strings")
if err := fs.Parse([]string{"--strings", "d,e,f", "--strings", "g,h"}); err != nil {
log.Fatalln("parsing error:", err)
}
// retrieve parsed values
flag := fs.Lookup(name)
fmt.Println(flag.Name)
fmt.Println(flag.Value)
flag = fs.ShorthandLookup(short)
fmt.Println(flag.Name)
fmt.Println(flag.Value)
// using underlying value
fmt.Println(flagVal)
// using GetValue[bool]()
fmt.Println(stringsFlag.GetValue())
// Output:
// strings
// [d,e,f,g,h]
// strings
// [d,e,f,g,h]
// [d e f g h]
// [d e f g h]
}
// Joint usage with pflag, for a key=value map of integers
func ExampleMapValue() {
var flagVal map[string]int
name := "map"
short := name[:1]
fs := pflag.NewFlagSet("Example", pflag.ContinueOnError)
mapFlag := gflag.NewFlagMapValue(&flagVal, map[string]int{"a": 5, "b": 2})
fs.VarP(mapFlag, name, short, "map of integers")
if err := fs.Parse([]string{"--map", "f=1,g=4", "--map", "e=3"}); err != nil {
log.Fatalln("parsing error:", err)
}
// retrieve parsed values
flag := fs.Lookup(name)
fmt.Println(flag.Name)
fmt.Println(flag.Value)
flag = fs.ShorthandLookup(short)
fmt.Println(flag.Name)
fmt.Println(flag.Value)
// using underlying value
fmt.Println(flagVal)
// using GetValue[bool]()
fmt.Println(mapFlag.GetValue())
// Output:
// map
// [e=3,f=1,g=4]
// map
// [e=3,f=1,g=4]
// map[e:3 f:1 g:4]
// map[e:3 f:1 g:4]
}
// Example of using gflag options.
func ExampleOption() {
// example with int used with count semantics
var flagVal int
name := "count"
short := name[:1]
fs := pflag.NewFlagSet("Example", pflag.ContinueOnError)
countFlag := gflag.NewFlagValue(&flagVal, 0, gflag.IntIsCount(true))
fl := fs.VarPF(countFlag, name, short, "increment counter")
fl.NoOptDefVal = countFlag.GetNoOptDefVal() // allow no argument passed to the flag
if err := fs.Parse([]string{"--count", "--count", "--count"}); err != nil {
log.Fatalln("parsing error:", err)
}
// retrieve parsed values
flag := fs.Lookup(name)
fmt.Println(flag.Name)
fmt.Println(flag.Value)
flag = fs.ShorthandLookup(short)
fmt.Println(flag.Name)
fmt.Println(flag.Value)
// using underlying value
fmt.Println(flagVal)
// using GetValue[bool]()
fmt.Println(countFlag.GetValue())
// Output:
// count
// 3
// count
// 3
// 3
// 3
}