-
Notifications
You must be signed in to change notification settings - Fork 26
/
main_test.go
250 lines (203 loc) · 5.94 KB
/
main_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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
package main
import (
"io/ioutil"
"os"
"reflect"
"testing"
"github.com/stretchr/testify/assert"
)
func TestEnvInput(t *testing.T) {
// Ideally we wouldn't be messing with the overall test environment
// But I don't see a way to have a go subprocess with its own env
// test ENV Vars
os.Setenv("SECRET_VALUE", "abc123")
// Good parameters
os.Setenv("DRONE_WORKSPACE", "/dev/null")
os.Setenv("PLUGIN_AE_ENVIRONMENT", `{"key1":"value1", "key2":"value2"}`)
os.Setenv("PLUGIN_VARS", `{"key1":"$SECRET_VALUE", "key2":"value2"}`)
os.Setenv("PLUGIN_SUB_COMMANDS", "do,this,now,please")
os.Setenv("PLUGIN_GAE_CREDENTIALS", "{}")
// Bad parameter
os.Setenv("PLUGIN_ADDL_ARGS", "stringthatshouldbejson")
vargs := GAE{}
workspace := ""
err := configFromEnv(&vargs, &workspace)
assert.EqualError(t, err, "could not parse param addl_args into a map[string]string")
// Fix the bad param
os.Setenv("PLUGIN_ADDL_ARGS", "")
vargs = GAE{}
workspace = ""
err = configFromEnv(&vargs, &workspace)
assert.Equal(t, "/dev/null", workspace)
assert.Equal(t, "{}", vargs.Token)
desiredAEEnv := map[string]string{"key1": "value1", "key2": "value2"}
assert.True(t, reflect.DeepEqual(vargs.AEEnv, desiredAEEnv))
desiredTemplateVars := map[string]interface{}{"key1": "abc123", "key2": "value2"}
assert.True(t, reflect.DeepEqual(vargs.TemplateVars, desiredTemplateVars))
desiredSubCommands := []string{"do", "this", "now", "please"}
assert.True(t, reflect.DeepEqual(vargs.SubCommands, desiredSubCommands))
// Test unset variable
assert.Equal(t, vargs.Version, "")
}
func TestValidateVargs(t *testing.T) {
vargs := GAE{
Token: "mytoken",
Project: "myproject",
Action: "dostuff",
}
assert.NoError(t, validateVargs(&vargs))
vargs = GAE{
Project: "myproject",
Action: "dostuff",
}
assert.EqualError(t, validateVargs(&vargs), "missing required credentials: GAE_CREDENTIALS or param token")
vargs = GAE{
Token: "mytoken",
Project: "myproject",
}
assert.EqualError(t, validateVargs(&vargs), "missing required param: action")
vargs = GAE{
Token: "brokentoken",
Action: "dostuff",
}
assert.EqualError(t, validateVargs(&vargs), "missing required project id: not found in credentials or param project")
vargs = GAE{
Token: `{"project_id": "my-gcp-project"}`,
Action: "dostuff",
}
assert.NoError(t, validateVargs(&vargs))
vargs = GAE{
Token: `{"project_id": "my-gcp-project"}`,
Project: "my-other-project",
Action: "dostuff",
}
assert.NoError(t, validateVargs(&vargs))
// Project field overrides token
assert.Equal(t, "my-other-project", vargs.Project)
// sanitize version with trim
vargs = GAE{
Token: "mytoken",
Project: "myproject",
Action: "dostuff",
Version: "feature/PRJ-test.branch/name-thatisreal23really@#$%&*longandgetstrimmed",
}
assert.NoError(t, validateVargs(&vargs))
assert.Equal(t, "feature-prj-test-branch-name-thatisreal23really------longandget", vargs.Version)
// sanitize version short string
vargs = GAE{
Token: "mytoken",
Project: "myproject",
Action: "dostuff",
Version: "feature/PRJ-test123",
}
assert.NoError(t, validateVargs(&vargs))
assert.Equal(t, "feature-prj-test123", vargs.Version)
// sanitize version short string
vargs = GAE{
Token: "mytoken",
Project: "myproject",
Action: "dostuff",
Service: "myservice",
Version: "version1",
}
assert.NoError(t, validateVargs(&vargs))
assert.Equal(t, "version1", vargs.Version)
assert.Equal(t, "myservice", vargs.Service)
}
func TestSetupFile(t *testing.T) {
tests := []struct {
name string
givenContents string
givenVars map[string]interface{}
wantError bool
wantOutput string
}{
{
name: "happy path",
givenContents: `app:
yes: {{ .Yes }}`,
givenVars: map[string]interface{}{
"Yes": true,
},
wantError: false,
wantOutput: `app:
yes: true`,
},
{
name: "vars but no references in template",
givenContents: `app:
yes: true`,
givenVars: map[string]interface{}{
"Yes": true,
},
wantError: false,
wantOutput: `app:
yes: true`,
},
{
name: "no vars but references in template",
givenContents: `app:
yes: {{ .Yes }}`,
givenVars: map[string]interface{}{},
wantError: true,
},
{
name: "vars but references wrong in template",
givenContents: `app:
yes: {{ .Yes }}`,
givenVars: map[string]interface{}{
"No": "no",
},
wantError: true,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
tf, err := ioutil.TempFile(".", "test-setup")
if err != nil {
t.Fatalf("unable to create temp file: %s", err)
}
defer os.Remove(tf.Name())
_, err = tf.Write([]byte(test.givenContents))
if err != nil {
t.Fatalf("unable to write to temp file: %s", err)
}
err = tf.Close()
if err != nil {
t.Fatalf("unable to close temp file: %s", err)
}
// run test, only testing templating. we know file rename works
gotErr := setupFile("", GAE{TemplateVars: test.givenVars}, tf.Name(), tf.Name())
gotOutput, err := ioutil.ReadFile(tf.Name())
if err != nil {
t.Fatalf("unable to read temp file: %s", err)
}
if test.wantError && gotErr == nil {
t.Error("expected error but got none")
}
// no need to check payload
if test.wantError {
return
}
if !test.wantError && gotErr != nil {
t.Errorf("expected not error but one: %s", gotErr)
}
if string(gotOutput) != test.wantOutput {
t.Errorf("expected file contents:\n%q\n\ngot:\n\n%q",
test.wantOutput, string(gotOutput))
}
})
}
}
func TestEncodedToken(t *testing.T) {
os.Setenv("PLUGIN_GAE_CREDENTIALS", "ZW5jb2RlZCBzZXJ2aWNlIGFjY291bnQga2V5")
vargs := GAE{}
workspace := ""
configFromEnv(&vargs, &workspace)
expectedDecodedToken := "encoded service account key"
assert.Equal(t, expectedDecodedToken, vargs.Token)
nonEncodedToken := "non-encoded service account key"
os.Setenv("PLUGIN_GAE_CREDENTIALS", nonEncodedToken)
configFromEnv(&vargs, &workspace)
assert.Equal(t, nonEncodedToken, vargs.Token)
}