1
0
mirror of https://github.com/simple-icons/simple-icons.git synced 2025-01-05 01:20:39 +02:00

Update NPM test suite (#5370)

* Test if icons have "guidelines" when they should

... and don't when they shouldn't.

* Update paht test in icons.test.js

* Improve test names and test conditions

* Test if icons have a "license" when they should

... and don't when they shouldn't.

* Test value of guidelines

Co-authored-by: Álvaro Mondéjar <mondejar1994@gmail.com>

* Test if SPDX license URL is a URL indeed

Using the same regular expression as we use for URLs in the JSON data
(see .jsonschema.json#url).
This commit is contained in:
Eric Cornelissen 2021-04-06 16:53:46 +02:00 committed by GitHub
parent ac2c61b035
commit b2b036148f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 71 additions and 16 deletions

View File

@ -5,28 +5,56 @@ icons.forEach(icon => {
const filename = getIconSlug(icon); const filename = getIconSlug(icon);
const subject = require(`../icons/${filename}.js`); const subject = require(`../icons/${filename}.js`);
test(`${icon.title} has a "title"`, () => { test(`${icon.title} has the correct "title"`, () => {
expect(typeof subject.title).toBe('string'); expect(typeof subject.title).toBe('string');
expect(subject.title).toEqual(icon.title);
}); });
test(`${icon.title} has a "hex" value`, () => { test(`${icon.title} has the correct "slug"`, () => {
expect(typeof subject.slug).toBe('string');
expect(subject.slug).toEqual(getIconSlug(icon));
});
test(`${icon.title} has the correct "hex" value`, () => {
expect(typeof subject.hex).toBe('string'); expect(typeof subject.hex).toBe('string');
expect(subject.hex).toHaveLength(6); expect(subject.hex).toEqual(icon.hex);
}); });
test(`${icon.title} has a "source"`, () => { test(`${icon.title} has the correct "source"`, () => {
expect(typeof subject.source).toBe('string'); expect(typeof subject.source).toBe('string');
expect(subject.source).toEqual(icon.source);
}); });
test(`${icon.title} has an "svg"`, () => { test(`${icon.title} has an "svg" value`, () => {
expect(typeof subject.svg).toBe('string'); expect(typeof subject.svg).toBe('string');
}); });
test(`${icon.title} has a "path"`, () => { test(`${icon.title} has a valid "path" value`, () => {
expect(typeof subject.path).toBe('string'); expect(typeof subject.path).toBe('string');
expect(subject.path).toMatch(/^[MmZzLlHhVvCcSsQqTtAaEe0-9-,.\s]+$/g);
}); });
test(`${icon.title} has a "slug"`, () => { test(`${icon.title} has ${icon.guidelines ? "the correct" : "no"} "guidelines"`, () => {
expect(typeof subject.slug).toBe('string'); if (icon.guidelines) {
expect(typeof subject.guidelines).toBe('string');
expect(subject.guidelines).toEqual(icon.guidelines);
} else {
expect(subject.guidelines).toBeUndefined();
}
});
test(`${icon.title} has ${icon.license ? "the correct" : "no"} "license"`, () => {
if (icon.license) {
expect(typeof subject.license).toBe('object');
expect(subject.license).toHaveProperty('type', icon.license.type);
if (icon.license.type === "custom") {
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();
}
}); });
}); });

View File

@ -6,30 +6,57 @@ icons.forEach(icon => {
const name = icon.slug || icon.title; const name = icon.slug || icon.title;
const subject = simpleIcons[name]; const subject = simpleIcons[name];
test(`${icon.title} has a "title"`, () => { test(`${icon.title} has the correct "title"`, () => {
expect(typeof subject.title).toBe('string'); expect(typeof subject.title).toBe('string');
expect(subject.title).toEqual(icon.title);
}); });
test(`${icon.title} has a "hex" value`, () => { test(`${icon.title} has the correct "slug"`, () => {
expect(typeof subject.slug).toBe('string');
expect(subject.slug).toEqual(getIconSlug(icon));
});
test(`${icon.title} has the correct "hex" value`, () => {
expect(typeof subject.hex).toBe('string'); expect(typeof subject.hex).toBe('string');
expect(subject.hex).toHaveLength(6); expect(subject.hex).toEqual(icon.hex);
}); });
test(`${icon.title} has a "source"`, () => { test(`${icon.title} has the correct "source"`, () => {
expect(typeof subject.source).toBe('string'); expect(typeof subject.source).toBe('string');
expect(subject.source).toEqual(icon.source);
}); });
test(`${icon.title} has an "svg"`, () => { test(`${icon.title} has an "svg" value`, () => {
expect(typeof subject.svg).toBe('string'); expect(typeof subject.svg).toBe('string');
}); });
test(`${icon.title} has a "path"`, () => { test(`${icon.title} has a valid "path" value`, () => {
expect(typeof subject.path).toBe('string'); expect(typeof subject.path).toBe('string');
expect(subject.path).toMatch(/^[MmZzLlHhVvCcSsQqTtAaEe0-9-,.\s]+$/g); expect(subject.path).toMatch(/^[MmZzLlHhVvCcSsQqTtAaEe0-9-,.\s]+$/g);
}); });
test(`${icon.title} has a "slug"`, () => { test(`${icon.title} has ${icon.guidelines ? "the correct" : "no"} "guidelines"`, () => {
expect(typeof subject.slug).toBe('string'); if (icon.guidelines) {
expect(typeof subject.guidelines).toBe('string');
expect(subject.guidelines).toEqual(icon.guidelines);
} else {
expect(subject.guidelines).toBeUndefined();
}
});
test(`${icon.title} has ${icon.license ? "the correct" : "no"} "license"`, () => {
if (icon.license) {
expect(typeof subject.license).toBe('object');
expect(subject.license).toHaveProperty('type', icon.license.type);
if (icon.license.type === "custom") {
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();
}
}); });
// NOTE: Icons with custom slugs have a custom slug because their title is // NOTE: Icons with custom slugs have a custom slug because their title is