mirror of
https://github.com/iconify/iconify.git
synced 2024-11-10 07:11:00 +00:00
197 lines
3.3 KiB
TypeScript
197 lines
3.3 KiB
TypeScript
import type { IconifyJSON } from '@iconify/types';
|
|
import { minifyIconSet } from '../lib/icon-set/minify';
|
|
|
|
describe('Testing minifying icon set', () => {
|
|
test('Nothing to minify', () => {
|
|
const item: IconifyJSON = {
|
|
prefix: 'foo',
|
|
icons: {
|
|
foo: {
|
|
body: '<g />',
|
|
width: 24,
|
|
height: 24,
|
|
},
|
|
},
|
|
};
|
|
const expected: IconifyJSON = {
|
|
prefix: 'foo',
|
|
icons: {
|
|
foo: {
|
|
body: '<g />',
|
|
width: 24,
|
|
height: 24,
|
|
},
|
|
},
|
|
};
|
|
minifyIconSet(item);
|
|
expect(item).toEqual(expected);
|
|
});
|
|
|
|
test('No common values', () => {
|
|
const item: IconifyJSON = {
|
|
prefix: 'foo',
|
|
icons: {
|
|
'foo-24': {
|
|
body: '<g />',
|
|
width: 24,
|
|
height: 24,
|
|
},
|
|
'foo-16': {
|
|
body: '<g />',
|
|
width: 12,
|
|
height: 12,
|
|
},
|
|
},
|
|
};
|
|
const expected: IconifyJSON = {
|
|
prefix: 'foo',
|
|
icons: {
|
|
'foo-24': {
|
|
body: '<g />',
|
|
width: 24,
|
|
height: 24,
|
|
},
|
|
'foo-16': {
|
|
body: '<g />',
|
|
width: 12,
|
|
height: 12,
|
|
},
|
|
},
|
|
};
|
|
minifyIconSet(item);
|
|
expect(item).toEqual(expected);
|
|
});
|
|
|
|
test('Default values', () => {
|
|
const item: IconifyJSON = {
|
|
prefix: 'foo',
|
|
icons: {
|
|
foo: {
|
|
body: '<g />',
|
|
width: 24,
|
|
// Height matches default
|
|
height: 16,
|
|
},
|
|
bar: {
|
|
body: '<g />',
|
|
// Width matches default
|
|
width: 16,
|
|
height: 12,
|
|
},
|
|
},
|
|
};
|
|
const expected: IconifyJSON = {
|
|
prefix: 'foo',
|
|
icons: {
|
|
foo: {
|
|
body: '<g />',
|
|
width: 24,
|
|
},
|
|
bar: {
|
|
body: '<g />',
|
|
height: 12,
|
|
},
|
|
},
|
|
};
|
|
minifyIconSet(item);
|
|
expect(item).toEqual(expected);
|
|
});
|
|
|
|
test('Common value', () => {
|
|
const item: IconifyJSON = {
|
|
prefix: 'foo',
|
|
icons: {
|
|
// 2 icons have the same height, 2 icons have the same width
|
|
'foo-wide': {
|
|
body: '<g />',
|
|
width: 32,
|
|
height: 24,
|
|
},
|
|
'foo-square': {
|
|
body: '<g />',
|
|
width: 24,
|
|
height: 24,
|
|
},
|
|
'foo-tiny-wide': {
|
|
body: '<g />',
|
|
width: 24,
|
|
height: 16,
|
|
},
|
|
'foo-tiny-square': {
|
|
body: '<g />',
|
|
width: 16,
|
|
height: 16,
|
|
},
|
|
},
|
|
};
|
|
const expected: IconifyJSON = {
|
|
prefix: 'foo',
|
|
icons: {
|
|
'foo-wide': {
|
|
body: '<g />',
|
|
width: 32,
|
|
},
|
|
'foo-square': {
|
|
body: '<g />',
|
|
},
|
|
'foo-tiny-wide': {
|
|
body: '<g />',
|
|
height: 16,
|
|
},
|
|
'foo-tiny-square': {
|
|
body: '<g />',
|
|
width: 16,
|
|
height: 16,
|
|
},
|
|
},
|
|
width: 24,
|
|
height: 24,
|
|
};
|
|
minifyIconSet(item);
|
|
expect(item).toEqual(expected);
|
|
});
|
|
|
|
test('Common value that matches default', () => {
|
|
const item: IconifyJSON = {
|
|
prefix: 'foo',
|
|
icons: {
|
|
// 2 icons have the same height of 16, which is default value
|
|
'foo-wide': {
|
|
body: '<g />',
|
|
width: 24,
|
|
height: 16,
|
|
},
|
|
'foo-square': {
|
|
body: '<g />',
|
|
width: 16,
|
|
height: 16,
|
|
},
|
|
'foo-tiny': {
|
|
body: '<g />',
|
|
width: 12,
|
|
height: 16,
|
|
},
|
|
},
|
|
};
|
|
const expected: IconifyJSON = {
|
|
prefix: 'foo',
|
|
icons: {
|
|
'foo-wide': {
|
|
body: '<g />',
|
|
width: 24,
|
|
},
|
|
'foo-square': {
|
|
body: '<g />',
|
|
// Should not have width because it matches default value
|
|
},
|
|
'foo-tiny': {
|
|
body: '<g />',
|
|
width: 12,
|
|
},
|
|
},
|
|
};
|
|
minifyIconSet(item);
|
|
expect(item).toEqual(expected);
|
|
});
|
|
});
|