| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #!/usr/bin/env node
- /*!
- * Script to run vnu-jar if Java is available.
- * Copyright 2017-2025 The Bootstrap Authors
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
- */
- import { execFile, spawn } from 'node:child_process'
- import vnu from 'vnu-jar'
- execFile('java', ['-version'], (error, stdout, stderr) => {
- if (error) {
- console.error('Skipping vnu-jar test; Java is probably missing.')
- console.error(error)
- return
- }
- console.log('Running vnu-jar validation...')
- const is32bitJava = !/64-Bit/.test(stderr)
- // vnu-jar accepts multiple ignores joined with a `|`.
- // Also note that the ignores are string regular expressions.
- const ignores = [
- // "autocomplete" is included in <button> and checkboxes and radio <input>s due to
- // Firefox's non-standard autocomplete behavior - see https://bugzilla.mozilla.org/show_bug.cgi?id=654072
- 'Attribute “autocomplete” is only allowed when the input type is.*',
- 'Attribute “autocomplete” not allowed on element “button” at this point.',
- // Per https://www.w3.org/TR/html-aria/#docconformance having "aria-disabled" on a link is
- // NOT RECOMMENDED, but it's still valid - we explain in the docs that it's not ideal,
- // and offer more robust alternatives, but also need to show a less-than-ideal example
- 'An “aria-disabled” attribute whose value is “true” should not be specified on an “a” element that has an “href” attribute.',
- // A `code` element with the `is:raw` attribute coming from remark-prismjs (Astro upstream possible bug)
- 'Attribute “is:raw” is not serializable as XML 1.0.',
- 'Attribute “is:raw” not allowed on element “code” at this point.',
- // Astro's expecting trailing slashes on HTML tags such as <br />
- 'Trailing slash on void elements has no effect and interacts badly with unquoted attribute values.',
- // Allow `switch` attribute.
- 'Attribute “switch” not allowed on element “input” at this point.'
- ].join('|')
- const args = [
- '-jar',
- `"${vnu}"`,
- '--asciiquotes',
- '--skip-non-html',
- '--Werror',
- `--filterpattern "${ignores}"`,
- '_site/',
- 'js/tests/'
- ]
- // For the 32-bit Java we need to pass `-Xss512k`
- if (is32bitJava) {
- args.splice(0, 0, '-Xss512k')
- }
- console.log(`command used: java ${args.join(' ')}`)
- return spawn('java', args, {
- shell: true,
- stdio: 'inherit'
- })
- .on('exit', process.exit)
- })
|