mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-31 06:01:50 -05:00
Co-authored-by: sembauke <semboot699@gmail.com> Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
162 lines
3.6 KiB
JavaScript
162 lines
3.6 KiB
JavaScript
import { describe, it, expect } from 'vitest';
|
|
import unified from 'unified';
|
|
import remark from 'remark-parse';
|
|
import frontmatter from 'remark-frontmatter';
|
|
|
|
import addFrontmatter from './add-frontmatter';
|
|
import validateSections, {
|
|
VALID_MARKERS,
|
|
NON_HEADING_MARKERS
|
|
} from './validate-sections';
|
|
|
|
const processor = unified()
|
|
.use(remark)
|
|
.use(frontmatter, ['yaml'])
|
|
.use(addFrontmatter)
|
|
.use(validateSections);
|
|
|
|
describe('validate-sections plugin', () => {
|
|
it('should pass when all section markers are valid', () => {
|
|
const file = [
|
|
'---',
|
|
'id: test',
|
|
'title: Test',
|
|
'---',
|
|
'',
|
|
...VALID_MARKERS.map(marker => `${marker}\nDummy content.`),
|
|
...NON_HEADING_MARKERS.map(marker => `${marker}\nDummy content.`)
|
|
].join('\n');
|
|
|
|
expect(() => {
|
|
processor.runSync(processor.parse(file));
|
|
}).not.toThrow();
|
|
});
|
|
|
|
it('should throw error for invalid marker names', () => {
|
|
const file = `---
|
|
id: test
|
|
title: Test
|
|
---
|
|
|
|
# --descriptio--
|
|
Typo in marker name.
|
|
|
|
# --instructionss--
|
|
Another typo.
|
|
|
|
# -- instructions--
|
|
Another typo.
|
|
|
|
# --feedback---
|
|
Another typo.
|
|
|
|
# --invalid-marker--
|
|
Completely invalid marker.
|
|
`;
|
|
|
|
expect(() => {
|
|
processor.runSync(processor.parse(file));
|
|
}).toThrow(
|
|
'Invalid marker names: "--descriptio--", "--instructionss--", "-- instructions--", "--feedback---", "--invalid-marker--".'
|
|
);
|
|
});
|
|
|
|
it('should validate case-sensitive markers', () => {
|
|
const file = `---
|
|
id: test
|
|
title: Test
|
|
---
|
|
|
|
# --INSTRUCTIONS--
|
|
Wrong case.
|
|
|
|
# --Instructions--
|
|
Also wrong case.
|
|
`;
|
|
|
|
expect(() => {
|
|
processor.runSync(processor.parse(file));
|
|
}).toThrow('Invalid marker names: "--INSTRUCTIONS--", "--Instructions--".');
|
|
});
|
|
|
|
it('should throw error for correct marker at wrong heading level', () => {
|
|
const file = `---
|
|
id: test
|
|
title: Test
|
|
---
|
|
|
|
## --interactive--
|
|
Interactive should be at level 1, not 2.
|
|
|
|
### --seed-contents--
|
|
Seed contents should be at level 2, not 3.
|
|
`;
|
|
|
|
expect(() => {
|
|
processor.runSync(processor.parse(file));
|
|
}).toThrow(
|
|
'Invalid heading levels: "## --interactive--" should be "# --interactive--", "### --seed-contents--" should be "## --seed-contents--".'
|
|
);
|
|
});
|
|
|
|
it('should throw combined errors for invalid markers and wrong levels', () => {
|
|
const file = `---
|
|
id: test
|
|
title: Test
|
|
---
|
|
|
|
## --interactive--
|
|
Wrong level.
|
|
|
|
# --invalid-marker--
|
|
Invalid marker.
|
|
|
|
### --seed-contents--
|
|
Wrong level.
|
|
`;
|
|
|
|
expect(() => {
|
|
processor.runSync(processor.parse(file));
|
|
}).toThrow(
|
|
'Invalid marker names: "--invalid-marker--".\nInvalid heading levels: "## --interactive--" should be "# --interactive--", "### --seed-contents--" should be "## --seed-contents--".'
|
|
);
|
|
});
|
|
|
|
it('should throw error for fcc-editable-region when used as headings', () => {
|
|
const file = `---
|
|
id: test
|
|
title: Test
|
|
---
|
|
|
|
# --fcc-editable-region--
|
|
This should not be a heading.
|
|
|
|
## --fcc-editable-region--
|
|
This should also not be a heading.
|
|
`;
|
|
|
|
expect(() => {
|
|
processor.runSync(processor.parse(file));
|
|
}).toThrow(
|
|
'Non-heading markers should not be used as headings: "# --fcc-editable-region--", "## --fcc-editable-region--".'
|
|
);
|
|
});
|
|
|
|
it('should throw error for markers valid at multiple levels but used at an invalid level', () => {
|
|
const file = `---
|
|
id: test
|
|
title: Test
|
|
---
|
|
|
|
### --text--
|
|
This marker is valid at level 2 or level 4, but not at level 3.
|
|
`;
|
|
|
|
expect(() => {
|
|
processor.runSync(processor.parse(file));
|
|
}).toThrow(
|
|
'Invalid heading levels: "### --text--" should be "## --text-- or #### --text--".'
|
|
);
|
|
});
|
|
});
|