33 lines
1.2 KiB
TypeScript
33 lines
1.2 KiB
TypeScript
import { describe, it, expect } from 'vitest'
|
|
import { pageSchema, type Page } from '@/lib/schema/page'
|
|
import { buildExtrasForPage } from '@/lib/exporter/extras'
|
|
|
|
function makePage(): Page {
|
|
return pageSchema.parse({
|
|
title: 'Auto Extras',
|
|
locale: 'en',
|
|
theme: { primaryColor: '#2563eb', fontFamily: 'Inter' },
|
|
sections: [ { type: 'hero', props: { heading: 'Hello', subheading: 'World', imageUrl: 'https://img/h.png' } } ],
|
|
form: { actionUrl: '', fields: [], spamProtection: { honeypotFieldName: '_hp', minSubmitSeconds: 2 } },
|
|
seo: { title: 't', description: 'd' },
|
|
})
|
|
}
|
|
|
|
describe('extras 자동 생성', () => {
|
|
it('robots.txt와 site.webmanifest가 extras에 포함된다', () => {
|
|
const page = makePage()
|
|
const extras = buildExtrasForPage(page)
|
|
const keys = Object.keys(extras)
|
|
expect(keys).toContain('robots.txt')
|
|
expect(keys).toContain('site.webmanifest')
|
|
|
|
const robots = Buffer.from(extras['robots.txt']).toString('utf8')
|
|
expect(robots).toContain('User-agent: *')
|
|
|
|
const manifestStr = Buffer.from(extras['site.webmanifest']).toString('utf8')
|
|
const manifest = JSON.parse(manifestStr)
|
|
expect(manifest.start_url).toBeDefined()
|
|
expect(manifest.display).toBeDefined()
|
|
})
|
|
})
|