mirror of
https://github.com/iconify/iconify.git
synced 2024-11-10 07:11:00 +00:00
61 lines
1.4 KiB
JavaScript
61 lines
1.4 KiB
JavaScript
import { addAPIProvider, getAPIConfig } from '@iconify/core/lib/api/config';
|
|
import { setAPIModule, getAPIModule } from '@iconify/core/lib/api/modules';
|
|
|
|
describe('Testing API modules', () => {
|
|
let prefixCounter = 0;
|
|
function nextPrefix() {
|
|
prefixCounter++;
|
|
return (
|
|
'api-mod-test-' + (prefixCounter < 10 ? '0' : '') + prefixCounter
|
|
);
|
|
}
|
|
|
|
const prepareQuery = (provider, prefix, icons) => {
|
|
const item = {
|
|
type: 'icons',
|
|
provider,
|
|
prefix,
|
|
icons,
|
|
};
|
|
return [item];
|
|
};
|
|
|
|
const sendQuery = () => {
|
|
throw new Error('Unexpected API call');
|
|
};
|
|
|
|
it('Empty module', () => {
|
|
const provider = nextPrefix();
|
|
|
|
// Set config
|
|
addAPIProvider(provider, {
|
|
resources: ['https://localhost:3000'],
|
|
maxURL: 500,
|
|
});
|
|
|
|
// Set fake module
|
|
setAPIModule(provider, {
|
|
prepare: prepareQuery,
|
|
send: sendQuery,
|
|
});
|
|
|
|
// Get config
|
|
const config = getAPIConfig(provider);
|
|
expect(config).not.toBeUndefined();
|
|
|
|
// Check setAPIConfig
|
|
expect(config.resources).toEqual(['https://localhost:3000']);
|
|
|
|
// Check getAPIModule()
|
|
const item = getAPIModule(provider);
|
|
expect(item).not.toBeUndefined();
|
|
expect(item.prepare).toBe(prepareQuery);
|
|
expect(item.send).toBe(sendQuery);
|
|
|
|
// Get module for different provider to make sure it is different
|
|
const provider2 = nextPrefix();
|
|
const item2 = getAPIModule(provider2);
|
|
expect(item2).not.toBe(item);
|
|
});
|
|
});
|