| | import { createNext } from 'e2e-utils' |
| | import { NextInstance } from 'e2e-utils' |
| | import { fetchViaHTTP, renderViaHTTP } from 'next-test-utils' |
| | import path from 'path' |
| | import fs from 'fs-extra' |
| |
|
| | const locales = ['', '/en', '/sv', '/nl'] |
| |
|
| | describe('i18n-ignore-rewrite-source-locale', () => { |
| | let next: NextInstance |
| |
|
| | beforeAll(async () => { |
| | next = await createNext({ |
| | files: { |
| | 'pages/api/hello.js': ` |
| | export default function handler(req, res) { |
| | res.send('hello from api') |
| | }`, |
| | 'public/file.txt': 'hello from file.txt', |
| | }, |
| | dependencies: {}, |
| | nextConfig: { |
| | i18n: { |
| | locales: ['en', 'sv', 'nl'], |
| | defaultLocale: 'en', |
| | }, |
| | async rewrites() { |
| | return { |
| | beforeFiles: [ |
| | { |
| | source: '/:locale/rewrite-files/:path*', |
| | destination: '/:path*', |
| | locale: false, |
| | }, |
| | { |
| | source: '/:locale/rewrite-api/:path*', |
| | destination: '/api/:path*', |
| | locale: false, |
| | }, |
| | ], |
| | afterFiles: [], |
| | fallback: [], |
| | } |
| | }, |
| | }, |
| | }) |
| | }) |
| | afterAll(() => next.destroy()) |
| |
|
| | test.each(locales)( |
| | 'get public file by skipping locale in rewrite, locale: %s', |
| | async (locale) => { |
| | const res = await renderViaHTTP( |
| | next.url, |
| | `${locale}/rewrite-files/file.txt` |
| | ) |
| | expect(res).toContain('hello from file.txt') |
| | } |
| | ) |
| |
|
| | test.each(locales)( |
| | 'call api by skipping locale in rewrite, locale: %s', |
| | async (locale) => { |
| | const res = await renderViaHTTP(next.url, `${locale}/rewrite-api/hello`) |
| | expect(res).toContain('hello from api') |
| | } |
| | ) |
| |
|
| | |
| | if (!(global as any).isNextDeploy) { |
| | |
| | ;(process.env.IS_TURBOPACK_TEST ? it.skip.each : it.each)(locales)( |
| | 'get _next/static/ files by skipping locale in rewrite, locale: %s', |
| | async (locale) => { |
| | const chunks = ( |
| | await fs.readdir(path.join(next.testDir, '.next', 'static', 'chunks')) |
| | ).filter((f) => f.endsWith('.js')) |
| |
|
| | await Promise.all( |
| | chunks.map(async (file) => { |
| | const res = await fetchViaHTTP( |
| | next.url, |
| | `${locale}/rewrite-files/_next/static/chunks/${file}` |
| | ) |
| | |
| | expect(res.status).toBe(200) |
| | }) |
| | ) |
| | } |
| | ) |
| | } |
| | }) |
| |
|