Files
grafana/public/app/features/dashboard/state/reducers.test.ts

72 lines
2.1 KiB
TypeScript
Raw Normal View History

import { DashboardInitPhase, DashboardState, OrgRole, PermissionLevel } from 'app/types';
import { createDashboardModelFixture, createPanelJSONFixture } from './__fixtures__/dashboardFixtures';
2019-02-07 13:58:24 +01:00
import {
dashboardInitCompleted,
dashboardInitFailed,
dashboardInitFetching,
loadDashboardPermissions,
dashboardReducer,
initialState,
} from './reducers';
2018-09-14 08:25:35 +02:00
describe('dashboard reducer', () => {
describe('loadDashboardPermissions', () => {
let state: DashboardState;
beforeEach(() => {
const action = loadDashboardPermissions([
{ id: 2, dashboardId: 1, role: OrgRole.Viewer, permission: PermissionLevel.View },
{ id: 3, dashboardId: 1, role: OrgRole.Editor, permission: PermissionLevel.Edit },
]);
2018-10-25 16:56:49 +02:00
state = dashboardReducer(initialState, action);
2018-09-14 08:25:35 +02:00
});
it('should add permissions to state', async () => {
expect(state.permissions?.length).toBe(2);
2018-09-14 08:25:35 +02:00
});
});
2019-02-07 13:58:24 +01:00
describe('dashboardInitCompleted', () => {
let state: DashboardState;
beforeEach(() => {
state = dashboardReducer(initialState, dashboardInitFetching());
state = dashboardReducer(
state,
dashboardInitCompleted(
createDashboardModelFixture({
title: 'My dashboard',
panels: [createPanelJSONFixture({ id: 1 }), createPanelJSONFixture({ id: 2 })],
})
)
);
2019-02-07 13:58:24 +01:00
});
it('should set model', async () => {
expect(state.getModel()!.title).toBe('My dashboard');
2019-02-07 13:58:24 +01:00
});
});
describe('dashboardInitFailed', () => {
let state: DashboardState;
beforeEach(() => {
state = dashboardReducer(initialState, dashboardInitFetching());
state = dashboardReducer(state, dashboardInitFailed({ message: 'Oh no', error: 'sad' }));
2019-02-07 13:58:24 +01:00
});
it('should set model', async () => {
expect(state.getModel()?.title).toBe('Dashboard init failed');
2019-02-07 13:58:24 +01:00
});
it('should set initError', async () => {
expect(state.initError?.message).toBe('Oh no');
2019-02-07 13:58:24 +01:00
});
it('should set phase failed', async () => {
expect(state.initPhase).toBe(DashboardInitPhase.Failed);
});
});
2018-09-14 08:25:35 +02:00
});