summaryrefslogtreecommitdiff
path: root/vendor/github.com/pborman/getopt/v2/string_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/pborman/getopt/v2/string_test.go')
-rw-r--r--vendor/github.com/pborman/getopt/v2/string_test.go77
1 files changed, 77 insertions, 0 deletions
diff --git a/vendor/github.com/pborman/getopt/v2/string_test.go b/vendor/github.com/pborman/getopt/v2/string_test.go
new file mode 100644
index 0000000..31abae8
--- /dev/null
+++ b/vendor/github.com/pborman/getopt/v2/string_test.go
@@ -0,0 +1,77 @@
+// Copyright 2017 Google Inc. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package getopt
+
+import "testing"
+
+var stringTests = []struct {
+ where string
+ in []string
+ sout string
+ optout string
+ err string
+}{
+ {
+ loc(),
+ []string{},
+ "one",
+ "two",
+ "",
+ },
+ {
+ loc(),
+ []string{"test", "-s"},
+ "one",
+ "two",
+ "test: missing parameter for -s\n",
+ },
+ {
+ loc(),
+ []string{"test", "--opt"},
+ "one",
+ "two",
+ "test: missing parameter for --opt\n",
+ },
+ {
+ loc(),
+ []string{"test", "-svalue", "--opt=option"},
+ "value",
+ "option",
+ "",
+ },
+ {
+ loc(),
+ []string{"test", "-s", "value", "--opt", "option"},
+ "value",
+ "option",
+ "",
+ },
+ {
+ loc(),
+ []string{"test", "-swrong", "--opt=wrong", "-s", "value", "--opt", "option"},
+ "value",
+ "option",
+ "",
+ },
+}
+
+func TestString(t *testing.T) {
+ for _, tt := range stringTests {
+ reset()
+ s := String('s', "one")
+ opt := StringLong("opt", 0, "two")
+
+ parse(tt.in)
+ if s := checkError(tt.err); s != "" {
+ t.Errorf("%s: %s", tt.where, s)
+ }
+ if *s != tt.sout {
+ t.Errorf("%s: got s = %q, want %q", tt.where, *s, tt.sout)
+ }
+ if *opt != tt.optout {
+ t.Errorf("%s: got opt = %q, want %q", tt.where, *opt, tt.optout)
+ }
+ }
+}