forked from dequelabs/axe-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsdom.js
More file actions
163 lines (144 loc) · 4.48 KB
/
Copy pathjsdom.js
File metadata and controls
163 lines (144 loc) · 4.48 KB
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
var axe = require('../../');
var jsdom = require('jsdom');
var assert = require('assert');
var 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', function () {
it('should run without setting globals', function () {
var 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', function () {
var 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);
var 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);
});
});
});
describe('audit', function () {
var audit = axe._audit;
it('should have an empty allowedOrigins', function () {
// JSDOM does not have window.location, so there is no default origin
assert.strictEqual(audit.allowedOrigins.length, 0);
});
});
describe('isCurrentPageLink', function () {
// 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(function () {
axe.teardown();
});
it('should return true if url starts with #', function () {
var dom = new jsdom.JSDOM(domStr);
var anchor = dom.window.document.getElementById('hash-link');
axe.configure({
checks: [
{
id: 'check-current-page-link',
evaluate: function () {
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', function () {
var dom = new jsdom.JSDOM(domStr);
var anchor = dom.window.document.getElementById('skip');
axe.configure({
checks: [
{
id: 'check-current-page-link',
evaluate: function () {
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', function () {
var dom = new jsdom.JSDOM(domStr, { url: 'https://page.com' });
var anchor = dom.window.document.getElementById('skip');
axe.configure({
checks: [
{
id: 'check-current-page-link',
evaluate: function () {
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);
});
});
});
});