Skip to content

Commit

Permalink
fix: Updated doc-check to generate config + format errors (#1255)
Browse files Browse the repository at this point in the history
  • Loading branch information
maschad committed May 26, 2023
1 parent fe1e121 commit c97f9bf
Show file tree
Hide file tree
Showing 10 changed files with 158 additions and 20 deletions.
71 changes: 51 additions & 20 deletions src/document-check.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
/* eslint-disable no-console */

import fs from 'fs-extra'
import { globby } from 'globby'
import kleur from 'kleur'
import Listr from 'listr'
import merge from 'merge-options'
import { compileSnippets } from 'typescript-docs-verifier'
import { hasTsconfig } from './utils.js'
import { formatCode, formatError, fromRoot, hasTsconfig, readJson } from './utils.js'
/**
* @typedef {import("./types").GlobalOptions} GlobalOptions
* @typedef {import("./types").DocsVerifierOptions} DocsVerifierOptions
Expand All @@ -23,33 +26,61 @@ const tasks = new Listr(
* @param {Task} task
*/
task: async (ctx, task) => {
let tsconfigPath = 'tsconfig.json'
let markdownFiles = ['README.md']
const isWindows = process.platform === 'win32'

if (ctx.tsConfigPath) {
tsconfigPath = `${ctx.tsConfigPath}/tsconfig.json`
}
if (!isWindows) {
const configPath = './tsconfig-doc-check.aegir.json'

if (ctx.inputFiles) {
markdownFiles = await globby(ctx.inputFiles)
}
let userTSConfig = {}
let markdownFiles = ['README.md']

if (ctx.tsConfigPath && ctx.tsConfigPath !== '.') {
userTSConfig = readJson(`${ctx.tsConfigPath}/tsconfig.json`)
} else {
userTSConfig = readJson(fromRoot('tsconfig.json'))
}

if (ctx.inputFiles) {
markdownFiles = await globby(ctx.inputFiles)
}

try {
fs.writeJsonSync(
configPath,
merge.apply({ concatArrays: true }, [
userTSConfig,
{
compilerOptions: {
target: 'esnext',
module: 'esnext',
noImplicitAny: true,
noEmit: true
}
}
])
)

const results = await compileSnippets({ markdownFiles, project: configPath })

compileSnippets({ markdownFiles, project: tsconfigPath })
.then((results) => {
results.forEach((result) => {
if (result.error) {
console.log(`Error compiling example code block ${result.index} in file ${result.file}`)
console.log(result.error.message)
console.log('Original code:')
console.log(result.snippet)
process.exitCode = 1
console.log(kleur.red().bold(`Error compiling example code block ${result.index} in file ${result.file}:`))
console.log(formatError(result.error))
console.log(kleur.blue().bold('Original code:'))
console.log(formatCode(result.snippet, result.linesWithErrors))
}
})
})
.catch((error) => {
console.error('Error compiling TypeScript snippets', error)
})
} catch (err) {
console.log('Error in trying to compile Typescript code', err)
} finally {
fs.removeSync(configPath)
fs.removeSync(fromRoot('dist', 'tsconfig-doc-check.aegir.tsbuildinfo'))
}
} else {
console.log(kleur.red('The underlying plugin used for TS-doc checks currently does not support Windows OS (See Github issue https://github.com/bbc/typescript-docs-verifier/issues/26). Skipping document check.'))
}
}

}
],
{
Expand Down
26 changes: 26 additions & 0 deletions src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import envPaths from 'env-paths'
import { execa } from 'execa'
import extract from 'extract-zip'
import fs from 'fs-extra'
import kleur from 'kleur'
import Listr from 'listr'
import { minimatch } from 'minimatch'
import lockfile from 'proper-lockfile'
Expand Down Expand Up @@ -513,3 +514,28 @@ async function * _glob (base, dir, pattern, options) {
}
}
}

/**
*
* @param {Error} error
* @returns
*/
export const formatError = (error) => ' ' + error.message.split('\n').join('\n ')

/**
*
* @param {string} code
* @param {number[]} errorLines
* @returns
*/
export const formatCode = (code, errorLines) => {
const lines = code.split('\n').map((line, index) => {
const lineNumber = index + 1
if (errorLines.includes(lineNumber)) {
return kleur.red().bold(`${String(lineNumber).padStart(2)}| ${line}`)
} else {
return `${String(lineNumber).padStart(2)}| ${line}`
}
})
return ' ' + lines.join('\n ')
}
41 changes: 41 additions & 0 deletions test/document-check.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/* eslint-env mocha */

import { createRequire } from 'module'
import path from 'path'
import { fileURLToPath } from 'url'
import { execa } from 'execa'
import { expect } from '../utils/chai.js'

const require = createRequire(import.meta.url)
const __dirname = path.dirname(fileURLToPath(import.meta.url))
const bin = require.resolve('../src/index.js')
const isWindows = process.platform === 'win32'

describe('document check', () => {
// Skip tests on windows until https://github.com/bbc/typescript-docs-verifier/issues/26 is resolved
if (!isWindows) {
it('should fail for errant typescript in docs', async () => {
const cwd = path.join(__dirname, 'fixtures/document-check/ts-fail')

await expect(execa(bin, ['doc-check', '--inputFiles', `${cwd}/*.md`, '--tsConfigPath', `${cwd}`]))
.to.eventually.be.rejected()
.with.property('stdout')
.that.include('Error compiling example code block 1')
})

it('should pass for correct typescript in docs', async () => {
const cwd = path.join(__dirname, 'fixtures/document-check/pass')

await expect(execa(bin, ['doc-check', '--inputFiles', `${cwd}/*.md`])).to.eventually.be.fulfilled()
})

it('should fail for missing tsconfig.json', async () => {
const cwd = path.join(__dirname, 'fixtures/document-check/tsconfig-fail')

await expect(execa(bin, ['doc-check', '--inputFiles', `${cwd}/*.md`, '--tsConfigPath', `${cwd}`]))
.to.eventually.be.rejected()
.with.property('stderr')
.that.include('no such file or directory')
})
}
})
3 changes: 3 additions & 0 deletions test/fixtures/document-check/pass/GOODREADME.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```ts
export const a = 1;
```
14 changes: 14 additions & 0 deletions test/fixtures/document-check/pass/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"extends": "./../../../../src/config/tsconfig.aegir.json",
"compilerOptions": {
"outDir": "dist",
"emitDeclarationOnly": true,
"isolatedModules": true
},
"include": [
"package.json",
"src",
"test",
"utils"
]
}
3 changes: 3 additions & 0 deletions test/fixtures/document-check/ts-fail/ANOTHERBADREADME.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```typescript
still.bad.code
```
3 changes: 3 additions & 0 deletions test/fixtures/document-check/ts-fail/BADREADME.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```typescript
wrong.code()
```
13 changes: 13 additions & 0 deletions test/fixtures/document-check/ts-fail/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": "./../../../../src/config/tsconfig.aegir.json",
"compilerOptions": {
"outDir": "dist",
"emitDeclarationOnly": true
},
"include": [
"package.json",
"src",
"test",
"utils"
]
}
3 changes: 3 additions & 0 deletions test/fixtures/document-check/tsconfig-fail/GOODREADME.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```ts
export const a = 1;
```
1 change: 1 addition & 0 deletions test/node.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import './docs.js'
import './lint.js'
import './fixtures.js'
import './dependants.js'
import './document-check.js'
import './dependency-check.js'
import './utils/echo-server.js'
import './utils/get-port.js'
Expand Down

0 comments on commit c97f9bf

Please sign in to comment.