2017-09-27 17:18:23 +02:00
|
|
|
#!/usr/bin/env node
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Script to run vnu-jar if Java is available.
|
2022-01-03 09:24:34 +01:00
|
|
|
* Copyright 2017-2022 The Bootstrap Authors
|
|
|
|
* Copyright 2017-2022 Twitter, Inc.
|
2020-06-17 07:32:42 +02:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
2017-09-27 17:18:23 +02:00
|
|
|
*/
|
|
|
|
|
2018-11-28 12:03:28 +01:00
|
|
|
'use strict'
|
|
|
|
|
2021-06-22 11:52:10 +02:00
|
|
|
const { execFile, spawn } = require('child_process')
|
2017-09-27 17:18:23 +02:00
|
|
|
const vnu = require('vnu-jar')
|
|
|
|
|
2021-06-22 11:52:10 +02:00
|
|
|
execFile('java', ['-version'], (error, stdout, stderr) => {
|
2017-09-27 17:18:23 +02:00
|
|
|
if (error) {
|
2017-10-31 17:46:26 +01:00
|
|
|
console.error('Skipping vnu-jar test; Java is missing.')
|
2017-09-27 17:18:23 +02:00
|
|
|
return
|
|
|
|
}
|
2017-09-27 16:41:58 +02:00
|
|
|
|
2020-01-07 21:07:51 +01:00
|
|
|
const is32bitJava = !/64-Bit/.test(stderr)
|
2017-10-31 12:06:39 +01:00
|
|
|
|
2017-10-31 17:46:26 +01:00
|
|
|
// vnu-jar accepts multiple ignores joined with a `|`.
|
2021-06-22 11:52:10 +02:00
|
|
|
// Also note that the ignores are string regular expressions.
|
2017-09-27 17:18:23 +02:00
|
|
|
const ignores = [
|
2017-10-31 14:50:31 +01: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 17:46:26 +01:00
|
|
|
'Attribute “autocomplete” is only allowed when the input type is.*',
|
2017-09-27 17:18:23 +02:00
|
|
|
'Attribute “autocomplete” not allowed on element “button” at this point.',
|
2017-10-31 17:52:58 +01:00
|
|
|
// IE11 doesn't recognise <main> / give the element an implicit "main" landmark.
|
|
|
|
// Explicit role="main" is redundant for other modern browsers, but still valid.
|
2021-09-14 14:16:06 +02:00
|
|
|
'The “main” role is unnecessary for element “main”.',
|
|
|
|
// 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 17:18:23 +02:00
|
|
|
].join('|')
|
2017-09-27 16:41:58 +02:00
|
|
|
|
2017-09-27 17:18:23 +02:00
|
|
|
const args = [
|
|
|
|
'-jar',
|
2021-02-09 07:01:44 +01:00
|
|
|
`"${vnu}"`,
|
2017-09-27 17:18:23 +02:00
|
|
|
'--asciiquotes',
|
|
|
|
'--skip-non-html',
|
2017-10-30 16:34:02 +01:00
|
|
|
'--Werror',
|
2017-09-27 17:18:23 +02:00
|
|
|
`--filterpattern "${ignores}"`,
|
2021-03-02 16:05:26 +01:00
|
|
|
'_site/',
|
2017-09-27 17:18:23 +02:00
|
|
|
'js/tests/'
|
|
|
|
]
|
2017-09-27 16:41:58 +02:00
|
|
|
|
2017-10-31 12:06:39 +01:00
|
|
|
// For the 32-bit Java we need to pass `-Xss512k`
|
|
|
|
if (is32bitJava) {
|
|
|
|
args.splice(0, 0, '-Xss512k')
|
|
|
|
}
|
|
|
|
|
2021-06-22 11:52:10 +02:00
|
|
|
return spawn('java', args, {
|
2017-09-27 17:18:23 +02:00
|
|
|
shell: true,
|
|
|
|
stdio: 'inherit'
|
2017-09-27 16:41:58 +02:00
|
|
|
})
|
2017-12-16 13:00:38 +01:00
|
|
|
.on('exit', process.exit)
|
2017-09-27 17:18:23 +02:00
|
|
|
})
|