Skip to content

Commit 70cedd6

Browse files
committed
Add test for input containing invalid attributes
1 parent 8bf0a99 commit 70cedd6

File tree

6 files changed

+98
-20
lines changed

6 files changed

+98
-20
lines changed

package-lock.json

+46-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"mocha": "10.1.0",
3636
"prettier": "^3.3.2",
3737
"release-it": "17.0.1",
38-
"sinon": "14.0.2"
38+
"sinon": "14.0.2",
39+
"xml-name-validator": "^5.0.0"
3940
}
4041
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"title": "Lorem Ipsum",
3+
"byline": null,
4+
"dir": null,
5+
"excerpt": "Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
6+
"siteName": null,
7+
"publishedTime": null,
8+
"readerable": false
9+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<div id="readability-page-1" class="page">
2+
<div "="">
3+
<p>
4+
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
5+
</p>
6+
</div>
7+
</div>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Lorem Ipsum</title>
5+
</head>
6+
<body>
7+
<main>
8+
<section>
9+
<div "="">
10+
<div>
11+
<div>
12+
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
13+
</div>
14+
</div>
15+
</div>
16+
</section>
17+
</main>
18+
</body>
19+
</html>

test/test-readability.js

+15-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* eslint-env node, mocha */
22

33
var JSDOM = require("jsdom").JSDOM;
4+
var xmlNameValidator = require("xml-name-validator").name;
45
var chai = require("chai");
56
var sinon = require("sinon");
67
chai.config.includeStack = true;
@@ -121,14 +122,17 @@ function runTestsWithItems(
121122

122123
function attributesForNode(node) {
123124
return Array.from(node.attributes)
125+
.filter(function (attr) {
126+
return xmlNameValidator(attr.name);
127+
})
124128
.map(function (attr) {
125129
return attr.name + "=" + attr.value;
126-
})
127-
.join(",");
130+
});
128131
}
129132

130133
var actualDOM = domGenerationFn(prettyPrint(result.content));
131134
var expectedDOM = domGenerationFn(prettyPrint(expectedContent));
135+
132136
traverseDOM(
133137
function (actualNode, expectedNode) {
134138
if (actualNode && expectedNode) {
@@ -152,21 +156,21 @@ function runTestsWithItems(
152156
}
153157
// Compare attributes for element nodes:
154158
} else if (actualNode.nodeType == 1) {
155-
var actualNodeDesc = attributesForNode(actualNode);
156-
var expectedNodeDesc = attributesForNode(expectedNode);
159+
var actualNodeAttributes = attributesForNode(actualNode);
160+
var expectedNodeAttributes = attributesForNode(expectedNode);
157161
var desc =
158162
"node " +
159163
nodeStr(actualNode) +
160164
" attributes (" +
161-
actualNodeDesc +
165+
actualNodeAttributes.join(",") +
162166
") should match (" +
163-
expectedNodeDesc +
164-
") ";
165-
expect(actualNode.attributes.length, desc).eql(
166-
expectedNode.attributes.length
167+
expectedNodeAttributes.join(",") +
168+
") 1";
169+
expect(actualNodeAttributes.length, desc).eql(
170+
expectedNodeAttributes.length
167171
);
168-
for (var i = 0; i < actualNode.attributes.length; i++) {
169-
var attr = actualNode.attributes[i].name;
172+
for (var i = 0; i < actualNodeAttributes.length; i++) {
173+
var attr = actualNodeAttributes[i].name;
170174
var actualValue = actualNode.getAttribute(attr);
171175
var expectedValue = expectedNode.getAttribute(attr);
172176
expect(

0 commit comments

Comments
 (0)