forked from dequelabs/axe-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsdom.js
196 lines (171 loc) · 5.4 KB
/
jsdom.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
const axe = require('../../');
const jsdom = require('jsdom');
const assert = require('assert');
const domStr =
'<!DOCTYPE html>' +
'<html lang="en">' +
'<head>' +
'<meta charset="UTF-8">' +
'<meta name="viewport" content="width=device-width, initial-scale=1.0">' +
'<title>Document</title>' +
'</head>' +
'<body>' +
'Hello' +
'<a id="hash-link" href="#main">Main</a>' +
'<a id="skip" href="https://page.com#main">Skip Link</a>' +
'</body>' +
'</html>';
describe('jsdom axe-core', () => {
it('should run without setting globals', () => {
const dom = new jsdom.JSDOM(domStr);
return axe
.run(dom.window.document.documentElement, {
rules: { 'color-contrast': { enabled: false } }
})
.then(function (results) {
assert.notEqual(results.violations.length, 0);
});
});
it('should unset globals so it can run with a new set of globals', () => {
let dom = new jsdom.JSDOM(domStr);
return axe
.run(dom.window.document.documentElement, {
rules: { 'color-contrast': { enabled: false } }
})
.then(function (results) {
assert.notStrictEqual(results.violations.length, 0);
dom = new jsdom.JSDOM(domStr);
return axe
.run(dom.window.document.documentElement, {
rules: { 'color-contrast': { enabled: false } }
})
.then(function (res) {
assert.notStrictEqual(res.violations.length, 0);
});
});
});
describe('audit', () => {
const audit = axe._audit;
it('should have an empty allowedOrigins', () => {
// JSDOM does not have window.location, so there is no default origin
assert.strictEqual(audit.allowedOrigins.length, 0);
});
});
describe('isCurrentPageLink', () => {
// because axe only sets the window global when calling axe.run,
// we'll have to create a custom rule that calls
// isCurrentPageLink to gain access to the middle of a run with
// the proper window object
afterEach(() => {
axe.teardown();
});
it('should return true if url starts with #', () => {
const dom = new jsdom.JSDOM(domStr);
const anchor = dom.window.document.getElementById('hash-link');
axe.configure({
checks: [
{
id: 'check-current-page-link',
evaluate: () => {
return axe.commons.dom.isCurrentPageLink(anchor) === true;
}
}
],
rules: [
{
id: 'check-current-page-link',
any: ['check-current-page-link']
}
]
});
return axe
.run(dom.window.document.documentElement, {
runOnly: ['check-current-page-link']
})
.then(function (results) {
assert.strictEqual(results.passes.length, 1);
});
});
it('should return null for absolute link when url is not set', () => {
const dom = new jsdom.JSDOM(domStr);
const anchor = dom.window.document.getElementById('skip');
axe.configure({
checks: [
{
id: 'check-current-page-link',
evaluate: () => {
return axe.commons.dom.isCurrentPageLink(anchor) === null;
}
}
],
rules: [
{
id: 'check-current-page-link',
any: ['check-current-page-link']
}
]
});
return axe
.run(dom.window.document.documentElement, {
runOnly: ['check-current-page-link']
})
.then(function (results) {
assert.strictEqual(results.passes.length, 1);
});
});
it('should return true for absolute link when url is set', () => {
const dom = new jsdom.JSDOM(domStr, { url: 'https://page.com' });
const anchor = dom.window.document.getElementById('skip');
axe.configure({
checks: [
{
id: 'check-current-page-link',
evaluate: () => {
return axe.commons.dom.isCurrentPageLink(anchor) === true;
}
}
],
rules: [
{
id: 'check-current-page-link',
any: ['check-current-page-link']
}
]
});
return axe
.run(dom.window.document.documentElement, {
runOnly: ['check-current-page-link']
})
.then(function (results) {
assert.strictEqual(results.passes.length, 1);
});
});
});
describe('axe.setup()', () => {
afterEach(() => {
axe.teardown();
});
it('sets up the tree', function () {
const { document } = new jsdom.JSDOM(domStr).window;
const tree = axe.setup(document.body);
assert.equal(tree, axe._tree[0]);
assert.equal(tree.actualNode, document.body);
});
it('can use commons after axe.setup()', () => {
const { document } = new jsdom.JSDOM(domStr).window;
axe.setup(document);
const skipLink = document.querySelector('#skip');
assert.equal(axe.commons.aria.getRole(skipLink), 'link');
assert.equal(axe.commons.text.accessibleText(skipLink), 'Skip Link');
});
it('is cleaned up with axe.teardown()', () => {
const { document } = new jsdom.JSDOM(domStr).window;
axe.setup(document);
axe.teardown();
const skipLink = document.querySelector('#skip');
assert.throws(() => {
assert.equal(axe.commons.aria.getRole(skipLink), 'link');
});
});
});
});