grafana/public/app/features/transformers/lookupGazetteer/fieldLookup.test.ts
renovate[bot] e84a01e870
Update jest monorepo to v29 (#58261)
* Update jest monorepo to v29

* update snapshots + wrap test in act

* fix linting errors: jest.mocked now defaults to deep mocking

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
2022-11-24 14:00:41 +00:00

120 lines
2.9 KiB
TypeScript

import { FieldMatcherID, fieldMatchers, FieldType } from '@grafana/data';
import { toDataFrame } from '@grafana/data/src/dataframe/processDataFrame';
import { DataTransformerID } from '@grafana/data/src/transformations/transformers/ids';
import { frameAsGazetter } from 'app/features/geo/gazetteer/gazetteer';
import { addFieldsFromGazetteer } from './fieldLookup';
describe('Lookup gazetteer', () => {
it('adds lat/lon based on string field', async () => {
const cfg = {
id: DataTransformerID.fieldLookup,
options: {
lookupField: 'location',
gazetteer: 'public/gazetteer/usa-states.json',
},
};
const data = toDataFrame({
name: 'locations',
fields: [
{ name: 'location', type: FieldType.string, values: ['AL', 'AK', 'Arizona', 'Arkansas', 'Somewhere'] },
{ name: 'values', type: FieldType.number, values: [0, 10, 5, 1, 5] },
],
});
const matcher = fieldMatchers.get(FieldMatcherID.byName).get(cfg.options?.lookupField);
const frame = toDataFrame({
fields: [
{ name: 'id', values: ['AL', 'AK', 'AZ'] },
{ name: 'name', values: ['Alabama', 'Arkansas', 'Arizona'] },
{ name: 'lng', values: [-80.891064, -100.891064, -111.891064] },
{ name: 'lat', values: [12.448457, 24.448457, 33.448457] },
],
});
const gaz = frameAsGazetter(frame, { path: 'path/to/gaz.json' });
const out = await addFieldsFromGazetteer([data], gaz, matcher)[0];
expect(out.fields).toMatchInlineSnapshot(`
[
{
"config": {},
"name": "location",
"type": "string",
"values": [
"AL",
"AK",
"Arizona",
"Arkansas",
"Somewhere",
],
},
{
"config": {},
"name": "id",
"type": "string",
"values": [
"AL",
"AK",
,
,
,
],
},
{
"config": {},
"name": "name",
"type": "string",
"values": [
"Alabama",
"Arkansas",
,
,
,
],
},
{
"config": {},
"name": "lng",
"type": "number",
"values": [
-80.891064,
-100.891064,
,
,
,
],
},
{
"config": {},
"name": "lat",
"type": "number",
"values": [
12.448457,
24.448457,
,
,
,
],
},
{
"config": {},
"name": "values",
"state": {
"displayName": "values",
"multipleFrames": false,
},
"type": "number",
"values": [
0,
10,
5,
1,
5,
],
},
]
`);
});
});