2018-09-09 22:58:53 +03:00
|
|
|
const { icons } = require('../_data/simple-icons.json');
|
|
|
|
const simpleIcons = require('../index.js');
|
2021-02-22 16:15:37 +03:00
|
|
|
const { getIconSlug } = require("../scripts/utils.js");
|
2018-09-09 22:58:53 +03:00
|
|
|
|
|
|
|
icons.forEach(icon => {
|
2021-02-19 16:06:43 +03:00
|
|
|
const name = icon.slug || icon.title;
|
|
|
|
const subject = simpleIcons[name];
|
2018-09-09 22:58:53 +03:00
|
|
|
|
|
|
|
test(`${icon.title} has a "title"`, () => {
|
|
|
|
expect(typeof subject.title).toBe('string');
|
|
|
|
});
|
|
|
|
|
|
|
|
test(`${icon.title} has a "hex" value`, () => {
|
|
|
|
expect(typeof subject.hex).toBe('string');
|
|
|
|
expect(subject.hex).toHaveLength(6);
|
|
|
|
});
|
|
|
|
|
|
|
|
test(`${icon.title} has a "source"`, () => {
|
|
|
|
expect(typeof subject.source).toBe('string');
|
|
|
|
});
|
|
|
|
|
|
|
|
test(`${icon.title} has an "svg"`, () => {
|
|
|
|
expect(typeof subject.svg).toBe('string');
|
|
|
|
});
|
2019-06-15 23:31:23 +03:00
|
|
|
|
|
|
|
test(`${icon.title} has a "path"`, () => {
|
|
|
|
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
|
|
|
|
|
|
|
test(`${icon.title} has a "slug"`, () => {
|
|
|
|
expect(typeof subject.slug).toBe('string');
|
|
|
|
});
|
2019-07-14 22:05:38 +03:00
|
|
|
|
2021-02-19 16:06:43 +03:00
|
|
|
// NOTE: Icons with custom slugs have a custom slug because their title is
|
|
|
|
// already taken, so they should not be findable by their title.
|
|
|
|
if (icon.slug === undefined) {
|
|
|
|
test(`${icon.title} can be found by it's title`, () => {
|
|
|
|
const found = simpleIcons.get(icon.title);
|
|
|
|
expect(found).toBeDefined();
|
|
|
|
expect(found.title).toEqual(icon.title);
|
|
|
|
expect(found.hex).toEqual(icon.hex);
|
|
|
|
expect(found.source).toEqual(icon.source);
|
|
|
|
});
|
|
|
|
}
|
2019-07-14 22:05:38 +03:00
|
|
|
|
|
|
|
test(`${icon.title} can be found by it's slug`, () => {
|
2021-02-22 16:15:37 +03:00
|
|
|
const name = getIconSlug(icon);
|
2019-07-14 22:05:38 +03:00
|
|
|
const found = simpleIcons.get(name);
|
|
|
|
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');
|
|
|
|
}
|
|
|
|
});
|