simple-icons/tests/index.test.js
Eric Cornelissen c6a9346985 Generic get icon function for easier access to brands with "difficult" names (#1522)
* Add URL friendy/slug/file name as property to package icon objects

* Test new property

* Build index from template

* Add .get function to index.js export

* Test new .get function in index.js export

* Use Uglify-JS to minify the code in the package's index.js

* Update API in README.md

* Renaem test using "slug" instead of "name"
2019-07-14 21:05:38 +02:00

47 lines
1.3 KiB
JavaScript

const { icons } = require('../_data/simple-icons.json');
const simpleIcons = require('../index.js');
const { titleToFilename } = require("../scripts/utils.js");
icons.forEach(icon => {
const subject = simpleIcons[icon.title];
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');
});
test(`${icon.title} has a "path"`, () => {
expect(typeof subject.path).toBe('string');
expect(subject.path).toMatch(/^[MmZzLlHhVvCcSsQqTtAa0-9-,.\s]+$/g);
});
test(`${icon.title} has a "slug"`, () => {
expect(typeof subject.slug).toBe('string');
});
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);
});
test(`${icon.title} can be found by it's slug`, () => {
const name = titleToFilename(icon.title);
const found = simpleIcons.get(name);
expect(found).toBeDefined();
expect(found.title).toEqual(icon.title);
});
});