-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoenv_test.go
144 lines (118 loc) · 2.15 KB
/
goenv_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
package goenv
import (
"testing"
)
func TestFileDump(t *testing.T) {
got, err := FileDump("./assets/.env")
if err != nil {
t.Error(err)
}
expLines := []string{`USER=demo_user`, `PASSWORD=qwerty`}
c := 0
for i := range expLines {
if got[c] != expLines[i] {
t.Errorf("%s != %s", got[c], expLines[i])
}
c++
}
}
func TestEmptyInputParam(t *testing.T) {
_, err := New()
if err != nil {
t.Error(err)
}
}
func TestNonEmptyInputParam(t *testing.T) {
_, err := New("./assets/.env")
if err != nil {
t.Error(err)
}
}
func TestBuildKV(t *testing.T) {
res, err := buildKV([]string{"par1=one", "par2=two"})
if err != nil {
t.Error(err)
}
exp1 := "one"
if res["par1"] != exp1 {
t.Errorf("expected %s, got %s", "one", exp1)
}
exp2 := "two"
if res["par2"] != exp2 {
t.Errorf("expected %s, got %s", "two", exp2)
}
}
func TestGetOK(t *testing.T) {
efo, err := New()
if err != nil {
t.Error(err)
}
v, err := efo.Get("USER")
if err != nil {
t.Error(err)
}
expected := "demo_user"
if v != "demo_user" {
t.Errorf("expected %s, got %s", expected, v)
}
}
func TestCheckRowsFormatOK(t *testing.T) {
rows := []string{
"foo=1",
"bar_1=2",
"baz-2=3",
`baz-3='4'`,
`bax-4="5"`,
}
for i := range rows {
ok, err := checkRowFormat(rows[i])
if err != nil {
t.Error(err)
}
if !ok {
t.Error("input entries are expected to be format compliant")
}
}
}
func TestCheckRowsFormatNotOK(t *testing.T) {
rows := []string{
"$'00",
"//&66",
"foo=[2]",
}
for i := range rows {
ok, err := checkRowFormat(rows[i])
if err != nil {
t.Error(err)
}
if ok {
t.Error("input entries should fail")
}
}
}
func TestCheckRowsFormatKO(t *testing.T) {
rows := []string{
"doo*1",
"wrong_record",
"baz 2",
}
for _, v := range rows {
ok, err := checkRowFormat(v)
if err != nil {
t.Error(err)
}
if ok {
t.Errorf("input entry %s is expected not to be format compliant", v)
}
}
}
func TestGetKO(t *testing.T) {
efo, err := New()
if err != nil {
t.Error(err)
}
_, err = efo.Get("NON_EXISTING")
if err == nil {
t.Error("Get method should return an error, because no existing key fetched")
}
}