-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.test.js
197 lines (169 loc) · 4.23 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
const sleep = require('util').promisify(setTimeout);
const middy = require('@middy/core');
const middyv1 = require('@middy/core-v1');
const env = require('./');
describe('Env Middleware', () => {
test('it throws when an env var is missing if no fallback is provided', async () => {
const handler = middy(
(_, __, callback) => callback(),
)
.use(
env({
names: {
test: 'TEST1',
},
}),
);
await expect(handler({}, {})).rejects.toEqual(new ReferenceError('Environment variable TEST1 is missing'));
});
test('it passes the enviroment variable values into context by default', async () => {
expect.assertions(1);
process.env.TEST2 = 'testvalue';
const handler = middy(
(_, context) => {
expect(context).toHaveProperty('test', 'testvalue');
},
)
.use(
env({
names: {
test: 'TEST2',
},
}),
);
await handler({}, {});
});
test('it passes the enviroment variable values into process.env when setToContext is false', async () => {
expect.assertions(1);
process.env.TEST3 = 'testvalue';
const handler = middy(
() => {
expect(process.env).toHaveProperty('test', 'testvalue');
},
)
.use(
env({
names: {
test: 'TEST3',
},
setToContext: false,
}),
);
await handler({}, {});
});
test('it does not throw when a falsy non undefined envionment value is provided', async () => {
expect.assertions(1);
process.env.TEST4 = '';
const handler = middy(
(_, context) => {
expect(context).toHaveProperty('test', '');
},
)
.use(
env({
names: {
test: 'TEST4',
},
}),
);
await handler({}, {});
});
test('it type casts the environment variable value', async () => {
expect.assertions(1);
process.env.TEST5 = '123';
const handler = middy(
(_, context) => {
expect(context).toHaveProperty('test', 123);
},
)
.use(
env({
names: {
test: ['TEST5', 'int'],
},
}),
);
await handler({}, {});
});
test('it uses the fallback value when no environment variable value is found', async () => {
expect.assertions(1);
const handler = middy(
(_, context) => {
expect(context).toHaveProperty('test', 'fallback');
},
)
.use(
env({
names: {
test: ['TEST6', 'string', 'fallback'],
},
}),
);
await handler({}, {});
});
test('it caches the environment variable values when cache is set to true', async () => {
expect.assertions(2);
process.env.TEST7 = 'oldvalue';
const handler = middy(
(_, context) => {
process.env.TEST7 = 'newvalue';
expect(context).toHaveProperty('test', 'oldvalue');
},
)
.use(
env({
names: {
test: 'TEST7',
},
cache: true,
}),
);
await handler({}, {});
await handler({}, {});
});
test('it gets the environment variable values again when the cache has expired', async () => {
expect.assertions(1);
let executionCount = 0;
process.env.TEST8 = 'oldvalue';
const handler = middy(
(_, context) => {
process.env.TEST8 = 'newvalue';
executionCount += 1;
if (executionCount === 2) {
expect(context).toHaveProperty('test', 'newvalue');
}
},
)
.use(
env({
names: {
test: 'TEST8',
},
cacheExpiryInMillis: 1,
cache: true,
}),
);
await handler({}, {});
// Let the cache expire
await sleep(2);
await handler({}, {});
});
test('it is backwards compatible with middy v1', async () => {
expect.assertions(1);
process.env.TEST2 = 'testvalue';
const handler = middyv1(
(_, context, next) => {
expect(context).toHaveProperty('test', 'testvalue');
next();
},
)
.use(
env({
names: {
test: 'TEST2',
},
}),
);
await handler({}, {});
});
});