grafana/public/app/core/specs/OrgSwitcher.test.tsx
Josh Hunt 3c6e0e8ef8
Chore: ESlint import order (#44959)
* Add and configure eslint-plugin-import

* Fix the lint:ts npm command

* Autofix + prettier all the files

* Manually fix remaining files

* Move jquery code in jest-setup to external file to safely reorder imports

* Resolve issue caused by circular dependencies within Prometheus

* Update .betterer.results

* Fix missing // @ts-ignore

* ignore iconBundle.ts

* Fix missing // @ts-ignore
2022-04-22 14:33:13 +01:00

72 lines
2.3 KiB
TypeScript

import { render, screen, waitFor, within } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import React from 'react';
import { api } from '../../features/profile/api';
import { OrgRole } from '../../types';
import { OrgSwitcher } from '../components/OrgSwitcher';
jest.mock('@grafana/runtime', () => ({
config: {
appSubUrl: '/subUrl',
},
}));
jest.mock('app/core/services/context_srv', () => ({
contextSrv: {
user: { orgId: 1 },
},
}));
describe('OrgSwitcher', () => {
const { location } = window;
let setUserOrgSpy: jest.SpyInstance;
beforeEach(async () => {
jest.clearAllMocks();
const orgs = [
{ orgId: 1, name: 'Main Org.', role: OrgRole.Admin },
{ orgId: 2, name: 'Org 2', role: OrgRole.Admin },
];
const loadOrgsSpy = jest.spyOn(api, 'loadOrgs').mockResolvedValue(orgs);
setUserOrgSpy = jest.spyOn(api, 'setUserOrg').mockResolvedValue(undefined);
// @ts-ignore
delete window.location;
window.location = {} as Location;
render(<OrgSwitcher onDismiss={() => {}} />);
await waitFor(() => expect(loadOrgsSpy).toHaveBeenCalledTimes(1));
});
afterEach(() => {
window.location = location;
});
describe('when switching org', () => {
it('should render correct rows', async () => {
expect(screen.getAllByRole('row')).toHaveLength(3); // header + 2 orgs
expect(screen.getByRole('row', { name: /main org. admin current/i })).toBeInTheDocument();
expect(screen.getByRole('row', { name: /org 2 admin switch to/i })).toBeInTheDocument();
});
it('should switch orgId in call to backend', async () => {
const row = screen.getByRole('row', { name: /org 2 admin switch to/i });
const switchToButton = within(row).getByText(/switch to/i);
await userEvent.click(switchToButton);
await waitFor(() => expect(setUserOrgSpy).toBeCalledWith({ orgId: 2, name: 'Org 2', role: 'Admin' }));
});
it('should redirect to home page', async () => {
expect(window.location.href).toBeUndefined();
const row = screen.getByRole('row', { name: /org 2 admin switch to/i });
const switchToButton = within(row).getByText(/switch to/i);
await userEvent.click(switchToButton);
await waitFor(() => expect(window.location.href).toEqual('/subUrl/?orgId=2'));
});
});
});