-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.test.js
224 lines (203 loc) · 6.14 KB
/
index.test.js
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
const assert = require('assert');
const rewire = require('rewire');
describe('@someimportantcompany/github-actions-aws-s3-env', () => {
const action = rewire('./index');
const mockCore = ({
inputs = {},
outputs = {},
variables = {},
secrets = [],
stdout = [],
} = {}) => ({
getInput: key => inputs[key] ?? '',
getOutput: key => outputs[key] ?? null,
setOutput: (key, value) => outputs[key] = value,
getFailed: () => outputs.failed ?? null,
setFailed: value => outputs.failed = value,
exportVariable: (key, value) => variables[key] = value,
setSecret: value => secrets.push(value),
debug: value => stdout.push(value),
info: value => stdout.push(value),
getStdout: () => stdout ?? [],
});
it('should fetch an env file from S3', async () => {
const core = {
inputs: {
from: 's3://someimportantcompany.github.io/github-actions-aws-s3-env/example.env',
},
outputs: {},
variables: {},
secrets: [],
stdout: [],
};
await action.__with__({ core: mockCore(core) })(() => action());
assert.deepStrictEqual(core, {
inputs: {
from: 's3://someimportantcompany.github.io/github-actions-aws-s3-env/example.env',
},
outputs: {},
variables: {
HELLO: 'world',
HTTP_HOST: '0.0.0.0',
},
secrets: [],
stdout: [
'Fetching env file from s3://someimportantcompany.github.io/github-actions-aws-s3-env/example.env',
{ HELLO: 'world', HTTP_HOST: '0.0.0.0' },
'export HELLO=world',
'export HTTP_HOST=0.0.0.0',
],
});
});
it('should fetch an env file from S3 with a prefix', async () => {
const core = {
inputs: {
from: 's3://someimportantcompany.github.io/github-actions-aws-s3-env/example.env',
prefix: 'FOO_',
},
outputs: {},
variables: {},
secrets: [],
stdout: [],
};
await action.__with__({ core: mockCore(core) })(() => action());
assert.deepStrictEqual(core, {
inputs: {
from: 's3://someimportantcompany.github.io/github-actions-aws-s3-env/example.env',
prefix: 'FOO_',
},
outputs: {},
variables: {
FOO_HELLO: 'world',
FOO_HTTP_HOST: '0.0.0.0',
},
secrets: [],
stdout: [
'Fetching env file from s3://someimportantcompany.github.io/github-actions-aws-s3-env/example.env',
{ HELLO: 'world', HTTP_HOST: '0.0.0.0' },
'export FOO_HELLO=world',
'export FOO_HTTP_HOST=0.0.0.0',
],
});
});
it('should fetch an env file from S3, masking the values', async () => {
const core = {
inputs: {
from: 's3://someimportantcompany.github.io/github-actions-aws-s3-env/example.env',
masked: true,
},
outputs: {},
variables: {},
secrets: [],
stdout: [],
};
await action.__with__({ core: mockCore(core) })(() => action());
assert.deepStrictEqual(core, {
inputs: {
from: 's3://someimportantcompany.github.io/github-actions-aws-s3-env/example.env',
masked: true,
},
outputs: {},
variables: {
HELLO: 'world',
HTTP_HOST: '0.0.0.0',
},
secrets: [
'world',
'0.0.0.0',
],
stdout: [
'Fetching env file from s3://someimportantcompany.github.io/github-actions-aws-s3-env/example.env',
{ HELLO: 'world', HTTP_HOST: '0.0.0.0' },
'export HELLO=world',
'export HTTP_HOST=0.0.0.0',
],
});
});
it('should fetch an env file from S3 & write to outputs instead of env', async () => {
const core = {
inputs: {
from: 's3://someimportantcompany.github.io/github-actions-aws-s3-env/example.env',
'export-env': false,
'export-outputs': true,
},
outputs: {},
variables: {},
secrets: [],
stdout: [],
};
await action.__with__({ core: mockCore(core) })(() => action());
assert.deepStrictEqual(core, {
inputs: {
from: 's3://someimportantcompany.github.io/github-actions-aws-s3-env/example.env',
'export-env': false,
'export-outputs': true,
},
outputs: {
'env.HELLO': 'world',
'env.HTTP_HOST': '0.0.0.0',
list: (a => a.join('\n'))([
'HELLO=world',
'HTTP_HOST=0.0.0.0',
]),
},
variables: {},
secrets: [],
stdout: [
'Fetching env file from s3://someimportantcompany.github.io/github-actions-aws-s3-env/example.env',
{ HELLO: 'world', HTTP_HOST: '0.0.0.0' },
],
});
});
it('should fetch an env file from S3 & write nothing', async () => {
const core = {
inputs: {
from: 's3://someimportantcompany.github.io/github-actions-aws-s3-env/example.env',
'export-env': false,
'export-outputs': false,
},
outputs: {},
variables: {},
secrets: [],
stdout: [],
};
await action.__with__({ core: mockCore(core) })(() => action());
assert.deepStrictEqual(core, {
inputs: {
from: 's3://someimportantcompany.github.io/github-actions-aws-s3-env/example.env',
'export-env': false,
'export-outputs': false,
},
outputs: {},
variables: {},
secrets: [],
stdout: [
'Fetching env file from s3://someimportantcompany.github.io/github-actions-aws-s3-env/example.env',
{ HELLO: 'world', HTTP_HOST: '0.0.0.0' },
],
});
});
it('should fail if from is not a string starting with s3://', async () => {
const core = {
inputs: {
from: 'https://s3.amazonaws.com/someimportantcompany.github.io/github-actions-aws-s3-env/example.env',
},
outputs: {},
variables: {},
secrets: [],
stdout: [],
};
await action.__with__({ core: mockCore(core) })(() => action());
assert.deepStrictEqual(core, {
inputs: {
from: 'https://s3.amazonaws.com/someimportantcompany.github.io/github-actions-aws-s3-env/example.env',
},
outputs: {
failed: 'Expected from string to start with s3://',
},
variables: {},
secrets: [],
stdout: [],
});
});
});