forked from testcafe-community/axe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
80 lines (66 loc) · 2.35 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
const { ClientFunction } = require('testcafe');
const { red, green, reset } = require('chalk');
const runAxe = ClientFunction((context, options = {}) => {
return new Promise((resolve) => {
axe.run(context || document, options, (error, results) => {
resolve({ error, results });
});
});
});
const configureAxe = ClientFunction((spec) => {
return axe.configure(spec);
}
);
const createReport = violations => {
if (!violations.length) {
return green('0 violations found');
}
const report = violations.reduce((acc, { nodes, help, helpUrl, tags, impact, id }, i) => {
acc += red(`${i + 1}) ${help}\n`);
acc += red(`* ${helpUrl}\n`);
acc += red(`* ${tags.join(', ')}\n`);
acc += red(`* ${impact}\n`);
acc += red(`* ${id}\n`);
acc += reset(nodes.reduce((e, { target }) => {
const targetNodes = target.map((t) => `"${t}"`).join(', ');
e += `\t${targetNodes}\n`;
return e;
}, ''));
return acc;
}, red(`${violations.length} violations found:\n`));
return reset(report);
};
/**
* Performs check with axe-core library.
* Returns full results object that contains arrays of 'violations', 'passes', 'incomplete',
* 'inapplicable' and additional values.
* Axe results object: https://www.deque.com/axe/core-documentation/api-documentation/#results-object
*/
/**
*
* @param t
* @param context
* @param options
* @returns {Promise<{error: *}|{error: *, results: {passes: *, violations: * }}>}
*/
const axeCheck = async (t, context, options={}) => {
try {
// skipping the "document-title" rule as there is an issue with testcafe
// being unable to find the title of a page inside the <head> tag.
options = options["rules"]['document-title'] = {'enabled': false};
return await runAxe.with({ boundTestRun: t })(context, options);
} catch (e) {
return { error: e };
}
};
const checkForViolations = async (t, context, options) => {
const { results } = await axeCheck(t, context, options);
await t.expect(results.violations.length === 0).ok(createReport(results.violations));
}
module.exports = {
runAxe,
configureAxe,
axeCheck,
createReport,
checkForViolations
};