mirror of
https://github.com/iconify/iconify.git
synced 2024-11-10 15:20:54 +00:00
82 lines
1.8 KiB
TypeScript
82 lines
1.8 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-unused-vars-experimental */
|
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
import 'mocha';
|
|
import { expect } from 'chai';
|
|
import { RedundancyPendingItem } from '@cyberalien/redundancy';
|
|
import {
|
|
setAPIConfig,
|
|
getAPIConfig,
|
|
IconifyAPIConfig,
|
|
} from '../../lib/api/config';
|
|
import {
|
|
setAPIModule,
|
|
APIQueryParams,
|
|
getAPIModule,
|
|
IconifyAPIModule,
|
|
} from '../../lib/api/modules';
|
|
|
|
describe('Testing API modules', () => {
|
|
let prefixCounter = 0;
|
|
function nextPrefix(): string {
|
|
prefixCounter++;
|
|
return (
|
|
'api-mod-test-' + (prefixCounter < 10 ? '0' : '') + prefixCounter
|
|
);
|
|
}
|
|
|
|
const prepareQuery = (
|
|
provider: string,
|
|
prefix: string,
|
|
icons: string[]
|
|
): APIQueryParams[] => {
|
|
const item: APIQueryParams = {
|
|
provider,
|
|
prefix,
|
|
icons,
|
|
};
|
|
return [item];
|
|
};
|
|
|
|
const sendQuery = (
|
|
host: string,
|
|
params: APIQueryParams,
|
|
status: RedundancyPendingItem
|
|
): void => {
|
|
throw new Error('Unexpected API call');
|
|
};
|
|
|
|
it('Empty module', () => {
|
|
const provider = nextPrefix();
|
|
|
|
// Set config
|
|
setAPIConfig(provider, {
|
|
resources: ['https://localhost:3000'],
|
|
maxURL: 500,
|
|
});
|
|
|
|
// Set fake module
|
|
setAPIModule(provider, {
|
|
prepare: prepareQuery,
|
|
send: sendQuery,
|
|
});
|
|
|
|
// Get config
|
|
const config = getAPIConfig(provider) as IconifyAPIConfig;
|
|
expect(config).to.not.be.equal(void 0);
|
|
|
|
// Check setAPIConfig
|
|
expect(config.resources).to.be.eql(['https://localhost:3000']);
|
|
|
|
// Check getAPIModule()
|
|
const item = getAPIModule(provider) as IconifyAPIModule;
|
|
expect(item).to.not.be.equal(void 0);
|
|
expect(item.prepare).to.be.equal(prepareQuery);
|
|
expect(item.send).to.be.equal(sendQuery);
|
|
|
|
// Get module for different provider to make sure it is empty
|
|
const provider2 = nextPrefix();
|
|
const item2 = getAPIModule(provider2);
|
|
expect(item2).to.be.equal(void 0);
|
|
});
|
|
});
|