-
Notifications
You must be signed in to change notification settings - Fork 27k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
5ebc6d0
commit 1a3bed1
Showing
1 changed file
with
65 additions
and
0 deletions.
There are no files selected for viewing
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,65 @@ | ||
import { createNext } from 'e2e-utils' | ||
import { NextInstance } from 'test/lib/next-modes/base' | ||
import { renderViaHTTP } from 'next-test-utils' | ||
import cheerio from 'cheerio' | ||
|
||
describe('Dynamic Route Interpolation', () => { | ||
let next: NextInstance | ||
|
||
beforeAll(async () => { | ||
next = await createNext({ | ||
files: { | ||
'pages/blog/[slug].js': ` | ||
export function getServerSideProps({ params }) { | ||
return { props: { slug: params.slug } } | ||
} | ||
export default function Page(props) { | ||
return <p id="slug">{props.slug}</p> | ||
} | ||
`, | ||
|
||
'pages/api/dynamic/[slug].js': ` | ||
export default function Page(req, res) { | ||
const { slug } = req.query | ||
res.end('slug: ' + slug) | ||
} | ||
`, | ||
}, | ||
dependencies: {}, | ||
}) | ||
}) | ||
afterAll(() => next.destroy()) | ||
|
||
it('should work', async () => { | ||
const html = await renderViaHTTP(next.url, '/blog/a') | ||
const $ = cheerio.load(html) | ||
expect($('#slug').text()).toBe('a') | ||
}) | ||
|
||
it('should work with parameter itself', async () => { | ||
const html = await renderViaHTTP(next.url, '/blog/[slug]') | ||
const $ = cheerio.load(html) | ||
expect($('#slug').text()).toBe('[slug]') | ||
}) | ||
|
||
it('should work with brackets', async () => { | ||
const html = await renderViaHTTP(next.url, '/blog/[abc]') | ||
const $ = cheerio.load(html) | ||
expect($('#slug').text()).toBe('[abc]') | ||
}) | ||
|
||
it('should work with parameter itself in API routes', async () => { | ||
const html = await renderViaHTTP(next.url, '/api/dynamic/[slug]') | ||
const $ = cheerio.load(html) | ||
expect($('#slug').text()).toBe('[slug]') | ||
}) | ||
|
||
it('should work with brackets in API routes', async () => { | ||
const html = await renderViaHTTP(next.url, '/api/dynamic/[abc]') | ||
const $ = cheerio.load(html) | ||
expect($('#slug').text()).toBe('[abc]') | ||
}) | ||
}) |