2018-09-09 22:58:53 +03:00
|
|
|
const { icons } = require('../_data/simple-icons.json');
|
|
|
|
const simpleIcons = require('../index.js');
|
2021-10-25 22:13:10 +03:00
|
|
|
const { getIconSlug } = require('../scripts/utils.js');
|
2018-09-09 22:58:53 +03:00
|
|
|
|
2021-10-25 22:13:10 +03:00
|
|
|
icons.forEach((icon) => {
|
2021-05-25 19:40:11 +03:00
|
|
|
const slug = getIconSlug(icon);
|
|
|
|
const subject = simpleIcons[slug];
|
2018-09-09 22:58:53 +03:00
|
|
|
|
2021-04-06 17:53:46 +03:00
|
|
|
test(`${icon.title} has the correct "title"`, () => {
|
2018-09-09 22:58:53 +03:00
|
|
|
expect(typeof subject.title).toBe('string');
|
2021-04-06 17:53:46 +03:00
|
|
|
expect(subject.title).toEqual(icon.title);
|
2018-09-09 22:58:53 +03:00
|
|
|
});
|
|
|
|
|
2021-04-06 17:53:46 +03:00
|
|
|
test(`${icon.title} has the correct "slug"`, () => {
|
|
|
|
expect(typeof subject.slug).toBe('string');
|
2021-05-25 19:40:11 +03:00
|
|
|
expect(subject.slug).toEqual(slug);
|
2021-04-06 17:53:46 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
test(`${icon.title} has the correct "hex" value`, () => {
|
2018-09-09 22:58:53 +03:00
|
|
|
expect(typeof subject.hex).toBe('string');
|
2021-04-06 17:53:46 +03:00
|
|
|
expect(subject.hex).toEqual(icon.hex);
|
2018-09-09 22:58:53 +03:00
|
|
|
});
|
|
|
|
|
2021-04-06 17:53:46 +03:00
|
|
|
test(`${icon.title} has the correct "source"`, () => {
|
2018-09-09 22:58:53 +03:00
|
|
|
expect(typeof subject.source).toBe('string');
|
2021-04-06 17:53:46 +03:00
|
|
|
expect(subject.source).toEqual(icon.source);
|
2018-09-09 22:58:53 +03:00
|
|
|
});
|
|
|
|
|
2021-04-06 17:53:46 +03:00
|
|
|
test(`${icon.title} has an "svg" value`, () => {
|
2018-09-09 22:58:53 +03:00
|
|
|
expect(typeof subject.svg).toBe('string');
|
|
|
|
});
|
2019-06-15 23:31:23 +03:00
|
|
|
|
2021-04-06 17:53:46 +03:00
|
|
|
test(`${icon.title} has a valid "path" value`, () => {
|
2019-06-15 23:31:23 +03:00
|
|
|
expect(typeof subject.path).toBe('string');
|
2020-11-18 20:57:25 +03:00
|
|
|
expect(subject.path).toMatch(/^[MmZzLlHhVvCcSsQqTtAaEe0-9-,.\s]+$/g);
|
2019-06-15 23:31:23 +03:00
|
|
|
});
|
2019-07-14 21:09:34 +03:00
|
|
|
|
2021-10-25 22:13:10 +03:00
|
|
|
test(`${icon.title} has ${
|
|
|
|
icon.guidelines ? 'the correct' : 'no'
|
|
|
|
} "guidelines"`, () => {
|
2021-04-06 17:53:46 +03:00
|
|
|
if (icon.guidelines) {
|
|
|
|
expect(typeof subject.guidelines).toBe('string');
|
|
|
|
expect(subject.guidelines).toEqual(icon.guidelines);
|
|
|
|
} else {
|
|
|
|
expect(subject.guidelines).toBeUndefined();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-10-25 22:13:10 +03:00
|
|
|
test(`${icon.title} has ${
|
|
|
|
icon.license ? 'the correct' : 'no'
|
|
|
|
} "license"`, () => {
|
2021-04-06 17:53:46 +03:00
|
|
|
if (icon.license) {
|
|
|
|
expect(typeof subject.license).toBe('object');
|
|
|
|
expect(subject.license).toHaveProperty('type', icon.license.type);
|
2021-10-25 22:13:10 +03:00
|
|
|
if (icon.license.type === 'custom') {
|
2021-04-06 17:53:46 +03:00
|
|
|
expect(subject.license).toHaveProperty('url', icon.license.url);
|
|
|
|
} else {
|
|
|
|
expect(typeof subject.license.url).toBe('string');
|
|
|
|
expect(subject.license.url).toMatch(/^https?:\/\/[^\s]+$/);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
expect(subject.license).toBeUndefined();
|
|
|
|
}
|
2019-07-14 21:09:34 +03:00
|
|
|
});
|
2019-07-14 22:05:38 +03:00
|
|
|
|
2021-05-28 13:16:50 +03:00
|
|
|
test(`'Get' ${icon.title} by its slug`, () => {
|
|
|
|
const found = simpleIcons.Get(slug);
|
|
|
|
expect(found).toBeDefined();
|
|
|
|
expect(found.title).toEqual(icon.title);
|
|
|
|
expect(found.hex).toEqual(icon.hex);
|
|
|
|
expect(found.source).toEqual(icon.source);
|
|
|
|
});
|
|
|
|
|
|
|
|
test(`'get' ${icon.title} by its slug`, () => {
|
2021-05-25 19:40:11 +03:00
|
|
|
const found = simpleIcons.get(slug);
|
2019-07-14 22:05:38 +03:00
|
|
|
expect(found).toBeDefined();
|
|
|
|
expect(found.title).toEqual(icon.title);
|
2021-02-19 16:06:43 +03:00
|
|
|
expect(found.hex).toEqual(icon.hex);
|
|
|
|
expect(found.source).toEqual(icon.source);
|
2019-07-14 22:05:38 +03:00
|
|
|
});
|
2018-09-09 22:58:53 +03:00
|
|
|
});
|
2019-07-24 22:17:46 +03:00
|
|
|
|
|
|
|
test(`Iterating over simpleIcons only exposes icons`, () => {
|
|
|
|
const iconArray = Object.values(simpleIcons);
|
|
|
|
for (let icon of iconArray) {
|
|
|
|
expect(icon).toBeDefined();
|
|
|
|
expect(typeof icon).toBe('object');
|
|
|
|
}
|
|
|
|
});
|