aboutsummaryrefslogtreecommitdiff
path: root/func_test.go
diff options
context:
space:
mode:
authorTomas Aschan <[email protected]>2025-05-24 23:06:39 +0200
committerGitHub <[email protected]>2025-05-24 23:06:39 +0200
commitbca0664b6991016400b98ac29aae5a73f926bd71 (patch)
tree3a4ed965307ae8ee2acf11ac2a92124b859e216e /func_test.go
parent196624cc28da007ab68e13213b7fb6447211ad31 (diff)
parent69bc3bd5b37fa90e994be9acecf7430269591713 (diff)
Merge pull request #429 from LeGEC/426-add-func-and-bool-func
add support for Func() and BoolFunc() #426
Diffstat (limited to 'func_test.go')
-rw-r--r--func_test.go153
1 files changed, 153 insertions, 0 deletions
diff --git a/func_test.go b/func_test.go
new file mode 100644
index 0000000..4ec1cd6
--- /dev/null
+++ b/func_test.go
@@ -0,0 +1,153 @@
+package pflag
+
+import (
+ "errors"
+ "flag"
+ "io"
+ "strings"
+ "testing"
+)
+
+func cmpLists(a, b []string) bool {
+ if len(a) != len(b) {
+ return false
+ }
+ for i := range a {
+ if a[i] != b[i] {
+ return false
+ }
+ }
+ return true
+}
+
+func TestFunc(t *testing.T) {
+ var values []string
+ fn := func(s string) error {
+ values = append(values, s)
+ return nil
+ }
+
+ fset := NewFlagSet("test", ContinueOnError)
+ fset.Func("fnflag", "Callback function", fn)
+
+ err := fset.Parse([]string{"--fnflag=aa", "--fnflag", "bb"})
+ if err != nil {
+ t.Fatal("expected no error; got", err)
+ }
+
+ expected := []string{"aa", "bb"}
+ if !cmpLists(expected, values) {
+ t.Fatalf("expected %v, got %v", expected, values)
+ }
+}
+
+func TestFuncP(t *testing.T) {
+ var values []string
+ fn := func(s string) error {
+ values = append(values, s)
+ return nil
+ }
+
+ fset := NewFlagSet("test", ContinueOnError)
+ fset.FuncP("fnflag", "f", "Callback function", fn)
+
+ err := fset.Parse([]string{"--fnflag=a", "--fnflag", "b", "-fc", "-f=d", "-f", "e"})
+ if err != nil {
+ t.Fatal("expected no error; got", err)
+ }
+
+ expected := []string{"a", "b", "c", "d", "e"}
+ if !cmpLists(expected, values) {
+ t.Fatalf("expected %v, got %v", expected, values)
+ }
+}
+
+func TestFuncCompat(t *testing.T) {
+ // compare behavior with the stdlib 'flag' package
+ type FuncFlagSet interface {
+ Func(name string, usage string, fn func(string) error)
+ Parse([]string) error
+ }
+
+ unitTestErr := errors.New("unit test error")
+ runCase := func(f FuncFlagSet, name string, args []string) (values []string, err error) {
+ fn := func(s string) error {
+ values = append(values, s)
+ if s == "err" {
+ return unitTestErr
+ }
+ return nil
+ }
+ f.Func(name, "Callback function", fn)
+
+ err = f.Parse(args)
+ return values, err
+ }
+
+ t.Run("regular parsing", func(t *testing.T) {
+ flagName := "fnflag"
+ args := []string{"--fnflag=xx", "--fnflag", "yy", "--fnflag=zz"}
+
+ stdFSet := flag.NewFlagSet("std test", flag.ContinueOnError)
+ stdValues, err := runCase(stdFSet, flagName, args)
+ if err != nil {
+ t.Fatalf("std flag: expected no error, got %v", err)
+ }
+ expected := []string{"xx", "yy", "zz"}
+ if !cmpLists(expected, stdValues) {
+ t.Fatalf("std flag: expected %v, got %v", expected, stdValues)
+ }
+
+ fset := NewFlagSet("pflag test", ContinueOnError)
+ pflagValues, err := runCase(fset, flagName, args)
+ if err != nil {
+ t.Fatalf("pflag: expected no error, got %v", err)
+ }
+ if !cmpLists(stdValues, pflagValues) {
+ t.Fatalf("pflag: expected %v, got %v", stdValues, pflagValues)
+ }
+ })
+
+ t.Run("error triggered by callback", func(t *testing.T) {
+ flagName := "fnflag"
+ args := []string{"--fnflag", "before", "--fnflag", "err", "--fnflag", "after"}
+
+ // test behavior of standard flag.Fset with an error triggere by the callback:
+ // (note: as can be seen in 'runCase()', if the callback sees "err" as a value
+ // for the bool flag, it will return an error)
+ stdFSet := flag.NewFlagSet("std test", flag.ContinueOnError)
+ stdFSet.SetOutput(io.Discard) // suppress output
+
+ // run test case with standard flag.Fset
+ stdValues, err := runCase(stdFSet, flagName, args)
+
+ // double check the standard behavior:
+ // - .Parse() should return an error, which contains the error message
+ if err == nil {
+ t.Fatalf("std flag: expected an error triggered by callback, got no error instead")
+ }
+ if !strings.HasSuffix(err.Error(), unitTestErr.Error()) {
+ t.Fatalf("std flag: expected unittest error, got unexpected error value: %T %v", err, err)
+ }
+ // - the function should have been called twice, with the first two values,
+ // the final "=after" should not be recorded
+ expected := []string{"before", "err"}
+ if !cmpLists(expected, stdValues) {
+ t.Fatalf("std flag: expected %v, got %v", expected, stdValues)
+ }
+
+ // now run the test case on a pflag FlagSet:
+ fset := NewFlagSet("pflag test", ContinueOnError)
+ pflagValues, err := runCase(fset, flagName, args)
+
+ // check that there is a similar error (note: pflag will _wrap_ the error, while the stdlib
+ // currently keeps the original message but creates a flat errors.Error)
+ if !errors.Is(err, unitTestErr) {
+ t.Fatalf("pflag: got unexpected error value: %T %v", err, err)
+ }
+ // the callback should be called the same number of times, with the same values:
+ if !cmpLists(stdValues, pflagValues) {
+ t.Fatalf("pflag: expected %v, got %v", stdValues, pflagValues)
+ }
+ })
+}