-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathtest.js
More file actions
323 lines (275 loc) · 9.21 KB
/
Copy pathtest.js
File metadata and controls
323 lines (275 loc) · 9.21 KB
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
"use strict";
const assert = require("node:assert/strict");
const gulp = require("gulp");
const sinon = require("sinon");
const {
GetDistributionConfigCommand,
UpdateDistributionCommand,
} = require("@aws-sdk/client-cloudfront");
const cloudfront = require("./dist");
const createTool = require("./dist/tool");
function withStubbedFancyLog(stub) {
const fancyLogPath = require.resolve("fancy-log");
const cloudfrontPath = require.resolve("./dist");
const originalFancyLogModule = require.cache[fancyLogPath];
const originalCloudfrontModule = require.cache[cloudfrontPath];
require.cache[fancyLogPath] = {
...originalFancyLogModule,
exports: stub,
};
delete require.cache[cloudfrontPath];
try {
return require("./dist");
} finally {
if (originalFancyLogModule) {
require.cache[fancyLogPath] = originalFancyLogModule;
} else {
delete require.cache[fancyLogPath];
}
if (originalCloudfrontModule) {
require.cache[cloudfrontPath] = originalCloudfrontModule;
} else {
delete require.cache[cloudfrontPath];
}
}
}
function collectStream(stream) {
return new Promise((resolve, reject) => {
const files = [];
stream.on("data", function onData(file) {
files.push(file);
});
stream.on("error", reject);
stream.on("end", function onEnd() {
resolve(files);
});
});
}
function runFixturePipeline(globPath, options) {
return collectStream(
gulp
.src([`${globPath}/**/*.*`], { cwd: __dirname, nodir: true })
.pipe(cloudfront(options)),
);
}
function createDistributionConfig(overrides = {}) {
return {
DefaultRootObject: "index.old.html",
Comment: null,
Logging: {
Enabled: false,
Bucket: null,
Prefix: null,
},
Origins: {
Items: [
{
Id: "origin-1",
DomainName: "example.s3.amazonaws.com",
S3OriginConfig: {
OriginAccessIdentity: null,
},
},
],
},
...overrides,
};
}
describe("gulp-cloudfront", function () {
describe("plugin", function () {
it("identifies the default index pattern", async function () {
const updateDefaultRootObject = sinon.stub().resolves();
const files = await runFixturePipeline("test/fixtures/config1", {
tool: { updateDefaultRootObject },
});
assert.ok(files.length > 0);
sinon.assert.calledOnceWithExactly(
updateDefaultRootObject,
"/index.abcd1234.html",
);
});
it("identifies the default gzipped index pattern", async function () {
const updateDefaultRootObject = sinon.stub().resolves();
await runFixturePipeline("test/fixtures/gzip", {
tool: { updateDefaultRootObject },
});
sinon.assert.calledOnceWithExactly(
updateDefaultRootObject,
"/index.abcd1234.html",
);
});
it("identifies a custom index pattern", async function () {
const updateDefaultRootObject = sinon.stub().resolves();
await runFixturePipeline("test/fixtures/config1", {
patternIndex: /^\/custom\.[a-f0-9]{4}\.html$/i,
tool: { updateDefaultRootObject },
});
sinon.assert.calledOnceWithExactly(
updateDefaultRootObject,
"/custom.a1b2.html",
);
});
it("logs update errors and continues streaming files", async function () {
const updateDefaultRootObject = sinon.stub().rejects(new Error("boom"));
const logStub = sinon.stub();
const cloudfrontWithStubbedLog = withStubbedFancyLog(logStub);
const files = await collectStream(
gulp
.src(["test/fixtures/config1/**/*.*"], { cwd: __dirname, nodir: true })
.pipe(cloudfrontWithStubbedLog({ tool: { updateDefaultRootObject } })),
);
assert.ok(files.length > 0);
sinon.assert.calledOnce(updateDefaultRootObject);
sinon.assert.called(logStub);
});
});
describe("tool", function () {
it("requires a distribution id", function () {
assert.throws(
function expectThrow() {
createTool();
},
/options\.distributionId is required/,
);
});
it("requires explicit credentials to be complete", function () {
assert.throws(
function expectThrow() {
createTool({
distributionId: "DIST_ID",
accessKeyId: "access-key-only",
});
},
/must be provided together/,
);
});
it("skips the update when the default root object is unchanged", async function () {
const client = {
send: sinon.stub().resolves({
ETag: "etag-1",
DistributionConfig: createDistributionConfig({
DefaultRootObject: "index.abcd1234.html",
}),
}),
};
const tool = createTool({
distributionId: "DIST_ID",
client,
});
await tool.updateDefaultRootObject("/index.abcd1234.html");
sinon.assert.calledOnce(client.send);
assert.ok(
client.send.firstCall.args[0] instanceof GetDistributionConfigCommand,
);
assert.deepEqual(client.send.firstCall.args[0].input, { Id: "DIST_ID" });
});
it("updates the distribution config with a trimmed root object", async function () {
const client = {
send: sinon.stub(),
};
client.send.onFirstCall().resolves({
ETag: "etag-1",
DistributionConfig: createDistributionConfig(),
});
client.send.onSecondCall().resolves({});
const tool = createTool({
distributionId: "DIST_ID",
client,
});
await tool.updateDefaultRootObject("/index.abcd1234.html");
sinon.assert.calledTwice(client.send);
const getDistributionConfigCommand = client.send.firstCall.args[0];
const updateDistributionCommand = client.send.secondCall.args[0];
assert.ok(
getDistributionConfigCommand instanceof GetDistributionConfigCommand,
);
assert.deepEqual(getDistributionConfigCommand.input, { Id: "DIST_ID" });
assert.ok(updateDistributionCommand instanceof UpdateDistributionCommand);
assert.equal(updateDistributionCommand.input.Id, "DIST_ID");
assert.equal(updateDistributionCommand.input.IfMatch, "etag-1");
assert.equal(
updateDistributionCommand.input.DistributionConfig.DefaultRootObject,
"index.abcd1234.html",
);
assert.equal(
updateDistributionCommand.input.DistributionConfig.Comment,
"",
);
assert.equal(
updateDistributionCommand.input.DistributionConfig.Logging.Bucket,
"",
);
assert.equal(
updateDistributionCommand.input.DistributionConfig.Logging.Prefix,
"",
);
assert.equal(
updateDistributionCommand.input.DistributionConfig.Origins.Items[0]
.S3OriginConfig.OriginAccessIdentity,
"",
);
});
it("updates 403 and 404 error responses when pushstate is enabled", async function () {
const client = {
send: sinon.stub(),
};
client.send.onFirstCall().resolves({
ETag: "etag-1",
DistributionConfig: createDistributionConfig({
CustomErrorResponses: {
Quantity: 3,
Items: [
{ ErrorCode: 403, ResponsePagePath: "/errors/403.html" },
{ ErrorCode: 404, ResponsePagePath: "/errors/404.html" },
{ ErrorCode: 500, ResponsePagePath: "/errors/500.html" },
],
},
}),
});
client.send.onSecondCall().resolves({});
const tool = createTool({
distributionId: "DIST_ID",
pushstate: true,
client,
});
await tool.updateDefaultRootObject("/index.abcd1234.html");
const updateDistributionCommand = client.send.secondCall.args[0];
const errorResponses =
updateDistributionCommand.input.DistributionConfig.CustomErrorResponses
.Items;
assert.equal(errorResponses[0].ResponsePagePath, "/index.abcd1234.html");
assert.equal(errorResponses[1].ResponsePagePath, "/index.abcd1234.html");
assert.equal(errorResponses[2].ResponsePagePath, "/errors/500.html");
});
it("updates only configured error responses when pushstate is a custom list", async function () {
const client = {
send: sinon.stub(),
};
client.send.onFirstCall().resolves({
ETag: "etag-1",
DistributionConfig: createDistributionConfig({
CustomErrorResponses: {
Quantity: 2,
Items: [
{ ErrorCode: 403, ResponsePagePath: "/errors/403.html" },
{ ErrorCode: 404, ResponsePagePath: "/errors/404.html" },
],
},
}),
});
client.send.onSecondCall().resolves({});
const tool = createTool({
distributionId: "DIST_ID",
pushstate: [404],
client,
});
await tool.updateDefaultRootObject("/index.abcd1234.html");
const updateDistributionCommand = client.send.secondCall.args[0];
const errorResponses =
updateDistributionCommand.input.DistributionConfig.CustomErrorResponses
.Items;
assert.equal(errorResponses[0].ResponsePagePath, "/errors/403.html");
assert.equal(errorResponses[1].ResponsePagePath, "/index.abcd1234.html");
});
});
});