forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
topics.js
36 lines (32 loc) · 1.29 KB
/
topics.js
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
import path from 'path'
import fs from 'fs'
import readFrontmatter from '../../../lib/read-frontmatter.js'
import walk from 'walk-sync'
import { difference } from 'lodash-es'
import allowedTopics from '../../../data/allowed-topics.js'
const contentDir = path.join(process.cwd(), 'content')
const topics = walk(contentDir, { includeBasePath: true })
.filter((filename) => filename.endsWith('.md') && !filename.includes('README'))
.map((filename) => {
const fileContent = fs.readFileSync(filename, 'utf8')
const { data, errors } = readFrontmatter(fileContent)
if (errors.length > 0) {
console.warn(errors)
throw new Error(`More than 0 front-matter errors`)
}
return data.topics || []
})
.flat()
const allUsedTopics = [...new Set(topics)].sort()
describe('Check for allowed frontmatter topics', () => {
test('all used topics are allowed in /data/allowed-topics.js', () => {
expect(allUsedTopics.length).toBeGreaterThan(0)
const unusedTopics = difference(allUsedTopics, allowedTopics)
expect(unusedTopics).toEqual([])
})
test('all allowed topics are used by at least one content file', () => {
expect(allowedTopics.length).toBeGreaterThan(0)
const disallowedTopics = difference(allowedTopics, allUsedTopics)
expect(disallowedTopics).toEqual([])
})
})