-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparser_test.go
More file actions
99 lines (96 loc) · 1.91 KB
/
Copy pathparser_test.go
File metadata and controls
99 lines (96 loc) · 1.91 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
package dotenv
import (
"reflect"
"strings"
"testing"
)
func TestParse(t *testing.T) {
tests := []struct {
name string
input string
expect []pair
error bool
}{
{
name: "empty input",
input: "",
expect: []pair{},
},
{
name: "only comments and blanks",
input: "# this is a comment\n\n \n# another",
expect: []pair{},
},
{
name: "single key value",
input: "FOO=bar",
expect: []pair{
{"FOO", "bar"},
},
},
{
name: "multiple key values",
input: "FOO=bar\nBAZ=qux\nHELLO=WORLD",
expect: []pair{
{"FOO", "bar"},
{"BAZ", "qux"},
{"HELLO", "WORLD"},
},
},
{
name: "multiple key values with spacing between equal sign",
input: "FOO = bar\nBAZ = qux\nHELLO = WORLD",
expect: []pair{
{"FOO", "bar"},
{"BAZ", "qux"},
{"HELLO", "WORLD"},
},
},
{
name: "multiple key values CRLF",
input: "FOO=bar\r\nBAZ=qux\r\nHELLO=WORLD",
expect: []pair{
{"FOO", "bar"},
{"BAZ", "qux"},
{"HELLO", "WORLD"},
},
},
{
name: "invalid line without equal sign",
input: "FOO=bar\nINVALID_LINE\nBAZ=qux",
error: true,
},
{
name: "leading comment and valid line",
input: "# comment\nKEY=value",
expect: []pair{
{"KEY", "value"},
},
},
{
name: "values with spaces should work",
input: "KEY=VALUE WITH SPACES",
expect: []pair{{"KEY", "VALUE WITH SPACES"}},
},
{
name: "should not expand",
input: "ENV=dev\nPORT=8000\nHOST=localhost:${PORT}",
expect: []pair{
{"ENV", "dev"},
{"PORT", "8000"},
{"HOST", "localhost:${PORT}"},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := parse(strings.NewReader(tt.input))
if (err != nil) != tt.error {
t.Errorf("unexpected error")
}
if !tt.error && !reflect.DeepEqual(got, tt.expect) {
t.Errorf("\nexpected: %s\n got: %s", tt.expect, got)
}
})
}
}