Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { nextTestSetup } from 'e2e-utils'
import { retry } from 'next-test-utils'
describe('server-components-hmr-cache', () => {
const { next } = nextTestSetup({ files: __dirname, patchFileDelay: 1000 })
const loggedAfterValueRegexp = /After: (\d\.\d+)/
let cliOutputLength: number
const getLoggedAfterValue = () => {
const match = next.cliOutput
.slice(cliOutputLength)
.match(loggedAfterValueRegexp)
if (!match) {
throw new Error('No logs from after() found')
}
return match[1]
}
describe.each(['edge', 'node'])('%s runtime', (runtime) => {
it('should use cached fetch calls for fast refresh requests', async () => {
const browser = await next.browser(`/${runtime}`)
const valueBeforePatch = await browser.elementById('value').text()
await next.patchFile(
'components/shared-page.tsx',
(content) => content.replace('foo', 'bar'),
async () => {
await retry(async () => {
const updatedContent = await browser.elementById('content').text()
expect(updatedContent).toBe('bar')
// TODO: remove custom duration in case we increase the default.
}, 5000)
const valueAfterPatch = await browser.elementById('value').text()
expect(valueBeforePatch).toEqual(valueAfterPatch)
}
)
})
it('should not use cached fetch calls for intentional refresh requests', async () => {
const browser = await next.browser(`/${runtime}`)
const valueBeforeRefresh = await browser.elementById('value').text()
await browser.elementByCss(`button`).click().waitForIdleNetwork()
await retry(async () => {
const valueAfterRefresh = await browser.elementById('value').text()
expect(valueBeforeRefresh).not.toEqual(valueAfterRefresh)
// TODO: remove custom duration in case we increase the default.
}, 5000)
})
describe('in after()', () => {
beforeEach(() => {
cliOutputLength = next.cliOutput.length
})
it('should use cached fetch calls for fast refresh requests', async () => {
const browser = await next.browser(`/${runtime}`)
const valueBeforePatch = getLoggedAfterValue()
cliOutputLength = next.cliOutput.length
await next.patchFile(
'components/shared-page.tsx',
(content) => content.replace('foo', 'bar'),
async () => {
await retry(async () => {
const updatedContent = await browser.elementById('content').text()
expect(updatedContent).toBe('bar')
// TODO: remove custom duration in case we increase the default.
}, 5000)
const valueAfterPatch = getLoggedAfterValue()
expect(valueBeforePatch).toEqual(valueAfterPatch)
}
)
})
it('should not use cached fetch calls for intentional refresh requests', async () => {
const browser = await next.browser(`/${runtime}`)
const valueBeforeRefresh = await retry(() => getLoggedAfterValue())
cliOutputLength = next.cliOutput.length
await browser.elementByCss(`button`).click().waitForIdleNetwork()
await retry(async () => {
const valueAfterRefresh = getLoggedAfterValue()
expect(valueBeforeRefresh).not.toEqual(valueAfterRefresh)
// TODO: remove custom duration in case we increase the default.
}, 5000)
})
})
describe('with experimental.serverComponentsHmrCache disabled', () => {
beforeAll(async () => {
await next.patchFile('next.config.js', (content) =>
content.replace(
'// serverComponentsHmrCache: false,',
'serverComponentsHmrCache: false,'
)
)
})
afterAll(async () => {
await next.patchFile('next.config.js', (content) =>
content.replace(
'serverComponentsHmrCache: false,',
'// serverComponentsHmrCache: false,'
)
)
})
it('should not use cached fetch calls for fast refresh requests', async () => {
const browser = await next.browser(`/${runtime}`)
const valueBeforePatch = await browser.elementById('value').text()
await next.patchFile(
'components/shared-page.tsx',
(content) => content.replace('foo', 'bar'),
async () => {
await retry(async () => {
const updatedContent = await browser.elementById('content').text()
expect(updatedContent).toBe('bar')
// TODO: remove custom duration in case we increase the default.
}, 5000)
const valueAfterPatch = await browser.elementById('value').text()
expect(valueBeforePatch).not.toEqual(valueAfterPatch)
}
)
})
describe('in after()', () => {
beforeEach(() => {
cliOutputLength = next.cliOutput.length
})
it('should not use cached fetch calls for fast refresh requests', async () => {
const browser = await next.browser(`/${runtime}`)
const valueBeforePatch = await retry(() => getLoggedAfterValue())
cliOutputLength = next.cliOutput.length
await next.patchFile(
'components/shared-page.tsx',
(content) => content.replace('foo', 'bar'),
async () => {
await retry(async () => {
const updatedContent = await browser
.elementById('content')
.text()
expect(updatedContent).toBe('bar')
// TODO: remove custom duration in case we increase the default.
}, 5000)
const valueAfterPatch = await retry(() => getLoggedAfterValue())
expect(valueBeforePatch).not.toEqual(valueAfterPatch)
}
)
})
})
})
})
})