2017-09-27 18:18:23 +03:00
|
|
|
#!/usr/bin/env node
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Script to run vnu-jar if Java is available.
|
2023-01-02 00:30:53 +00:00
|
|
|
* Copyright 2017-2023 The Bootstrap Authors
|
2020-06-16 21:41:47 +03:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
2017-09-27 18:18:23 +03:00
|
|
|
*/
|
|
|
|
|
2018-11-28 13:03:28 +02:00
|
|
|
'use strict'
|
|
|
|
|
2022-09-20 08:09:14 +03:00
|
|
|
const { execFile, spawn } = require('node:child_process')
|
2017-09-27 18:18:23 +03:00
|
|
|
const vnu = require('vnu-jar')
|
|
|
|
|
2021-06-08 08:44:51 +03:00
|
|
|
execFile('java', ['-version'], (error, stdout, stderr) => {
|
2017-09-27 18:18:23 +03:00
|
|
|
if (error) {
|
2023-03-24 11:32:43 +02:00
|
|
|
console.error('Skipping vnu-jar test; Java is probably missing.')
|
|
|
|
console.error(error)
|
2017-09-27 18:18:23 +03:00
|
|
|
return
|
|
|
|
}
|
2017-09-27 14:41:58 +00:00
|
|
|
|
2023-03-24 11:32:43 +02:00
|
|
|
console.log('Running vnu-jar validation...')
|
|
|
|
|
2020-01-07 22:07:51 +02:00
|
|
|
const is32bitJava = !/64-Bit/.test(stderr)
|
2017-10-31 13:06:39 +02:00
|
|
|
|
2017-10-31 18:46:26 +02:00
|
|
|
// vnu-jar accepts multiple ignores joined with a `|`.
|
2021-06-08 08:44:51 +03:00
|
|
|
// Also note that the ignores are string regular expressions.
|
2017-09-27 18:18:23 +03:00
|
|
|
const ignores = [
|
2017-10-31 15:50:31 +02:00
|
|
|
// "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
|
2017-10-31 18:46:26 +02:00
|
|
|
'Attribute “autocomplete” is only allowed when the input type is.*',
|
2021-09-07 10:55:08 +03:00
|
|
|
'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.'
|
2017-09-27 18:18:23 +03:00
|
|
|
].join('|')
|
2017-09-27 14:41:58 +00:00
|
|
|
|
2017-09-27 18:18:23 +03:00
|
|
|
const args = [
|
|
|
|
'-jar',
|
2021-02-09 08:01:44 +02:00
|
|
|
`"${vnu}"`,
|
2017-09-27 18:18:23 +03:00
|
|
|
'--asciiquotes',
|
|
|
|
'--skip-non-html',
|
2017-10-30 17:34:02 +02:00
|
|
|
'--Werror',
|
2017-09-27 18:18:23 +03:00
|
|
|
`--filterpattern "${ignores}"`,
|
2021-03-02 17:05:26 +02:00
|
|
|
'_site/',
|
2017-09-27 18:18:23 +03:00
|
|
|
'js/tests/'
|
|
|
|
]
|
2017-09-27 14:41:58 +00:00
|
|
|
|
2017-10-31 13:06:39 +02:00
|
|
|
// For the 32-bit Java we need to pass `-Xss512k`
|
|
|
|
if (is32bitJava) {
|
|
|
|
args.splice(0, 0, '-Xss512k')
|
|
|
|
}
|
|
|
|
|
2023-03-24 11:32:43 +02:00
|
|
|
console.log(`command used: java ${args.join(' ')}`)
|
|
|
|
|
2021-06-08 08:44:51 +03:00
|
|
|
return spawn('java', args, {
|
2017-09-27 18:18:23 +03:00
|
|
|
shell: true,
|
|
|
|
stdio: 'inherit'
|
2017-09-27 14:41:58 +00:00
|
|
|
})
|
2017-12-16 14:00:38 +02:00
|
|
|
.on('exit', process.exit)
|
2017-09-27 18:18:23 +03:00
|
|
|
})
|