forked from openfaas/faas-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_file_test.go
219 lines (183 loc) · 5.36 KB
/
config_file_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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
// Copyright (c) OpenFaaS Project 2017. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
package config
import (
"io/ioutil"
"os"
"regexp"
"strings"
"testing"
)
func Test_LookupAuthConfig_WithNoConfigFile(t *testing.T) {
DefaultDir, _ = ioutil.TempDir("", "faas-cli-file-test")
DefaultFile = "test1.yml"
_, _, err := LookupAuthConfig("http://openfaas.test1")
if err == nil {
t.Errorf("Error was not returned")
}
r := regexp.MustCompile(`(?m:config file not found)`)
if !r.MatchString(err.Error()) {
t.Errorf("Error not matched: %s", err.Error())
}
}
func Test_UpdateAuthConfig_Insert(t *testing.T) {
DefaultDir, _ = ioutil.TempDir("", "faas-cli-file-test")
DefaultFile = "test2.yml"
u := "admin"
p := "some pass"
gatewayURL := strings.TrimRight("http://openfaas.test/", "/")
UpdateAuthConfig(gatewayURL, u, p)
user, pass, err := LookupAuthConfig(gatewayURL)
if err != nil {
t.Errorf("got error %s", err.Error())
}
if user != u || pass != p {
t.Errorf("got user %s and pass %s, expected %s %s", user, pass, u, p)
}
}
func Test_UpdateAuthConfig_Update(t *testing.T) {
DefaultDir, _ = ioutil.TempDir("", "faas-cli-file-test")
DefaultFile = "test3.yml"
u := "admin"
p := "pass"
gatewayURL := strings.TrimRight("http://openfaas.test/", "/")
UpdateAuthConfig(gatewayURL, u, p)
user, pass, err := LookupAuthConfig(gatewayURL)
if err != nil {
t.Errorf("got error %s", err.Error())
}
if user != u || pass != p {
t.Errorf("got user %s and pass %s, expected %s %s", user, pass, u, p)
}
u = "admin2"
p = "pass2"
UpdateAuthConfig(gatewayURL, u, p)
user, pass, err = LookupAuthConfig(gatewayURL)
if err != nil {
t.Errorf("got error %s", err.Error())
}
if user != u || pass != p {
t.Errorf("got user %s and pass %s, expected %s %s", user, pass, u, p)
}
}
func Test_UpdateAuthConfig_InvaidGatewayURL(t *testing.T) {
gateway := "http//test.test"
err := UpdateAuthConfig(gateway, "a", "b")
if err == nil {
t.Errorf("Error was not returned")
}
r := regexp.MustCompile(`(?m:invalid gateway)`)
if !r.MatchString(err.Error()) {
t.Errorf("Error not matched: %s", err.Error())
}
}
func Test_UpdateAuthConfig_EmptyGatewayURL(t *testing.T) {
gateway := ""
err := UpdateAuthConfig(gateway, "a", "b")
if err == nil {
t.Errorf("Error was not returned")
}
r := regexp.MustCompile(`(?m:invalid gateway)`)
if !r.MatchString(err.Error()) {
t.Errorf("Error not matched: %s", err.Error())
}
}
func Test_UpdateAuthConfig_EmptyUsername(t *testing.T) {
err := UpdateAuthConfig("http://test.test", "", "b")
if err == nil {
t.Errorf("Error was not returned")
}
r := regexp.MustCompile(`(?m:username)`)
if !r.MatchString(err.Error()) {
t.Errorf("Error not matched: %s", err.Error())
}
}
func Test_UpdateAuthConfig_EmptyPassword(t *testing.T) {
err := UpdateAuthConfig("http://test.test", "a", "")
if err == nil {
t.Errorf("Error was not returned")
}
r := regexp.MustCompile(`(?m:password)`)
if !r.MatchString(err.Error()) {
t.Errorf("Error not matched: %s", err.Error())
}
}
func Test_New_NoFile(t *testing.T) {
_, err := New("")
if err == nil {
t.Error("expected to fail on empty file path")
}
}
func Test_EnsureFile(t *testing.T) {
DefaultDir, _ = ioutil.TempDir("", "faas-cli-file-test")
DefaultFile = "test6.yml"
cfg, err := EnsureFile()
if err != nil {
t.Error(err.Error())
}
if _, err := os.Stat(cfg); os.IsNotExist(err) {
t.Errorf("expected config at %s", cfg)
}
}
func Test_EncodeAuth(t *testing.T) {
token := EncodeAuth("admin", "admin")
if token != "YWRtaW46YWRtaW4=" {
t.Errorf("Token not matched: %s", token)
}
}
func Test_DecodeAuth(t *testing.T) {
u, p, err := DecodeAuth("YWRtaW46YWRtaW4=")
if err != nil || u != "admin" || p != "admin" {
t.Errorf("invalid base64 decoding")
}
}
func Test_RemoveAuthConfig(t *testing.T) {
DefaultDir, _ = ioutil.TempDir("", "faas-cli-file-test")
DefaultFile = "test7.yml"
u := "admin"
p := "pass"
gatewayURL := strings.TrimRight("http://openfaas.test/", "/")
UpdateAuthConfig(gatewayURL, u, p)
gatewayURL2 := strings.TrimRight("http://openfaas.test2/", "/")
UpdateAuthConfig(gatewayURL2, u, p)
err := RemoveAuthConfig(gatewayURL)
if err != nil {
t.Errorf("got error %s", err.Error())
}
_, _, err = LookupAuthConfig(gatewayURL)
if err == nil {
t.Fatal("Error was not returned")
}
r := regexp.MustCompile(`(?m:no auth config found)`)
if !r.MatchString(err.Error()) {
t.Errorf("Error not matched: %s", err.Error())
}
}
func Test_RemoveAuthConfig_WithNoConfigFile(t *testing.T) {
DefaultDir, _ = ioutil.TempDir("", "faas-cli-file-test")
DefaultFile = "test8.yml"
err := RemoveAuthConfig("http://openfaas.test1")
if err == nil {
t.Errorf("Error was not returned")
}
r := regexp.MustCompile(`(?m:config file not found)`)
if !r.MatchString(err.Error()) {
t.Errorf("Error not matched: %s", err.Error())
}
}
func Test_RemoveAuthConfig_WithUnknownGateway(t *testing.T) {
DefaultDir, _ = ioutil.TempDir("", "faas-cli-file-test")
DefaultFile = "test9.yml"
u := "admin"
p := "pass"
gatewayURL := strings.TrimRight("http://openfaas.test/", "/")
UpdateAuthConfig(gatewayURL, u, p)
err := RemoveAuthConfig("http://openfaas.test1")
if err == nil {
t.Errorf("Error was not returned")
}
r := regexp.MustCompile(`(?m:gateway)`)
if !r.MatchString(err.Error()) {
t.Errorf("Error not matched: %s", err.Error())
}
}