2018-09-27 16:00:11 +05:30
|
|
|
/* global describe it expect */
|
|
|
|
const mockAST = require('./fixtures/challenge-html-ast.json');
|
2019-06-11 14:45:36 +02:00
|
|
|
const adjacentTagsAST = require('./fixtures/adjacent-tags-ast.json');
|
2018-09-27 16:00:11 +05:30
|
|
|
const textToData = require('./text-to-data');
|
|
|
|
|
|
|
|
describe('text-to-data', () => {
|
|
|
|
const expectedField = 'description';
|
|
|
|
const otherExpectedField = 'instructions';
|
2020-02-08 13:29:10 -05:00
|
|
|
const unexpectedField = 'does-not-exist';
|
2018-09-27 16:00:11 +05:30
|
|
|
let file = { data: {} };
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
file = { data: {} };
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should take return a function', () => {
|
|
|
|
const plugin = textToData(['a-section-id']);
|
|
|
|
|
|
|
|
expect(typeof plugin).toEqual('function');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('throws when no argument or the incorrect argument is supplied', () => {
|
|
|
|
expect.assertions(5);
|
|
|
|
const expectedError =
|
|
|
|
"textToData must have an array of section id's supplied";
|
|
|
|
expect(() => {
|
|
|
|
textToData();
|
|
|
|
}).toThrow(expectedError);
|
|
|
|
expect(() => {
|
|
|
|
textToData('');
|
|
|
|
}).toThrow(expectedError);
|
|
|
|
expect(() => {
|
|
|
|
textToData({});
|
|
|
|
}).toThrow(expectedError);
|
|
|
|
expect(() => {
|
|
|
|
textToData(1);
|
|
|
|
}).toThrow(expectedError);
|
|
|
|
expect(() => {
|
|
|
|
textToData([]);
|
|
|
|
}).toThrow(expectedError);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should only add a value for 'found' section id's", () => {
|
|
|
|
const plugin = textToData([expectedField, unexpectedField]);
|
|
|
|
plugin(mockAST, file);
|
|
|
|
expect(expectedField in file.data && !(unexpectedField in file.data)).toBe(
|
|
|
|
true
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should add a string relating to the section id to `file.data`', () => {
|
|
|
|
const plugin = textToData([expectedField]);
|
|
|
|
plugin(mockAST, file);
|
|
|
|
const expectedText = 'Welcome to freeCodeCamp';
|
|
|
|
expect(file.data[expectedField].includes(expectedText)).toBe(true);
|
|
|
|
});
|
|
|
|
|
2019-03-01 18:54:09 +03:00
|
|
|
// eslint-disable-next-line max-len
|
|
|
|
it('should add an empty string relating to the section id without data to `file.data`', () => {
|
|
|
|
const plugin = textToData([otherExpectedField]);
|
|
|
|
plugin(mockAST, file);
|
|
|
|
expect(file.data[otherExpectedField]).toEqual('');
|
|
|
|
});
|
|
|
|
|
2018-09-27 16:00:11 +05:30
|
|
|
it('should preserve nested html', () => {
|
|
|
|
const plugin = textToData([expectedField]);
|
|
|
|
plugin(mockAST, file);
|
|
|
|
const expectedText = `<blockquote>
|
|
|
|
<p>Some text in a blockquote</p>
|
|
|
|
<p>Some text in a blockquote, with <code>code</code></p>
|
|
|
|
</blockquote>`;
|
|
|
|
expect(file.data[expectedField].includes(expectedText)).toBe(true);
|
|
|
|
});
|
|
|
|
|
2019-06-11 14:45:36 +02:00
|
|
|
// eslint-disable-next-line max-len
|
|
|
|
it('should not add paragraphs when html elements are separated by whitespace', () => {
|
|
|
|
const plugin = textToData([expectedField]);
|
|
|
|
plugin(adjacentTagsAST, file);
|
|
|
|
const expectedText1 = `<code>code</code> <tag>with more after a space</tag>`;
|
|
|
|
const expectedText2 = `another pair of <strong>elements</strong> <em>with a space</em>`;
|
|
|
|
expect(file.data[expectedField].includes(expectedText1)).toBe(true);
|
|
|
|
expect(file.data[expectedField].includes(expectedText2)).toBe(true);
|
|
|
|
});
|
|
|
|
|
2018-09-27 16:00:11 +05:30
|
|
|
it('should have an output to match the snapshot', () => {
|
|
|
|
const plugin = textToData([expectedField, otherExpectedField]);
|
|
|
|
plugin(mockAST, file);
|
|
|
|
expect(file.data).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|