|
7 | 7 | */
|
8 | 8 |
|
9 | 9 | 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'; |
11 | 11 | import {registerQuotaErrorCallback} from 'workbox-core/registerQuotaErrorCallback.mjs';
|
12 | 12 | import {Strategy} from 'workbox-strategies/Strategy.mjs';
|
13 | 13 | 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'; |
15 | 15 |
|
| 16 | +import {spyOnEvent, eventDoneWaiting} from '../../../infra/testing/helpers/extendable-event-utils.mjs'; |
16 | 17 |
|
17 | 18 | class TestStrategy extends Strategy {
|
18 | 19 | _handle() {
|
@@ -432,6 +433,25 @@ describe(`StrategyHandler`, function() {
|
432 | 433 | expect(cachePutStub.callCount).to.equal(0);
|
433 | 434 | });
|
434 | 435 |
|
| 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 | + |
435 | 455 | it(`should call cacheDidUpdate`, async function() {
|
436 | 456 | const firstPlugin = {
|
437 | 457 | cacheDidUpdate: () => {},
|
|
0 commit comments