-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparse_test.go
More file actions
175 lines (163 loc) · 3.33 KB
/
parse_test.go
File metadata and controls
175 lines (163 loc) · 3.33 KB
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
// Copyright (c) 2020, Roel Schut. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package env
import (
"testing"
"github.com/go-pogo/errors"
"github.com/stretchr/testify/assert"
)
func TestParse(t *testing.T) {
t.Run("empty", func(t *testing.T) {
tests := map[string]error{
"": nil,
"#comment": nil,
" # another comment": nil,
"export": ErrInvalidFormat,
"export ": ErrInvalidFormat,
}
for input, wantErr := range tests {
t.Run(input, func(t *testing.T) {
have, haveErr := Parse(input)
assert.Equal(t, NamedValue{}, have)
if wantErr == nil {
assert.Nil(t, haveErr)
} else {
assert.True(t, errors.Is(haveErr, wantErr))
}
})
}
})
t.Run("names", func(t *testing.T) {
tests := map[string]struct {
input string
want string
wantErr error
}{
"empty": {
input: "",
wantErr: ErrEmptyKey,
},
"plain": {
input: "foo",
want: "foo",
},
"whitespace": {
input: "\tyolo ",
want: "yolo",
},
"whitespace left": {
input: " bar",
want: "bar",
},
"whitespace right": {
input: "qux\t",
want: "qux",
},
"export": {
input: "export ",
wantErr: ErrEmptyKey,
},
"export as valid key": {
input: "export",
want: "export",
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
have, haveErr := Parse(tc.input + "=some value")
assert.Exactly(t, tc.want, have.Name)
if tc.wantErr == nil {
assert.Nil(t, haveErr)
} else {
assert.True(t, errors.Is(haveErr, tc.wantErr))
}
})
}
})
t.Run("values", func(t *testing.T) {
tests := map[string]struct {
input []string // value parts
want Value
wantErr error
}{
"empty": {
input: []string{
"",
" ",
"\t\t",
`''`,
`""`,
"#comment",
"\t# comment",
"'' # another comment",
},
},
"single quote in value": {
input: []string{
"this is 'a quote'!",
`'this is \'a quote\'!'`,
`"this is 'a quote'!"`,
},
want: "this is 'a quote'!",
},
"double quote in value": {
input: []string{
`'"double" quotes FTW'`,
`"\"double\" quotes FTW"`,
},
want: `"double" quotes FTW`,
},
"escape sequence": {
input: []string{`'\\\''`},
want: `\'`,
},
"escape sequence 2": {
input: []string{`'\\\\'`},
want: `\\`,
},
"escape sequence 3": {
input: []string{`'\\\\\\'`},
want: `\\\`,
},
"comment at end": {
input: []string{
"bar # comment",
"'bar' #comment",
`"bar"#comment`,
},
want: "bar",
},
"hash in value": {
input: []string{
"'#xoo' ",
`"#xoo"`,
},
want: "#xoo",
},
"missing endquote": {
input: []string{
`'`,
`"`,
`"'`,
`'"`,
},
wantErr: ErrMissingEndQuote,
},
}
for name, tc := range tests {
for _, input := range tc.input {
t.Run(name, func(t *testing.T) {
input = "someKey=" + input
have, haveErr := Parse(input)
assert.Exactly(t, tc.want, have.Value, "parsing `"+input+"` failed")
if tc.wantErr == nil {
assert.NoError(t, haveErr)
} else {
assert.ErrorIs(t, haveErr, tc.wantErr)
}
})
}
}
})
}