1
1
import { load } from 'cheerio'
2
2
import { getLogger } from 'lambda-local'
3
+ import { gunzipSync } from 'node:zlib'
3
4
import { v4 } from 'uuid'
4
5
import { beforeEach , describe , expect , test , vi } from 'vitest'
5
6
import {
@@ -14,7 +15,6 @@ import {
14
15
getBlobEntries ,
15
16
startMockBlobStore ,
16
17
} from '../utils/helpers.js'
17
- import { gunzipSync } from 'node:zlib'
18
18
19
19
// Disable the verbose logging of the lambda-local runtime
20
20
getLogger ( ) . level = 'alert'
@@ -156,3 +156,21 @@ test<FixtureTestContext>('rewrites to external addresses dont use compression',
156
156
expect ( page . headers [ 'content-encoding' ] ) . toBe ( 'gzip' )
157
157
expect ( gunzipSync ( page . bodyBuffer ) . toString ( 'utf-8' ) ) . toContain ( '<title>Example Domain</title>' )
158
158
} )
159
+
160
+ test < FixtureTestContext > ( 'Test that a simple next app with PPR is working' , async ( ctx ) => {
161
+ await createFixture ( 'simple-next-app-ppr' , ctx )
162
+ await runPlugin ( ctx )
163
+ // check if the blob entries where successful set on the build plugin
164
+ const blobEntries = await getBlobEntries ( ctx )
165
+ expect ( blobEntries . map ( ( { key } ) => decodeBlobKey ( key ) ) . sort ( ) ) . toEqual ( [
166
+ '/404' ,
167
+ '/index' ,
168
+ '404.html' ,
169
+ '500.html' ,
170
+ ] )
171
+
172
+ // test the function call
173
+ const home = await invokeFunction ( ctx )
174
+ expect ( home . statusCode ) . toBe ( 200 )
175
+ expect ( load ( home . body ) ( 'h1' ) . text ( ) ) . toBe ( 'Home' )
176
+ } )
0 commit comments