summaryrefslogtreecommitdiff
path: root/vendor/github.com/pborman/getopt/int_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/pborman/getopt/int_test.go')
-rw-r--r--vendor/github.com/pborman/getopt/int_test.go84
1 files changed, 84 insertions, 0 deletions
diff --git a/vendor/github.com/pborman/getopt/int_test.go b/vendor/github.com/pborman/getopt/int_test.go
new file mode 100644
index 0000000..f12af31
--- /dev/null
+++ b/vendor/github.com/pborman/getopt/int_test.go
@@ -0,0 +1,84 @@
+// Copyright 2013 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 (
+ "fmt"
+ "strings"
+ "testing"
+)
+
+var intTests = []struct {
+ where string
+ in []string
+ i int
+ int int
+ err string
+}{
+ {
+ loc(),
+ []string{},
+ 17, 42,
+ "",
+ },
+ {
+ loc(),
+ []string{"test", "-i", "1", "--int", "2"},
+ 1, 2,
+ "",
+ },
+ {
+ loc(),
+ []string{"test", "-i1", "--int=2"},
+ 1, 2,
+ "",
+ },
+ {
+ loc(),
+ []string{"test", "-i1", "-i2"},
+ 2, 42,
+ "",
+ },
+ {
+ loc(),
+ []string{"test", "-i=1"},
+ 17, 42,
+ "test: not a valid number: =1\n",
+ },
+ {
+ loc(),
+ []string{"test", "-i0x20"},
+ 0x20, 42,
+ "",
+ },
+ {
+ loc(),
+ []string{"test", "-i010"},
+ 8, 42,
+ "",
+ },
+}
+
+func TestInt(t *testing.T) {
+ for x, tt := range intTests {
+ reset()
+ i := Int('i', 17)
+ opt := IntLong("int", 0, 42)
+ if strings.Index(tt.where, ":-") > 0 {
+ tt.where = fmt.Sprintf("#%d", x)
+ }
+
+ parse(tt.in)
+ if s := checkError(tt.err); s != "" {
+ t.Errorf("%s: %s", tt.where, s)
+ }
+ if got, want := *i, tt.i; got != want {
+ t.Errorf("%s: got %v, want %v", tt.where, got, want)
+ }
+ if got, want := *opt, tt.int; got != want {
+ t.Errorf("%s: got %v, want %v", tt.where, got, want)
+ }
+ }
+}