|
|
import { join } from 'path' |
|
|
import { createNext, FileRef } from 'e2e-utils' |
|
|
import { NextInstance } from 'e2e-utils' |
|
|
import { check, waitFor } from 'next-test-utils' |
|
|
import webdriver, { Playwright } from 'next-webdriver' |
|
|
|
|
|
import type { HistoryState } from 'next/dist/shared/lib/router/router' |
|
|
|
|
|
const emitPopsStateEvent = (browser: Playwright, state: HistoryState) => |
|
|
browser.eval( |
|
|
`window.dispatchEvent(new PopStateEvent("popstate", { state: ${JSON.stringify( |
|
|
state |
|
|
)} }))` |
|
|
) |
|
|
|
|
|
describe('Event with stale state - static route previously was dynamic', () => { |
|
|
let next: NextInstance |
|
|
|
|
|
beforeAll(async () => { |
|
|
next = await createNext({ |
|
|
files: { |
|
|
pages: new FileRef(join(__dirname, 'app/pages')), |
|
|
|
|
|
}, |
|
|
dependencies: {}, |
|
|
}) |
|
|
}) |
|
|
afterAll(() => next.destroy()) |
|
|
|
|
|
test('Ignore event without query param', async () => { |
|
|
const browser = await webdriver(next.url, '/static') |
|
|
|
|
|
const state: HistoryState = { |
|
|
url: '/[dynamic]?', |
|
|
as: '/static', |
|
|
options: {}, |
|
|
__N: true, |
|
|
key: '', |
|
|
} |
|
|
|
|
|
expect(await browser.elementByCss('#page-type').text()).toBe('static') |
|
|
|
|
|
|
|
|
await emitPopsStateEvent(browser, state) |
|
|
await waitFor(1000) |
|
|
expect(await browser.elementByCss('#page-type').text()).toBe('static') |
|
|
|
|
|
|
|
|
await emitPopsStateEvent(browser, state) |
|
|
await check(() => browser.elementByCss('#page-type').text(), 'dynamic') |
|
|
}) |
|
|
|
|
|
test('Ignore event with query param', async () => { |
|
|
const browser = await webdriver(next.url, '/static?param=1') |
|
|
|
|
|
const state: HistoryState = { |
|
|
url: '/[dynamic]?param=1', |
|
|
as: '/static?param=1', |
|
|
options: {}, |
|
|
__N: true, |
|
|
key: '', |
|
|
} |
|
|
|
|
|
expect(await browser.elementByCss('#page-type').text()).toBe('static') |
|
|
|
|
|
|
|
|
await emitPopsStateEvent(browser, state) |
|
|
await waitFor(1000) |
|
|
expect(await browser.elementByCss('#page-type').text()).toBe('static') |
|
|
|
|
|
|
|
|
await emitPopsStateEvent(browser, state) |
|
|
await check(() => browser.elementByCss('#page-type').text(), 'dynamic') |
|
|
}) |
|
|
}) |
|
|
|