docs/tests/content/site-tree.js

85 строки
3.6 KiB
JavaScript

const revalidator = require('revalidator')
const schema = require('../../lib/site-tree-schema')
const latestEnterpriseRelease = require('../../lib/enterprise-server-releases').latest
const { getJSON } = require('../helpers/supertest')
const flat = require('flat')
const japaneseCharacters = require('japanese-characters')
const nonEnterpriseDefaultVersion = require('../../lib/non-enterprise-default-version')
describe('siteTree', () => {
jest.setTimeout(3 * 60 * 1000)
let siteTree, flatTree
beforeAll(async (done) => {
siteTree = await getJSON('/en?json=siteTree')
flatTree = flat(siteTree)
done()
})
test('has language codes as top-level keys', () => {
expect('en' in siteTree).toBe(true)
expect('ja' in siteTree).toBe(true)
})
test('object order', () => {
expect(Object.keys(siteTree)[0]).toBe('en')
expect(Object.keys(siteTree.en)[0]).toBe(nonEnterpriseDefaultVersion)
expect(Object.keys(siteTree.en[nonEnterpriseDefaultVersion].products.github.categories)[0]).toBe('/en/github/getting-started-with-github')
})
test('object structure', () => {
expect(nonEnterpriseDefaultVersion in siteTree.en).toBe(true)
expect(`enterprise-server@${latestEnterpriseRelease}` in siteTree.en).toBe(true)
expect(flatTree[`en.${nonEnterpriseDefaultVersion}.products.github.href`]).toBe('/en/github')
expect(flatTree[`en.${nonEnterpriseDefaultVersion}.products.github.categories./en/github/getting-started-with-github.href`]).toBe('/en/github/getting-started-with-github')
})
describe('localized titles', () => {
test('titles for categories', () => {
const japaneseTitle = flatTree[`ja.${nonEnterpriseDefaultVersion}.products.github.categories./ja/github/getting-started-with-github.title`]
expect(typeof japaneseTitle).toBe('string')
expect(japaneseCharacters.presentIn(japaneseTitle)).toBe(true)
const englishTitle = flatTree[`en.${nonEnterpriseDefaultVersion}.products.github.categories./en/github/getting-started-with-github.title`]
expect(typeof englishTitle).toBe('string')
expect(japaneseCharacters.presentIn(englishTitle)).toBe(false)
})
test.todo('titles for maptopics')
test.todo('titles for articles')
test('articles that include site data in liquid templating', () => {
const pageWithDynamicTitle = siteTree.en[`enterprise-server@${latestEnterpriseRelease}`]
.products.admin
.categories[`/en/enterprise-server@${latestEnterpriseRelease}/admin/enterprise-support`]
// Source frontmatter from article:
// title: 'Working with {{ site.data.variables.contact.github_support }}'
expect(pageWithDynamicTitle.title).toEqual('Working with GitHub Support')
})
})
test('object validation', () => {
const products = Object.values(siteTree.en[nonEnterpriseDefaultVersion].products)
expect(products.length).toBeGreaterThan(0)
products.forEach(product => {
const { valid, errors } = revalidator.validate(product, schema.product)
const expectation = JSON.stringify(errors, null, 2)
expect(valid, expectation).toBe(true)
Object.values(product.categories || {}).forEach(category => {
const { valid, errors } = revalidator.validate(category, schema.category)
const expectation = JSON.stringify(errors, null, 2)
expect(valid, expectation).toBe(true)
Object.values(category.maptopics || {}).forEach(maptopic => {
const { valid, errors } = revalidator.validate(maptopic, schema.maptopic)
const expectation = JSON.stringify(errors, null, 2)
expect(valid, expectation).toBe(true)
})
})
})
})
})