mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
* fix any's in tests * fix more any's in tests * more test type fixes * fixing any's in tests part 3 * more test type fixes * fixing test any's p5 * some tidy up * fix template_srv
154 lines
3.8 KiB
TypeScript
154 lines
3.8 KiB
TypeScript
import { render, screen } from '@testing-library/react';
|
|
import React from 'react';
|
|
import { match } from 'react-router-dom';
|
|
import { TestProvider } from 'test/helpers/TestProvider';
|
|
|
|
import { createTheme } from '@grafana/data';
|
|
import { getRouteComponentProps } from 'app/core/navigation/__mocks__/routeProps';
|
|
import { User } from 'app/core/services/context_srv';
|
|
|
|
import { OrgRole, Team, TeamMember } from '../../types';
|
|
|
|
import { Props, TeamPages } from './TeamPages';
|
|
import { getMockTeam } from './__mocks__/teamMocks';
|
|
|
|
jest.mock('app/core/components/Select/UserPicker', () => {
|
|
return { UserPicker: () => null };
|
|
});
|
|
|
|
jest.mock('app/core/services/context_srv', () => ({
|
|
contextSrv: {
|
|
accessControlEnabled: () => false,
|
|
hasPermissionInMetadata: () => false,
|
|
hasAccessInMetadata: () => true,
|
|
user: {},
|
|
},
|
|
}));
|
|
|
|
jest.mock('@grafana/runtime', () => ({
|
|
...jest.requireActual('@grafana/runtime'),
|
|
getBackendSrv: () => ({
|
|
get: jest.fn().mockResolvedValue([{ userId: 1, login: 'Test' }]),
|
|
}),
|
|
config: {
|
|
licenseInfo: {
|
|
enabledFeatures: { teamsync: true },
|
|
stateInfo: '',
|
|
licenseUrl: '',
|
|
},
|
|
featureToggles: { accesscontrol: false },
|
|
bootData: { navTree: [], user: {} },
|
|
buildInfo: {
|
|
edition: 'Open Source',
|
|
version: '7.5.0',
|
|
commit: 'abc123',
|
|
env: 'production',
|
|
latestVersion: '',
|
|
hasUpdate: false,
|
|
hideVersion: false,
|
|
},
|
|
appSubUrl: '',
|
|
},
|
|
featureEnabled: () => true,
|
|
}));
|
|
|
|
// Mock connected child components instead of rendering them
|
|
jest.mock('./TeamSettings', () => {
|
|
//eslint-disable-next-line
|
|
return () => <div>Team settings</div>;
|
|
});
|
|
|
|
jest.mock('./TeamGroupSync', () => {
|
|
//eslint-disable-next-line
|
|
return () => <div>Team group sync</div>;
|
|
});
|
|
|
|
const setup = (propOverrides?: object) => {
|
|
const props: Props = {
|
|
...getRouteComponentProps({
|
|
match: {
|
|
params: {
|
|
id: '1',
|
|
page: null,
|
|
},
|
|
} as unknown as match,
|
|
}),
|
|
pageNav: { text: 'Cool team ' },
|
|
teamId: 1,
|
|
loadTeam: jest.fn(),
|
|
loadTeamMembers: jest.fn(),
|
|
pageName: 'members',
|
|
team: {} as Team,
|
|
members: [] as TeamMember[],
|
|
editorsCanAdmin: false,
|
|
theme: createTheme(),
|
|
signedInUser: {
|
|
id: 1,
|
|
isGrafanaAdmin: false,
|
|
orgRole: OrgRole.Viewer,
|
|
} as User,
|
|
};
|
|
|
|
Object.assign(props, propOverrides);
|
|
|
|
render(
|
|
<TestProvider>
|
|
<TeamPages {...props} />
|
|
</TestProvider>
|
|
);
|
|
};
|
|
|
|
describe('TeamPages', () => {
|
|
it('should render member page if team not empty', async () => {
|
|
setup({
|
|
team: getMockTeam(),
|
|
});
|
|
expect(await screen.findByRole('button', { name: 'Add member' })).toBeInTheDocument();
|
|
});
|
|
|
|
it('should render settings and preferences page', async () => {
|
|
setup({
|
|
team: getMockTeam(),
|
|
pageName: 'settings',
|
|
preferences: {
|
|
homeDashboardUID: 'home-dashboard',
|
|
theme: 'Default',
|
|
timezone: 'Default',
|
|
},
|
|
});
|
|
|
|
expect(await screen.findByText('Team settings')).toBeInTheDocument();
|
|
});
|
|
|
|
it('should render group sync page', async () => {
|
|
setup({
|
|
team: getMockTeam(),
|
|
pageName: 'groupsync',
|
|
});
|
|
|
|
expect(await screen.findByText('Team group sync')).toBeInTheDocument();
|
|
});
|
|
|
|
describe('when feature toggle editorsCanAdmin is turned on', () => {
|
|
it('should render settings page if user is team admin', async () => {
|
|
setup({
|
|
team: getMockTeam(),
|
|
pageName: 'settings',
|
|
preferences: {
|
|
homeDashboardUID: 'home-dashboard',
|
|
theme: 'Default',
|
|
timezone: 'Default',
|
|
},
|
|
editorsCanAdmin: true,
|
|
signedInUser: {
|
|
id: 1,
|
|
isGrafanaAdmin: false,
|
|
orgRole: OrgRole.Admin,
|
|
} as User,
|
|
});
|
|
|
|
expect(await screen.findByText('Team settings')).toBeInTheDocument();
|
|
});
|
|
});
|
|
});
|