Submit
Path:
~
/
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
explore
/
hooks
/
useStateSync
/
migrators
/
File Content:
v1.test.ts
import { DEFAULT_RANGE } from 'app/features/explore/state/utils'; import { v1Migrator } from './v1'; jest.mock('app/core/utils/explore', () => ({ ...jest.requireActual('app/core/utils/explore'), generateExploreId: () => 'ID', })); describe('v1 migrator', () => { describe('parse', () => { it('correctly returns default state when no params are provided', () => { expect(v1Migrator.parse({}).to).toMatchObject({ panes: { ID: { datasource: null, queries: [], range: DEFAULT_RANGE, }, }, }); }); it('correctly returns default state when panes param is an empty object', () => { expect(v1Migrator.parse({ panes: '{}' }).to).toMatchObject({ panes: { ID: { datasource: null, queries: [], range: DEFAULT_RANGE, }, }, }); }); it('correctly returns default state when panes param is not a valid JSON object', () => { expect(v1Migrator.parse({ panes: '{a malformed json}' }).to).toMatchObject({ panes: { ID: { datasource: null, queries: [], range: DEFAULT_RANGE, }, }, }); }); it('correctly returns default state when a pane in panes params is an empty object', () => { expect(v1Migrator.parse({ panes: '{"aaa": {}}' }).to).toMatchObject({ panes: { aaa: { datasource: null, queries: [], range: DEFAULT_RANGE, }, }, }); }); it('correctly returns default state when a pane in panes params is not a valid JSON object', () => { expect(v1Migrator.parse({ panes: '{"aaa": "NOT A VALID URL STATE"}' }).to).toMatchObject({ panes: { aaa: { datasource: null, queries: [], range: DEFAULT_RANGE, }, }, }); }); it('correctly parses state', () => { expect( v1Migrator.parse({ panes: `{ "aaa": { "datasource": "my-ds", "queries": [ { "refId": "A" } ], "range": { "from": "now", "to": "now-5m" } } }`, }).to ).toMatchObject({ panes: { aaa: { datasource: 'my-ds', queries: [{ refId: 'A' }], range: { from: 'now', to: 'now-5m', }, }, }, }); }); }); describe('migrate', () => { // TODO: implement }); });
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
types.ts
529 bytes
0644
v0.test.ts
3705 bytes
0644
v0.ts
2822 bytes
0644
v1.test.ts
2711 bytes
0644
v1.ts
3224 bytes
0644
N4ST4R_ID | Naxtarrr