rsnext/test/e2e/next-head/index.test.ts
peter 3e5b0253e4
Fix document head with react 18 (#37443)
Fix custom head on getInitialProps works with React 18

## Bug

- [ ] Related issues linked using `fixes #number`
- [x] Integration tests added
- [ ] Errors have helpful link attached, see `contributing.md`

Co-authored-by: Jiachi Liu <4800338+huozhi@users.noreply.github.com>
2022-06-04 10:30:42 +00:00

70 lines
2 KiB
TypeScript

import { createNext, FileRef } from 'e2e-utils'
import { renderViaHTTP } from 'next-test-utils'
import cheerio from 'cheerio'
import webdriver from 'next-webdriver'
import { NextInstance } from 'test/lib/next-modes/base'
import { join } from 'path'
describe('should set-up next', () => {
let next: NextInstance
beforeAll(async () => {
next = await createNext({
files: {
pages: new FileRef(join(__dirname, 'app/pages')),
components: new FileRef(join(__dirname, 'app/components')),
},
})
})
afterAll(() => next.destroy())
it(`should place charset element at the top of <head>`, async () => {
const browser = await webdriver(next.url, '/')
const html = await browser.eval(() => {
const head = document.querySelector('head')
return head.innerHTML
})
expect(html).toContain(
`<meta charset="utf-8"><meta name="viewport" content="width=device-width"><meta name="test-head-1" content="hello">`
)
})
it('should have correct head tags in initial document', async () => {
const html = await renderViaHTTP(next.url, '/')
const $ = cheerio.load(html)
for (let i = 1; i < 5; i++) {
expect($(`meta[name="test-head-${i}"]`).attr()['content']).toBe('hello')
}
})
it('should have correct head tags from a fragment', async () => {
const html = await renderViaHTTP(next.url, '/')
const $ = cheerio.load(html)
expect($(`meta[name="test-in-fragment"]`).attr()['content']).toBe('hello')
})
it('should have correct head tags after hydration', async () => {
const browser = await webdriver(next.url, '/')
for (let i = 1; i < 5; i++) {
expect(
await browser
.elementByCss(`meta[name="test-head-${i}"]`)
.getAttribute('content')
).toBe('hello')
}
})
it('should have current head tags from a _document getInitialProps', async () => {
const html = await renderViaHTTP(next.url, '/')
const $ = cheerio.load(html)
expect($(`meta[name="test-head-initial-props"]`).attr()['content']).toBe(
'hello'
)
})
})