grafana/public/app/plugins/panel/geomap/gazetteer/gazetteer.test.ts
2021-07-21 23:41:27 -07:00

37 lines
993 B
TypeScript

import { getGazetteer } from './gazetteer';
let backendResults: any = { hello: 'world' };
import countriesJSON from '../../../../../gazetteer/countries.json';
jest.mock('@grafana/runtime', () => ({
...((jest.requireActual('@grafana/runtime') as unknown) as object),
getBackendSrv: () => ({
get: jest.fn().mockResolvedValue(backendResults),
}),
}));
describe('Placename lookups', () => {
beforeEach(() => {
backendResults = { hello: 'world' };
});
it('unified worldmap config', async () => {
backendResults = countriesJSON;
const gaz = await getGazetteer('countries');
expect(gaz.error).toBeUndefined();
expect(gaz.find('US')).toMatchInlineSnapshot(`
Object {
"coords": Array [
-95.712891,
37.09024,
],
"props": Object {
"name": "United States",
},
}
`);
// Items with 'keys' should get allow looking them up
expect(gaz.find('US')).toEqual(gaz.find('USA'));
});
});