-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(e2e): Add tests for Next.js edge routes
- Loading branch information
Showing
3 changed files
with
77 additions
and
2 deletions.
There are no files selected for viewing
18 changes: 16 additions & 2 deletions
18
packages/e2e-tests/test-applications/nextjs-app-dir/pages/api/edge-endpoint.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
export const config = { runtime: 'edge' }; | ||
export const config = { | ||
runtime: 'edge', | ||
}; | ||
|
||
export default () => new Response('Hello world!'); | ||
export default async function handler() { | ||
return new Response( | ||
JSON.stringify({ | ||
name: 'Jim Halpert', | ||
}), | ||
{ | ||
status: 200, | ||
headers: { | ||
'content-type': 'application/json', | ||
}, | ||
}, | ||
); | ||
} |
5 changes: 5 additions & 0 deletions
5
packages/e2e-tests/test-applications/nextjs-app-dir/pages/api/error-edge-endpoint.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export const config = { runtime: 'edge' }; | ||
|
||
export default () => { | ||
throw new Error('Edge Route Error'); | ||
}; |
56 changes: 56 additions & 0 deletions
56
packages/e2e-tests/test-applications/nextjs-app-dir/tests/edge-route.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
import { test, expect } from '@playwright/test'; | ||
import { waitForTransaction, waitForError } from '../../../test-utils/event-proxy-server'; | ||
|
||
test('Should create a transaction for edge routes', async ({ request }) => { | ||
// test.skip(process.env.TEST_ENV === 'development', "Doesn't work in dev mode."); | ||
|
||
const edgerouteTransactionPromise = waitForTransaction('nextjs-13-app-dir', async transactionEvent => { | ||
return ( | ||
transactionEvent?.transaction === 'GET /api/edge-endpoint' && transactionEvent?.contexts?.trace?.status === 'ok' | ||
); | ||
}); | ||
|
||
const response = await request.get('/api/edge-endpoint'); | ||
expect(await response.json()).toStrictEqual({ name: 'Jim Halpert' }); | ||
|
||
const edgerouteTransaction = await edgerouteTransactionPromise; | ||
|
||
expect(edgerouteTransaction.contexts?.trace?.status).toBe('ok'); | ||
expect(edgerouteTransaction.contexts?.trace?.op).toBe('http.server'); | ||
expect(edgerouteTransaction.contexts?.runtime?.name).toBe('edge'); | ||
}); | ||
|
||
test('Should create a transaction with error status for faulty edge routes', async ({ request }) => { | ||
// test.skip(process.env.TEST_ENV === 'development', "Doesn't work in dev mode."); | ||
|
||
const edgerouteTransactionPromise = waitForTransaction('nextjs-13-app-dir', async transactionEvent => { | ||
return ( | ||
transactionEvent?.transaction === 'GET /api/error-edge-endpoint' && | ||
transactionEvent?.contexts?.trace?.status === 'internal_error' | ||
); | ||
}); | ||
|
||
request.get('/api/error-edge-endpoint').catch(() => { | ||
// Noop | ||
}); | ||
|
||
const edgerouteTransaction = await edgerouteTransactionPromise; | ||
|
||
expect(edgerouteTransaction.contexts?.trace?.status).toBe('internal_error'); | ||
expect(edgerouteTransaction.contexts?.trace?.op).toBe('http.server'); | ||
expect(edgerouteTransaction.contexts?.runtime?.name).toBe('edge'); | ||
}); | ||
|
||
test('Should record exceptions for faulty edge routes', async ({ request }) => { | ||
// test.skip(process.env.TEST_ENV === 'development', "Doesn't work in dev mode."); | ||
|
||
const errorEventPromise = waitForError('nextjs-13-app-dir', errorEvent => { | ||
return errorEvent?.exception?.values?.[0]?.value === 'Edge Route Error'; | ||
}); | ||
|
||
request.get('/api/error-edge-endpoint').catch(() => { | ||
// Noop | ||
}); | ||
|
||
expect(await errorEventPromise).toBeDefined(); | ||
}); |