@@ -129,6 +129,8 @@ test.describe('next/image is using Netlify Image CDN', () => {
129
129
130
130
const nextImageResponse = await nextImageResponsePromise
131
131
expect ( nextImageResponse . request ( ) . url ( ) ) . toContain ( '_next/image?url=%2Fsquirrel.jpg' )
132
+
133
+ expect ( nextImageResponse . status ( ) ) . toBe ( 200 )
132
134
// ensure next/image is using Image CDN
133
135
// source image is jpg, but when requesting it through Image CDN avif will be returned
134
136
expect ( await nextImageResponse . headerValue ( 'content-type' ) ) . toEqual ( 'image/avif' )
@@ -152,8 +154,10 @@ test.describe('next/image is using Netlify Image CDN', () => {
152
154
) } `,
153
155
)
154
156
155
- await expect ( nextImageResponse ?. status ( ) ) . toBe ( 200 )
156
- await expect ( await nextImageResponse . headerValue ( 'content-type' ) ) . toEqual ( 'image/avif' )
157
+ expect ( nextImageResponse . status ( ) ) . toBe ( 200 )
158
+ expect ( await nextImageResponse . headerValue ( 'content-type' ) ) . toEqual ( 'image/avif' )
159
+
160
+ await expectImageWasLoaded ( page . locator ( 'img' ) )
157
161
} )
158
162
159
163
test ( 'Remote images: remote patterns #2 (just hostname starting with wildcard)' , async ( {
@@ -172,8 +176,10 @@ test.describe('next/image is using Netlify Image CDN', () => {
172
176
) } `,
173
177
)
174
178
175
- await expect ( nextImageResponse ?. status ( ) ) . toBe ( 200 )
176
- await expect ( await nextImageResponse . headerValue ( 'content-type' ) ) . toEqual ( 'image/avif' )
179
+ expect ( nextImageResponse . status ( ) ) . toBe ( 200 )
180
+ expect ( await nextImageResponse . headerValue ( 'content-type' ) ) . toEqual ( 'image/avif' )
181
+
182
+ await expectImageWasLoaded ( page . locator ( 'img' ) )
177
183
} )
178
184
179
185
test ( 'Remote images: domains' , async ( { page, simpleNextApp } ) => {
@@ -189,8 +195,30 @@ test.describe('next/image is using Netlify Image CDN', () => {
189
195
) } `,
190
196
)
191
197
192
- await expect ( nextImageResponse ?. status ( ) ) . toBe ( 200 )
193
- await expect ( await nextImageResponse . headerValue ( 'content-type' ) ) . toEqual ( 'image/avif' )
198
+ expect ( nextImageResponse ?. status ( ) ) . toBe ( 200 )
199
+ expect ( await nextImageResponse . headerValue ( 'content-type' ) ) . toEqual ( 'image/avif' )
200
+
201
+ await expectImageWasLoaded ( page . locator ( 'img' ) )
202
+ } )
203
+
204
+ test ( 'Handling of browser-cached Runtime v4 redirect' , async ( { page, simpleNextApp } ) => {
205
+ // Runtime v4 redirects for next/image are 301 and would be cached by browser
206
+ // So this test checks behavior when migrating from v4 to v5 for site visitors
207
+ // and ensure that images are still served through Image CDN
208
+ const nextImageResponsePromise = page . waitForResponse ( '**/_ipx/**' )
209
+
210
+ await page . goto ( `${ simpleNextApp . url } /image/migration-from-v4-runtime` )
211
+
212
+ const nextImageResponse = await nextImageResponsePromise
213
+ // ensure fixture is replicating runtime v4 redirect
214
+ expect ( nextImageResponse . request ( ) . url ( ) ) . toContain (
215
+ '_ipx/w_384,q_75/%2Fsquirrel.jpg?url=%2Fsquirrel.jpg&w=384&q=75' ,
216
+ )
217
+
218
+ expect ( nextImageResponse . status ( ) ) . toEqual ( 200 )
219
+ expect ( await nextImageResponse . headerValue ( 'content-type' ) ) . toEqual ( 'image/avif' )
220
+
221
+ await expectImageWasLoaded ( page . locator ( 'img' ) )
194
222
} )
195
223
} )
196
224
0 commit comments