forked from hashicorp/go-discover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_test.go
80 lines (73 loc) · 2.37 KB
/
config_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
package discover
import (
"errors"
"reflect"
"testing"
)
func TestConfigParse(t *testing.T) {
tests := []struct {
s string
c Config
err error
}{
// happy flows
{``, nil, nil},
{`key=a`, Config{"key": "a"}, nil},
{`key=a key2=b`, Config{"key": "a", "key2": "b"}, nil},
{`key=a+b key2=c/d`, Config{"key": "a+b", "key2": "c/d"}, nil},
{` key=a key2=b `, Config{"key": "a", "key2": "b"}, nil},
{` key = a key2 = b `, Config{"key": "a", "key2": "b"}, nil},
{` "k e \\\" y" = "a \" b" key2=c`, Config{`k e \" y`: `a " b`, "key2": "c"}, nil},
{`secret_access_key="fpOfcHQJAQBczjAxiVpeyLmX1M0M0KPBST+GU2GvEN4="`, Config{"secret_access_key": "fpOfcHQJAQBczjAxiVpeyLmX1M0M0KPBST+GU2GvEN4="}, nil},
{`provider=aws foo`, nil, errors.New(`foo: missing '='`)},
{`project_name=Test zone_pattern=us-(?west|east).+ tag_value="consul server" credentials_file=xxx`,
Config{
"project_name": "Test",
"zone_pattern": "us-(?west|east).+",
"tag_value": "consul server",
"credentials_file": "xxx",
},
nil,
},
// errors
{`key`, nil, errors.New(`key: missing '='`)},
{`key=`, nil, errors.New(`key: missing value`)},
{`key="a`, nil, errors.New(`key: unbalanced quotes`)},
{`key="\`, nil, errors.New(`key: unterminated escape sequence`)},
{`key=a key=b`, nil, errors.New(`key: duplicate key`)},
{`key key2`, nil, errors.New(`key: missing '='`)},
{`secret_access_key=fpOfcHQJAQBczjAxiVpeyLmX1M0M0KPBST+GU2GvEN4=`, nil, errors.New(`secret_access_key: - equals in key's value, enclosing double-quote needed secret_access_key="value-with-=-symbol"`)},
}
for _, tt := range tests {
t.Run(tt.s, func(t *testing.T) {
c, err := Parse(tt.s)
if got, want := err, tt.err; !reflect.DeepEqual(got, want) {
t.Fatalf("got error %v want %v", got, want)
}
if got, want := c, tt.c; !reflect.DeepEqual(got, want) {
t.Fatalf("got config %#v want %#v", got, want)
}
})
}
}
func TestConfigString(t *testing.T) {
tests := []struct {
in, out string
}{
{``, ``},
{` `, ``},
{`b=c "a a"="b b"`, `"a a"="b b" b=c`},
{`a=b provider=foo x=y`, `provider=foo a=b x=y`},
}
for _, tt := range tests {
t.Run(tt.in, func(t *testing.T) {
c, err := Parse(tt.in)
if err != nil {
t.Fatal("Parse failed: ", err)
}
if got, want := c.String(), tt.out; got != want {
t.Fatalf("got %q want %q", got, want)
}
})
}
}