-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathparsing_helper_test.go
185 lines (167 loc) · 5.54 KB
/
parsing_helper_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
// Copyright (c) 2011, SoundCloud Ltd., Daniel Bornkessel
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Source code and contact info at http://github.com/kesselborn/go-getopt
package getopt
import "testing"
func TestIsLongOpt(t *testing.T) {
if opt, _, _ := parseLongOpt("--longopt"); opt != "longopt" {
t.Errorf("'--longopt' option: opt not parsed correctly")
}
if _, val, _ := parseLongOpt("--longopt"); val != "" {
t.Errorf("'--longopt' option: val not parsed correctly")
}
if _, _, found := parseLongOpt("--longopt"); found != true {
t.Errorf("'--longopt' option: found not set correctly")
}
if opt, _, _ := parseLongOpt("--longopt=value"); opt != "longopt" {
t.Errorf("'--longopt=value' option: opt not parsed correctly")
}
if _, val, _ := parseLongOpt("--longopt=value"); val != "value" {
t.Errorf("'--longopt=value' option: val not parsed correctly")
}
if _, _, found := parseLongOpt("--longopt=value"); found != true {
t.Errorf("'--longopt=value' option: found not set correctly")
}
if opt, _, _ := parseLongOpt("--a"); opt != "" {
t.Errorf("'--a' option: opt not parsed correctly")
}
if _, val, _ := parseLongOpt("--a"); val != "" {
t.Errorf("'--a' option: val not parsed correctly")
}
if _, _, found := parseLongOpt("--a"); found != false {
t.Errorf("'--a' option: found not set correctly")
}
if opt, _, _ := parseLongOpt("--"); opt != "" {
t.Errorf("'--' option: opt not parsed correctly")
}
if _, val, _ := parseLongOpt("--"); val != "" {
t.Errorf("'--' option: val not parsed correctly")
}
if _, _, found := parseLongOpt("--"); found != false {
t.Errorf("'--' option: found not set correctly")
}
if opt, _, _ := parseLongOpt(""); opt != "" {
t.Errorf("'' option: opt not parsed correctly")
}
if _, val, _ := parseLongOpt(""); val != "" {
t.Errorf("'' option: val not parsed correctly")
}
if _, _, found := parseLongOpt(""); found != false {
t.Errorf("'' option: found not set correctly")
}
if opt, _, _ := parseLongOpt("-"); opt != "" {
t.Errorf("'-' option: opt not parsed correctly")
}
if _, val, _ := parseLongOpt("-"); val != "" {
t.Errorf("'-' option: val not parsed correctly")
}
if _, _, found := parseLongOpt("-"); found != false {
t.Errorf("'-' option: found not set correctly")
}
if opt, _, _ := parseLongOpt("-a"); opt != "" {
t.Errorf("'-a' option: opt not parsed correctly")
}
if _, val, _ := parseLongOpt("-a"); val != "" {
t.Errorf("'-a' option: val not parsed correctly")
}
if _, _, found := parseLongOpt("-a"); found != false {
t.Errorf("'-a' option: found not set correctly")
}
}
func TestIsShortOpt(t *testing.T) {
if opt, _, _ := parseShortOpt("-a"); opt != "a" {
t.Errorf("'-a' option: opt not parsed correctly")
}
if _, val, _ := parseShortOpt("-a"); val != "" {
t.Errorf("'-a' option: val not parsed correctly")
}
if _, _, found := parseShortOpt("-a"); found == false {
t.Errorf("'-a' option: found not set correctly")
}
if opt, _, _ := parseShortOpt("-abc"); opt != "a" {
t.Errorf("'-abc' option: opt not parsed correctly")
}
if _, val, _ := parseShortOpt("-abc"); val != "bc" {
t.Errorf("'-abc' option: val not parsed correctly")
}
if _, _, found := parseShortOpt("-abc"); found == false {
t.Errorf("'-abc' option: found not set correctly")
}
if opt, _, _ := parseShortOpt("-"); opt != "" {
t.Errorf("'-' option: opt not parsed correctly")
}
if _, val, _ := parseShortOpt("-"); val != "" {
t.Errorf("'-' option: val not parsed correctly")
}
if _, _, found := parseShortOpt("-"); found == true {
t.Errorf("'-' option: found not set correctly")
}
if opt, _, _ := parseShortOpt("--"); opt != "" {
t.Errorf("'--' option: opt not parsed correctly")
}
if _, val, _ := parseShortOpt("--"); val != "" {
t.Errorf("'--' option: val not parsed correctly")
}
if _, _, found := parseShortOpt("--"); found == true {
t.Errorf("'--' option: found not set correctly")
}
if opt, _, _ := parseShortOpt(""); opt != "" {
t.Errorf("'' option: opt not parsed correctly")
}
if _, val, _ := parseShortOpt(""); val != "" {
t.Errorf("'' option: val not parsed correctly")
}
if _, _, found := parseShortOpt(""); found == true {
t.Errorf("'' option: found not set correctly")
}
if opt, _, _ := parseShortOpt("a"); opt != "" {
t.Errorf("'a' option: opt not parsed correctly")
}
if _, val, _ := parseShortOpt("a"); val != "" {
t.Errorf("'a' option: val not parsed correctly")
}
if _, _, found := parseShortOpt("a"); found == true {
t.Errorf("'a' option: found not set correctly")
}
if opt, _, _ := parseShortOpt("aaaaa"); opt != "" {
t.Errorf("'aaaaa' option: opt not parsed correctly")
}
if _, val, _ := parseShortOpt("aaaaa"); val != "" {
t.Errorf("'aaaaa' option: val not parsed correctly")
}
if _, _, found := parseShortOpt("aaaaa"); found == true {
t.Errorf("'aaaaa' option: found not set correctly")
}
}
func TestIsValue(t *testing.T) {
if !isValue("value") {
t.Errorf("'value' not recognized as value")
}
if !isValue(" ") {
t.Errorf("' ' not recognized as value")
}
if !isValue(" ") {
t.Errorf("' ' not recognized as value")
}
if isValue("--") {
t.Errorf("'--' identified as value")
}
if isValue("-a") {
t.Errorf("'-a' identified as value")
}
if isValue("--longopt") {
t.Errorf("'--longopt' identified as value")
}
if isValue("-abc") {
t.Errorf("'-abc' identified as value")
}
if isValue("--longopt=value") {
t.Errorf("'--longopt=value' identified as value")
}
}
func TestArgumentsEnd(t *testing.T) {
if !argumentsEnd("--") {
t.Errorf("'--' not recognized as arguments end")
}
}