Skip to content

Commit 5da8924

Browse files
authoredAug 25, 2021
Debug logging when caching Vary: headers (#2916)
* Debug logging for vary headers * Linting
1 parent 9e79454 commit 5da8924

File tree

2 files changed

+33
-2
lines changed

2 files changed

+33
-2
lines changed
 

‎packages/workbox-strategies/src/StrategyHandler.ts

+11
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,17 @@ class StrategyHandler {
319319
method: effectiveRequest.method,
320320
});
321321
}
322+
323+
// See https://github.com/GoogleChrome/workbox/issues/2818
324+
const vary = response.headers.get('Vary');
325+
if (vary) {
326+
logger.debug(
327+
`The response for ${getFriendlyURL(effectiveRequest.url)} ` +
328+
`has a 'Vary: ${vary}' header. ` +
329+
`Consider setting the {ignoreVary: true} option on your strategy ` +
330+
`to ensure cache matching and deletion works as expected.`,
331+
);
332+
}
322333
}
323334

324335
if (!response) {

‎test/workbox-strategies/sw/test-StrategyHandler.mjs

+22-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@
77
*/
88

99
import {Deferred} from 'workbox-core/_private/Deferred.mjs';
10-
import {timeout} from 'workbox-core/_private/timeout.mjs';
10+
import {logger} from 'workbox-core/_private/logger.mjs';
1111
import {registerQuotaErrorCallback} from 'workbox-core/registerQuotaErrorCallback.mjs';
1212
import {Strategy} from 'workbox-strategies/Strategy.mjs';
1313
import {StrategyHandler} from 'workbox-strategies/StrategyHandler.mjs';
14-
import {spyOnEvent, eventDoneWaiting} from '../../../infra/testing/helpers/extendable-event-utils.mjs';
14+
import {timeout} from 'workbox-core/_private/timeout.mjs';
1515

16+
import {spyOnEvent, eventDoneWaiting} from '../../../infra/testing/helpers/extendable-event-utils.mjs';
1617

1718
class TestStrategy extends Strategy {
1819
_handle() {
@@ -432,6 +433,25 @@ describe(`StrategyHandler`, function() {
432433
expect(cachePutStub.callCount).to.equal(0);
433434
});
434435

436+
it(`should log when caching a response with a Vary: header in dev mode`, async function() {
437+
if (process.env.NODE_ENV === 'production') {
438+
this.skip();
439+
}
440+
441+
const loggerSpy = sandbox.spy(logger, 'debug');
442+
443+
const request = new Request('/test/vary');
444+
const response = new Response('Vary response', {
445+
headers: {Vary: 'user-agent'},
446+
});
447+
448+
const handler = createStrategyHandler({cacheName: 'vary-test'});
449+
await handler.cachePut(request, response);
450+
451+
// Just a basic test for the logged string.
452+
expect(loggerSpy.firstCall.args[0]).to.include('ignoreVary');
453+
});
454+
435455
it(`should call cacheDidUpdate`, async function() {
436456
const firstPlugin = {
437457
cacheDidUpdate: () => {},

0 commit comments

Comments
 (0)
Please sign in to comment.