123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {ProjectFixture} from 'sentry-fixture/project';
- import {RouteComponentPropsFixture} from 'sentry-fixture/routeComponentPropsFixture';
- import {act, render, screen, userEvent, waitFor} from 'sentry-test/reactTestingLibrary';
- import selectEvent from 'sentry-test/selectEvent';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import {browserHistory} from 'sentry/utils/browserHistory';
- import ManageDashboards from 'sentry/views/dashboards/manage';
- const FEATURES = [
- 'global-views',
- 'dashboards-basic',
- 'dashboards-edit',
- 'discover-query',
- ];
- describe('Dashboards > Detail', function () {
- const mockUnauthorizedOrg = OrganizationFixture({
- features: ['global-views', 'dashboards-basic', 'discover-query'],
- });
- const mockAuthorizedOrg = OrganizationFixture({
- features: FEATURES,
- });
- beforeEach(function () {
- act(() => ProjectsStore.loadInitialData([ProjectFixture()]));
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/projects/',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/dashboards/?sort=name&per_page=9',
- body: [],
- });
- });
- afterEach(function () {
- MockApiClient.clearMockResponses();
- });
- it('denies access on missing feature', function () {
- render(
- <ManageDashboards
- {...RouteComponentPropsFixture()}
- organization={mockUnauthorizedOrg}
- />
- );
- expect(screen.getByText("You don't have access to this feature")).toBeInTheDocument();
- });
- it('denies access on no projects', function () {
- act(() => ProjectsStore.loadInitialData([]));
- render(
- <ManageDashboards
- {...RouteComponentPropsFixture()}
- organization={mockAuthorizedOrg}
- />
- );
- expect(
- screen.getByText('You need at least one project to use this view')
- ).toBeInTheDocument();
- });
- it('creates new dashboard', async function () {
- const org = OrganizationFixture({features: FEATURES});
- render(<ManageDashboards {...RouteComponentPropsFixture()} organization={org} />);
- await userEvent.click(screen.getByTestId('dashboard-create'));
- expect(browserHistory.push).toHaveBeenCalledWith({
- pathname: '/organizations/org-slug/dashboards/new/',
- query: {},
- });
- });
- it('can sort', async function () {
- const org = OrganizationFixture({features: FEATURES});
- render(<ManageDashboards {...RouteComponentPropsFixture()} organization={org} />);
- await selectEvent.select(
- screen.getByRole('button', {name: /sort by/i}),
- 'Dashboard Name (A-Z)'
- );
- await waitFor(() => {
- expect(browserHistory.push).toHaveBeenCalledWith(
- expect.objectContaining({query: {sort: 'title'}})
- );
- });
- });
- });
|