Skip to content

Commit c29f004

Browse files
authored
Update and add more test coverage for no-default-alt-text (#84)
* Make sure that HTML that is inlined is supported * Add detail * Update the helpers to support multiple errors in one line * add test support
1 parent 98da1c7 commit c29f004

6 files changed

+33
-18
lines changed

src/rules/no-default-alt-text.js

+12-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,12 @@ module.exports = {
2323
function: function GH001(params, onError) {
2424
const htmlTagsWithImages = params.parsers.markdownit.tokens.filter(
2525
(token) => {
26-
return token.type === "html_block" && token.content.includes("<img");
26+
return (
27+
(token.type === "html_block" && token.content.includes("<img")) ||
28+
(token.type === "inline" &&
29+
token.content.includes("<img") &&
30+
token.children.some((child) => child.type === "html_inline"))
31+
);
2732
},
2833
);
2934
const inlineImages = params.parsers.markdownit.tokens.filter(
@@ -36,12 +41,15 @@ module.exports = {
3641
const lineRange = token.map;
3742
const lineNumber = token.lineNumber;
3843
const lines = params.lines.slice(lineRange[0], lineRange[1]);
39-
4044
for (let i = 0; i < lines.length; i++) {
4145
const line = lines[i];
4246
let matches;
4347
if (token.type === "inline") {
44-
matches = line.matchAll(markdownAltRegex);
48+
if (token.children.some((child) => child.type === "html_inline")) {
49+
matches = line.matchAll(htmlAltRegex);
50+
} else {
51+
matches = line.matchAll(markdownAltRegex);
52+
}
4553
} else {
4654
matches = line.matchAll(htmlAltRegex);
4755
}
@@ -51,6 +59,7 @@ module.exports = {
5159
onError({
5260
lineNumber: lineNumber + i,
5361
range: [startIndex + 1, altText.length],
62+
detail: `Flagged alt: ${altText}`,
5463
});
5564
}
5665
}

test/accessibility-rules.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe("when A11y rules applied", () => {
2626
.map((failure) => failure.ruleNames)
2727
.flat();
2828

29-
expect(failuresForExampleFile).toHaveLength(1);
29+
expect(failuresForExampleFile).toHaveLength(3);
3030
expect(failureNames).toContain("no-default-alt-text");
3131
});
3232
});

test/example.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# Example Violations
22

33
![Screen Shot 2022-06-26 at 7 41 30 PM](https://user-images.githubusercontent.com/abcdef.png)
4+
5+
<img alt="image"><img alt="Image">

test/no-default-alt-text.test.js

+13-8
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,15 @@ describe("GH001: No Default Alt Text", () => {
1111
];
1212

1313
const results = await runTest(strings, altTextRule);
14-
15-
for (const result of results) {
16-
expect(result).not.toBeDefined();
17-
}
14+
expect(results.length).toBe(0);
1815
});
1916
test("html image", async () => {
2017
const strings = [
2118
'<img alt="A helpful description" src="https://user-images.githubusercontent.com/abcdef.png">',
2219
];
2320

2421
const results = await runTest(strings, altTextRule);
25-
26-
for (const result of results) {
27-
expect(result).not.toBeDefined();
28-
}
22+
expect(results.length).toBe(0);
2923
});
3024
});
3125
describe("failures", () => {
@@ -77,6 +71,17 @@ describe("GH001: No Default Alt Text", () => {
7771
}
7872
});
7973

74+
test("flags multiple consecutive inline images", async () => {
75+
const strings = ['<img alt="image"><img alt="Image">'];
76+
const results = await runTest(strings, altTextRule);
77+
expect(results).toHaveLength(2);
78+
79+
expect(results[0].errorRange).toEqual([11, 5]);
80+
expect(results[0].errorDetail).toEqual("Flagged alt: image");
81+
expect(results[1].errorRange).toEqual([28, 5]);
82+
expect(results[1].errorDetail).toEqual("Flagged alt: Image");
83+
});
84+
8085
test("error message", async () => {
8186
const strings = [
8287
"![Screen Shot 2022-06-26 at 7 41 30 PM](https://user-images.githubusercontent.com/abcdef.png)",

test/no-generic-link-text.test.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,7 @@ describe("GH002: No Generic Link Text", () => {
1717
];
1818

1919
const results = await runTest(strings, noGenericLinkTextRule);
20-
21-
for (const result of results) {
22-
expect(result).not.toBeDefined();
23-
}
20+
expect(results.length).toBe(0);
2421
});
2522
});
2623
describe("failures", () => {

test/utils/run-test.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ async function runTest(strings, rule, ruleConfig) {
1111
customRules: [rule],
1212
};
1313

14-
return await Promise.all(
14+
const results = await Promise.all(
1515
strings.map((variation) => {
1616
const thisTestConfig = {
1717
...config,
@@ -21,11 +21,13 @@ async function runTest(strings, rule, ruleConfig) {
2121
return new Promise((resolve, reject) => {
2222
markdownlint(thisTestConfig, (err, result) => {
2323
if (err) reject(err);
24-
resolve(result[0][0]);
24+
resolve(result[0]);
2525
});
2626
});
2727
}),
2828
);
29+
30+
return results.flat();
2931
}
3032

3133
exports.runTest = runTest;

0 commit comments

Comments
 (0)