mirror of
https://github.com/theoludwig/html-w3c-validator.git
synced 2025-05-21 23:21:29 +02:00
test: add automated tests
This commit is contained in:
@ -17,9 +17,9 @@ import { isExistingPath } from './utils/isExistingPath.js'
|
||||
|
||||
export const CONFIG_FILE_NAME = '.html-w3c-validatorrc.json'
|
||||
|
||||
const severities = ['error', 'warning', 'info'] as const
|
||||
export const SEVERITIES = ['error', 'warning', 'info'] as const
|
||||
|
||||
export type Severity = (typeof severities)[number]
|
||||
export type Severity = (typeof SEVERITIES)[number]
|
||||
|
||||
interface Config {
|
||||
urls?: string[]
|
||||
@ -113,22 +113,19 @@ export class HTMLValidatorCommand extends Command {
|
||||
`Invalid config file at "${configPath}". Please add URLs or files.`
|
||||
)
|
||||
}
|
||||
const configSeverities: Severity[] = config.severities ?? [
|
||||
'warning',
|
||||
'error'
|
||||
]
|
||||
for (const severity of configSeverities) {
|
||||
if (!severities.includes(severity)) {
|
||||
const severities: Severity[] = config.severities ?? ['warning', 'error']
|
||||
for (const severity of severities) {
|
||||
if (!SEVERITIES.includes(severity)) {
|
||||
throw new Error(
|
||||
`Invalid config file at "${configPath}". Please add valid severities (${severities.join(
|
||||
`Invalid config file at "${configPath}". Please add valid severities (${SEVERITIES.join(
|
||||
', '
|
||||
)}).`
|
||||
)
|
||||
}
|
||||
}
|
||||
if (configSeverities.length === 0) {
|
||||
if (severities.length === 0) {
|
||||
throw new Error(
|
||||
`Invalid config file at "${configPath}". Please add valid severities (${severities.join(
|
||||
`Invalid config file at "${configPath}". Please add valid severities (${SEVERITIES.join(
|
||||
', '
|
||||
)}).`
|
||||
)
|
||||
@ -169,8 +166,8 @@ export class HTMLValidatorCommand extends Command {
|
||||
}
|
||||
const hasErrors = result.messages.some((message) => {
|
||||
return (
|
||||
configSeverities.includes(message.type as Severity) ||
|
||||
configSeverities.includes(message.subType as Severity)
|
||||
severities.includes(message.type as Severity) ||
|
||||
severities.includes(message.subType as Severity)
|
||||
)
|
||||
})
|
||||
if (!hasErrors) {
|
||||
|
@ -1,23 +1,377 @@
|
||||
import test from 'node:test'
|
||||
import assert from 'node:assert/strict'
|
||||
import path from 'node:path'
|
||||
import { PassThrough } from 'node:stream'
|
||||
|
||||
import sinon from 'sinon'
|
||||
import { execa } from 'execa'
|
||||
import { table } from 'table'
|
||||
import chalk from 'chalk'
|
||||
import logSymbols from 'log-symbols'
|
||||
|
||||
import { cli } from '../cli.js'
|
||||
import { HTMLValidatorCommand } from '../HTMLValidatorCommand.js'
|
||||
import {
|
||||
HTMLValidatorCommand,
|
||||
CONFIG_FILE_NAME,
|
||||
SEVERITIES
|
||||
} from '../HTMLValidatorCommand.js'
|
||||
|
||||
const FIXTURES_PATH = path.join(process.cwd(), 'src', '__test__', 'fixtures')
|
||||
|
||||
await test('html-w3c-validator', async (t) => {
|
||||
t.afterEach(() => {
|
||||
sinon.restore()
|
||||
})
|
||||
|
||||
await t.test('should be instance of the command', async () => {
|
||||
const command = cli.process([])
|
||||
assert(command instanceof HTMLValidatorCommand)
|
||||
})
|
||||
|
||||
await t.test('succeeds and validate the html correctly', async () => {
|
||||
const exampleURL = new URL('../../example', import.meta.url)
|
||||
process.chdir(exampleURL.pathname)
|
||||
await execa('rimraf', ['node_modules'])
|
||||
await execa('npm', ['install'])
|
||||
const { exitCode } = await execa('npm', ['run', 'test:html-w3c-validator'])
|
||||
assert.strictEqual(exitCode, 0)
|
||||
await t.test(
|
||||
'succeeds and validate the html correctly (example)',
|
||||
async () => {
|
||||
const exampleURL = new URL('../../example', import.meta.url)
|
||||
process.chdir(exampleURL.pathname)
|
||||
await execa('rimraf', ['node_modules'])
|
||||
await execa('npm', ['install'])
|
||||
const { exitCode } = await execa('npm', [
|
||||
'run',
|
||||
'test:html-w3c-validator'
|
||||
])
|
||||
assert.strictEqual(exitCode, 0)
|
||||
}
|
||||
)
|
||||
|
||||
await t.test(
|
||||
'succeeds and validate the html correctly (example without working directory)',
|
||||
async () => {
|
||||
const logs: string[] = []
|
||||
sinon.stub(console, 'log').value((log: string) => {
|
||||
logs.push(log)
|
||||
})
|
||||
const consoleLogSpy = sinon.spy(console, 'log')
|
||||
const stream = new PassThrough()
|
||||
const exitCode = await cli.run([], {
|
||||
stdin: process.stdin,
|
||||
stdout: stream,
|
||||
stderr: stream
|
||||
})
|
||||
stream.end()
|
||||
assert.strictEqual(exitCode, 0)
|
||||
assert.strictEqual(
|
||||
consoleLogSpy.calledWith(
|
||||
logSymbols.success,
|
||||
'./example/build/index.html'
|
||||
),
|
||||
true,
|
||||
logs.join('\n')
|
||||
)
|
||||
assert.strictEqual(
|
||||
consoleLogSpy.calledWith(
|
||||
logSymbols.success,
|
||||
'./example/build/about.html'
|
||||
),
|
||||
true,
|
||||
logs.join('\n')
|
||||
)
|
||||
}
|
||||
)
|
||||
|
||||
await t.test(
|
||||
'succeeds and validate the html correctly (fixture)',
|
||||
async () => {
|
||||
const workingDirectory = path.join(FIXTURES_PATH, 'success')
|
||||
const logs: string[] = []
|
||||
sinon.stub(console, 'log').value((log: string) => {
|
||||
logs.push(log)
|
||||
})
|
||||
const consoleLogSpy = sinon.spy(console, 'log')
|
||||
const stream = new PassThrough()
|
||||
const exitCode = await cli.run(
|
||||
[`--current-working-directory=${workingDirectory}`],
|
||||
{
|
||||
stdin: process.stdin,
|
||||
stdout: stream,
|
||||
stderr: stream
|
||||
}
|
||||
)
|
||||
stream.end()
|
||||
assert.strictEqual(exitCode, 0)
|
||||
assert.strictEqual(
|
||||
consoleLogSpy.calledWith(logSymbols.success, './build/index.html'),
|
||||
true,
|
||||
logs.join('\n')
|
||||
)
|
||||
assert.strictEqual(
|
||||
consoleLogSpy.calledWith(logSymbols.success, './build/about.html'),
|
||||
true,
|
||||
logs.join('\n')
|
||||
)
|
||||
}
|
||||
)
|
||||
|
||||
await t.test('fails with not found config', async () => {
|
||||
const workingDirectory = path.join(FIXTURES_PATH, 'error-config-not-found')
|
||||
const configPath = path.join(workingDirectory, CONFIG_FILE_NAME)
|
||||
const errors: string[] = []
|
||||
sinon.stub(console, 'error').value((error: string) => {
|
||||
errors.push(error)
|
||||
})
|
||||
const consoleErrorSpy = sinon.spy(console, 'error')
|
||||
const stream = new PassThrough()
|
||||
const exitCode = await cli.run(
|
||||
[`--current-working-directory=${workingDirectory}`],
|
||||
{
|
||||
stdin: process.stdin,
|
||||
stdout: stream,
|
||||
stderr: stream
|
||||
}
|
||||
)
|
||||
stream.end()
|
||||
assert.strictEqual(exitCode, 1)
|
||||
assert.strictEqual(
|
||||
consoleErrorSpy.calledWith(
|
||||
chalk.bold.red('Error:') +
|
||||
` No config file found at ${configPath}. Please create "${CONFIG_FILE_NAME}".`
|
||||
),
|
||||
true,
|
||||
errors.join('\n')
|
||||
)
|
||||
})
|
||||
|
||||
await t.test('fails with invalid JSON config', async () => {
|
||||
const workingDirectory = path.join(
|
||||
FIXTURES_PATH,
|
||||
'error-config-invalid-json'
|
||||
)
|
||||
const configPath = path.join(workingDirectory, CONFIG_FILE_NAME)
|
||||
const errors: string[] = []
|
||||
sinon.stub(console, 'error').value((error: string) => {
|
||||
errors.push(error)
|
||||
})
|
||||
const consoleErrorSpy = sinon.spy(console, 'error')
|
||||
const stream = new PassThrough()
|
||||
const exitCode = await cli.run(
|
||||
[`--current-working-directory=${workingDirectory}`],
|
||||
{
|
||||
stdin: process.stdin,
|
||||
stdout: stream,
|
||||
stderr: stream
|
||||
}
|
||||
)
|
||||
stream.end()
|
||||
assert.strictEqual(exitCode, 1)
|
||||
assert.strictEqual(
|
||||
consoleErrorSpy.calledWith(
|
||||
chalk.bold.red('Error:') +
|
||||
` Invalid config file at "${configPath}". Please check the JSON syntax.`
|
||||
),
|
||||
true,
|
||||
errors.join('\n')
|
||||
)
|
||||
})
|
||||
|
||||
await t.test('fails with invalid URLs config', async () => {
|
||||
const workingDirectory = path.join(
|
||||
FIXTURES_PATH,
|
||||
'error-config-invalid-urls'
|
||||
)
|
||||
const configPath = path.join(workingDirectory, CONFIG_FILE_NAME)
|
||||
const errors: string[] = []
|
||||
sinon.stub(console, 'error').value((error: string) => {
|
||||
errors.push(error)
|
||||
})
|
||||
const consoleErrorSpy = sinon.spy(console, 'error')
|
||||
const stream = new PassThrough()
|
||||
const exitCode = await cli.run(
|
||||
[`--current-working-directory=${workingDirectory}`],
|
||||
{
|
||||
stdin: process.stdin,
|
||||
stdout: stream,
|
||||
stderr: stream
|
||||
}
|
||||
)
|
||||
stream.end()
|
||||
assert.strictEqual(exitCode, 1)
|
||||
assert.strictEqual(
|
||||
consoleErrorSpy.calledWith(
|
||||
chalk.bold.red('Error:') +
|
||||
` Invalid config file at "${configPath}". Please include an array of URLs.`
|
||||
),
|
||||
true,
|
||||
errors.join('\n')
|
||||
)
|
||||
})
|
||||
|
||||
await t.test('fails with invalid files config', async () => {
|
||||
const workingDirectory = path.join(
|
||||
FIXTURES_PATH,
|
||||
'error-config-invalid-files'
|
||||
)
|
||||
const configPath = path.join(workingDirectory, CONFIG_FILE_NAME)
|
||||
const errors: string[] = []
|
||||
sinon.stub(console, 'error').value((error: string) => {
|
||||
errors.push(error)
|
||||
})
|
||||
const consoleErrorSpy = sinon.spy(console, 'error')
|
||||
const stream = new PassThrough()
|
||||
const exitCode = await cli.run(
|
||||
[`--current-working-directory=${workingDirectory}`],
|
||||
{
|
||||
stdin: process.stdin,
|
||||
stdout: stream,
|
||||
stderr: stream
|
||||
}
|
||||
)
|
||||
stream.end()
|
||||
assert.strictEqual(exitCode, 1)
|
||||
assert.strictEqual(
|
||||
consoleErrorSpy.calledWith(
|
||||
chalk.bold.red('Error:') +
|
||||
` Invalid config file at "${configPath}". Please include an array of files.`
|
||||
),
|
||||
true,
|
||||
errors.join('\n')
|
||||
)
|
||||
})
|
||||
|
||||
await t.test('fails with invalid files and urls config', async () => {
|
||||
const workingDirectory = path.join(
|
||||
FIXTURES_PATH,
|
||||
'error-config-invalid-files-and-urls'
|
||||
)
|
||||
const configPath = path.join(workingDirectory, CONFIG_FILE_NAME)
|
||||
const errors: string[] = []
|
||||
sinon.stub(console, 'error').value((error: string) => {
|
||||
errors.push(error)
|
||||
})
|
||||
const consoleErrorSpy = sinon.spy(console, 'error')
|
||||
const stream = new PassThrough()
|
||||
const exitCode = await cli.run(
|
||||
[`--current-working-directory=${workingDirectory}`],
|
||||
{
|
||||
stdin: process.stdin,
|
||||
stdout: stream,
|
||||
stderr: stream
|
||||
}
|
||||
)
|
||||
stream.end()
|
||||
assert.strictEqual(exitCode, 1)
|
||||
assert.strictEqual(
|
||||
consoleErrorSpy.calledWith(
|
||||
chalk.bold.red('Error:') +
|
||||
` Invalid config file at "${configPath}". Please add URLs or files.`
|
||||
),
|
||||
true,
|
||||
errors.join('\n')
|
||||
)
|
||||
})
|
||||
|
||||
await t.test('fails with invalid severities config', async () => {
|
||||
const workingDirectory = path.join(
|
||||
FIXTURES_PATH,
|
||||
'error-config-invalid-severities'
|
||||
)
|
||||
const configPath = path.join(workingDirectory, CONFIG_FILE_NAME)
|
||||
const errors: string[] = []
|
||||
sinon.stub(console, 'error').value((error: string) => {
|
||||
errors.push(error)
|
||||
})
|
||||
const consoleErrorSpy = sinon.spy(console, 'error')
|
||||
const stream = new PassThrough()
|
||||
const exitCode = await cli.run(
|
||||
[`--current-working-directory=${workingDirectory}`],
|
||||
{
|
||||
stdin: process.stdin,
|
||||
stdout: stream,
|
||||
stderr: stream
|
||||
}
|
||||
)
|
||||
stream.end()
|
||||
assert.strictEqual(exitCode, 1)
|
||||
assert.strictEqual(
|
||||
consoleErrorSpy.calledWith(
|
||||
chalk.bold.red('Error:') +
|
||||
` Invalid config file at "${configPath}". Please add valid severities (${SEVERITIES.join(
|
||||
', '
|
||||
)}).`
|
||||
),
|
||||
true,
|
||||
errors.join('\n')
|
||||
)
|
||||
})
|
||||
|
||||
await t.test('fails with invalid empty severities config', async () => {
|
||||
const workingDirectory = path.join(
|
||||
FIXTURES_PATH,
|
||||
'error-config-invalid-severities-empty'
|
||||
)
|
||||
const configPath = path.join(workingDirectory, CONFIG_FILE_NAME)
|
||||
const errors: string[] = []
|
||||
sinon.stub(console, 'error').value((error: string) => {
|
||||
errors.push(error)
|
||||
})
|
||||
const consoleErrorSpy = sinon.spy(console, 'error')
|
||||
const stream = new PassThrough()
|
||||
const exitCode = await cli.run(
|
||||
[`--current-working-directory=${workingDirectory}`],
|
||||
{
|
||||
stdin: process.stdin,
|
||||
stdout: stream,
|
||||
stderr: stream
|
||||
}
|
||||
)
|
||||
stream.end()
|
||||
assert.strictEqual(exitCode, 1)
|
||||
assert.strictEqual(
|
||||
consoleErrorSpy.calledWith(
|
||||
chalk.bold.red('Error:') +
|
||||
` Invalid config file at "${configPath}". Please add valid severities (${SEVERITIES.join(
|
||||
', '
|
||||
)}).`
|
||||
),
|
||||
true,
|
||||
errors.join('\n')
|
||||
)
|
||||
})
|
||||
|
||||
await t.test('fails with invalid files paths to check', async () => {
|
||||
const workingDirectory = path.join(
|
||||
FIXTURES_PATH,
|
||||
'error-invalid-files-paths-to-check'
|
||||
)
|
||||
const htmlPath = path.resolve(workingDirectory, 'index.html')
|
||||
const errors: string[] = []
|
||||
sinon.stub(console, 'error').value((error: string) => {
|
||||
errors.push(error)
|
||||
})
|
||||
const consoleErrorSpy = sinon.spy(console, 'error')
|
||||
const stream = new PassThrough()
|
||||
const exitCode = await cli.run(
|
||||
[`--current-working-directory=${workingDirectory}`],
|
||||
{
|
||||
stdin: process.stdin,
|
||||
stdout: stream,
|
||||
stderr: stream
|
||||
}
|
||||
)
|
||||
stream.end()
|
||||
assert.strictEqual(exitCode, 1)
|
||||
const messagesTable = [
|
||||
[`No file found at "${htmlPath}". Please check the path.`]
|
||||
]
|
||||
assert.strictEqual(
|
||||
consoleErrorSpy.calledWith(
|
||||
chalk.bold.red('Error:') + ' HTML validation (W3C) failed!'
|
||||
),
|
||||
true,
|
||||
errors.join('\n')
|
||||
)
|
||||
assert.strictEqual(
|
||||
consoleErrorSpy.calledWith(table(messagesTable)),
|
||||
true,
|
||||
errors.join('\n')
|
||||
)
|
||||
})
|
||||
})
|
||||
|
@ -0,0 +1,4 @@
|
||||
{
|
||||
"urls": [],
|
||||
"files": []
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"files": "Invalid"
|
||||
}
|
@ -0,0 +1 @@
|
||||
Invalid JSON
|
@ -0,0 +1,4 @@
|
||||
{
|
||||
"files": ["./index.html"],
|
||||
"severities": []
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Home</title>
|
||||
</head>
|
||||
<body></body>
|
||||
</html>
|
@ -0,0 +1,4 @@
|
||||
{
|
||||
"files": ["./index.html"],
|
||||
"severities": ["errors-invalid"]
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Home</title>
|
||||
</head>
|
||||
<body></body>
|
||||
</html>
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"urls": "Invalid"
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"files": ["./index.html"]
|
||||
}
|
3
src/__test__/fixtures/success/.html-w3c-validatorrc.json
Normal file
3
src/__test__/fixtures/success/.html-w3c-validatorrc.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"files": ["./build/index.html", "./build/about.html"]
|
||||
}
|
9
src/__test__/fixtures/success/build/about.html
Normal file
9
src/__test__/fixtures/success/build/about.html
Normal file
@ -0,0 +1,9 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>About</title>
|
||||
</head>
|
||||
<body></body>
|
||||
</html>
|
9
src/__test__/fixtures/success/build/index.html
Normal file
9
src/__test__/fixtures/success/build/index.html
Normal file
@ -0,0 +1,9 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Home</title>
|
||||
</head>
|
||||
<body></body>
|
||||
</html>
|
Reference in New Issue
Block a user