|
| 1 | +/* eslint-disable id-length */ |
| 2 | +import type { NetlifyPluginOptions } from '@netlify/build' |
| 3 | +import type { NextConfigComplete } from 'next/dist/server/config-shared.js' |
| 4 | +import { beforeEach, describe, expect, test, vi, TestContext } from 'vitest' |
| 5 | + |
| 6 | +import { setImageConfig } from './image-cdn.js' |
| 7 | +import { PluginContext } from './plugin-context.js' |
| 8 | + |
| 9 | +type DeepPartial<T> = T extends object |
| 10 | + ? { |
| 11 | + [P in keyof T]?: DeepPartial<T[P]> |
| 12 | + } |
| 13 | + : T |
| 14 | + |
| 15 | +type ImageCDNTestContext = TestContext & { |
| 16 | + pluginContext: PluginContext |
| 17 | + mockNextConfig?: DeepPartial<NextConfigComplete> |
| 18 | +} |
| 19 | + |
| 20 | +describe('Image CDN', () => { |
| 21 | + beforeEach<ImageCDNTestContext>((ctx) => { |
| 22 | + ctx.mockNextConfig = undefined |
| 23 | + ctx.pluginContext = new PluginContext({ |
| 24 | + netlifyConfig: { |
| 25 | + redirects: [], |
| 26 | + }, |
| 27 | + } as unknown as NetlifyPluginOptions) |
| 28 | + vi.spyOn(ctx.pluginContext, 'getBuildConfig').mockImplementation(() => |
| 29 | + Promise.resolve((ctx.mockNextConfig ?? {}) as NextConfigComplete), |
| 30 | + ) |
| 31 | + }) |
| 32 | + |
| 33 | + test<ImageCDNTestContext>('adds redirect to Netlify Image CDN when default image loader is used', async (ctx) => { |
| 34 | + ctx.mockNextConfig = { |
| 35 | + images: { |
| 36 | + path: '/_next/image', |
| 37 | + loader: 'default', |
| 38 | + }, |
| 39 | + } |
| 40 | + |
| 41 | + await setImageConfig(ctx.pluginContext) |
| 42 | + |
| 43 | + expect(ctx.pluginContext.netlifyConfig.redirects).toEqual( |
| 44 | + expect.arrayContaining([ |
| 45 | + { |
| 46 | + from: '/_next/image', |
| 47 | + query: { |
| 48 | + q: ':quality', |
| 49 | + url: ':url', |
| 50 | + w: ':width', |
| 51 | + }, |
| 52 | + to: '/.netlify/images?url=:url&w=:width&q=:quality', |
| 53 | + status: 200, |
| 54 | + }, |
| 55 | + ]), |
| 56 | + ) |
| 57 | + }) |
| 58 | + |
| 59 | + test<ImageCDNTestContext>('does not add redirect to Netlify Image CDN when non-default loader is used', async (ctx) => { |
| 60 | + ctx.mockNextConfig = { |
| 61 | + images: { |
| 62 | + path: '/_next/image', |
| 63 | + loader: 'custom', |
| 64 | + loaderFile: './custom-loader.js', |
| 65 | + }, |
| 66 | + } |
| 67 | + |
| 68 | + await setImageConfig(ctx.pluginContext) |
| 69 | + |
| 70 | + expect(ctx.pluginContext.netlifyConfig.redirects).not.toEqual( |
| 71 | + expect.arrayContaining([ |
| 72 | + { |
| 73 | + from: '/_next/image', |
| 74 | + query: { |
| 75 | + q: ':quality', |
| 76 | + url: ':url', |
| 77 | + w: ':width', |
| 78 | + }, |
| 79 | + to: '/.netlify/images?url=:url&w=:width&q=:quality', |
| 80 | + status: 200, |
| 81 | + }, |
| 82 | + ]), |
| 83 | + ) |
| 84 | + }) |
| 85 | + |
| 86 | + test<ImageCDNTestContext>('handles custom images.path', async (ctx) => { |
| 87 | + ctx.mockNextConfig = { |
| 88 | + images: { |
| 89 | + // Next.js automatically adds basePath to images.path (when user does not set custom `images.path` in their config) |
| 90 | + // if user sets custom `images.path` - it will be used as-is (so user need to cover their basePath by themselves |
| 91 | + // if they want to have it in their custom image endpoint |
| 92 | + // see https://github.com/vercel/next.js/blob/bb105ef4fbfed9d96a93794eeaed956eda2116d8/packages/next/src/server/config.ts#L426-L432) |
| 93 | + // either way `images.path` we get is final config with everything combined so we want to use it as-is |
| 94 | + path: '/base/path/_custom/image/endpoint', |
| 95 | + loader: 'default', |
| 96 | + }, |
| 97 | + } |
| 98 | + |
| 99 | + await setImageConfig(ctx.pluginContext) |
| 100 | + |
| 101 | + expect(ctx.pluginContext.netlifyConfig.redirects).toEqual( |
| 102 | + expect.arrayContaining([ |
| 103 | + { |
| 104 | + from: '/base/path/_custom/image/endpoint', |
| 105 | + query: { |
| 106 | + q: ':quality', |
| 107 | + url: ':url', |
| 108 | + w: ':width', |
| 109 | + }, |
| 110 | + to: '/.netlify/images?url=:url&w=:width&q=:quality', |
| 111 | + status: 200, |
| 112 | + }, |
| 113 | + ]), |
| 114 | + ) |
| 115 | + }) |
| 116 | +}) |
| 117 | +/* eslint-enable id-length */ |
0 commit comments