File size: 2,346 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
import { getPagesPageStaticInfo } from 'next/dist/build/analysis/get-page-static-info'
import { PAGE_TYPES } from 'next/dist/lib/page-types'
import { join } from 'path'
const fixtureDir = join(__dirname, 'fixtures')
function createNextConfig() {
return {}
}
describe('parse page static info', () => {
it('should parse nodejs runtime correctly', async () => {
const { runtime, getServerSideProps, getStaticProps } =
await getPagesPageStaticInfo({
page: 'nodejs-ssr',
pageFilePath: join(fixtureDir, 'page-runtime/nodejs-ssr.js'),
nextConfig: createNextConfig(),
pageType: PAGE_TYPES.PAGES,
})
expect(runtime).toBe('nodejs')
expect(getServerSideProps).toBe(true)
expect(getStaticProps).toBe(false)
})
it('should parse static runtime correctly', async () => {
const { runtime, getServerSideProps, getStaticProps } =
await getPagesPageStaticInfo({
page: 'nodejs',
pageFilePath: join(fixtureDir, 'page-runtime/nodejs.js'),
nextConfig: createNextConfig(),
pageType: PAGE_TYPES.PAGES,
})
expect(runtime).toBe('nodejs')
expect(getServerSideProps).toBe(false)
expect(getStaticProps).toBe(false)
})
it('should parse edge runtime correctly', async () => {
const { runtime } = await getPagesPageStaticInfo({
page: 'edge',
pageFilePath: join(fixtureDir, 'page-runtime/edge.js'),
nextConfig: createNextConfig(),
pageType: PAGE_TYPES.PAGES,
})
expect(runtime).toBe('experimental-edge')
})
it('should return undefined if no runtime is specified', async () => {
const { runtime } = await getPagesPageStaticInfo({
page: 'static',
pageFilePath: join(fixtureDir, 'page-runtime/static.js'),
nextConfig: createNextConfig(),
pageType: PAGE_TYPES.PAGES,
})
expect(runtime).toBe(undefined)
})
it('should parse ssr info with variable exported gSSP correctly', async () => {
const { getServerSideProps, getStaticProps } = await getPagesPageStaticInfo(
{
page: 'ssr-variable-gssp',
pageFilePath: join(fixtureDir, 'page-runtime/ssr-variable-gssp.js'),
nextConfig: createNextConfig(),
pageType: PAGE_TYPES.PAGES,
}
)
expect(getStaticProps).toBe(false)
expect(getServerSideProps).toBe(true)
})
})
|