Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { promises as fs } from 'fs'
import { join } from 'path'
import { nextTestSetup } from 'e2e-utils'
import { retry } from 'next-test-utils'
function getServerReferenceIdsFromBundle(source: string): string[] {
// Reference IDs are strings with [0-9a-f] that are at least 32 characters long.
// We use RegExp to find them in the bundle.
const referenceIds = source.matchAll(/"([0-9a-f]{32,})"/g) || []
return [...referenceIds].map(([, id]) => id)
}
describe('app-dir - client-actions-tree-shaking', () => {
const { next } = nextTestSetup({
files: __dirname,
})
const logs: string[] = []
beforeAll(() => {
const onLog = (log: string) => {
logs.push(log.trim())
}
next.on('stdout', onLog)
next.on('stderr', onLog)
})
afterEach(async () => {
logs.length = 0
})
it('should not bundle unused server reference id in client bundles', async () => {
const appDir = next.testDir
const appBuildManifest = require(
join(appDir, '.next/app-build-manifest.json')
)
const bundle1Files = appBuildManifest.pages['/route-1/page']
const bundle2Files = appBuildManifest.pages['/route-2/page']
const bundle3Files = appBuildManifest.pages['/route-3/page']
const bundle1Contents = await Promise.all(
bundle1Files.map((file: string) =>
fs.readFile(join(appDir, '.next', file), 'utf8')
)
)
const bundle2Contents = await Promise.all(
bundle2Files.map((file: string) =>
fs.readFile(join(appDir, '.next', file), 'utf8')
)
)
const bundle3Contents = await Promise.all(
bundle3Files.map((file: string) =>
fs.readFile(join(appDir, '.next', file), 'utf8')
)
)
const bundle1Ids = bundle1Contents.flatMap((file: string) =>
getServerReferenceIdsFromBundle(file)
)
const bundle2Ids = bundle2Contents.flatMap((file: string) =>
getServerReferenceIdsFromBundle(file)
)
const bundle3Ids = bundle3Contents.flatMap((file: string) =>
getServerReferenceIdsFromBundle(file)
)
// Bundle 1 and 2 should only have one ID.
expect(bundle1Ids).toHaveLength(1)
expect(bundle2Ids).toHaveLength(1)
expect(bundle1Ids[0]).not.toEqual(bundle2Ids[0])
// Bundle 3 should have no IDs.
expect(bundle3Ids).toHaveLength(0)
})
// Test the application
it('should trigger actions correctly', async () => {
const browser = await next.browser('/route-1')
await browser.elementById('submit').click()
await retry(() => {
expect(logs).toEqual(
expect.arrayContaining([expect.stringContaining('This is action foo')])
)
})
const browser2 = await next.browser('/route-2')
await browser2.elementById('submit').click()
await retry(() => {
expect(logs).toEqual(
expect.arrayContaining([expect.stringContaining('This is action bar')])
)
})
})
})