import {fireEvent, mountWithTheme} from 'sentry-test/reactTestingLibrary';
import {Client} from 'app/api';
import {ErrorRobot} from 'app/components/errorRobot';
describe('ErrorRobot', function () {
let getIssues;
let routerContext;
beforeEach(function () {
routerContext = TestStubs.routerContext();
getIssues = Client.addMockResponse({
url: '/projects/org-slug/project-slug/issues/',
method: 'GET',
body: [],
});
});
afterEach(() => {
jest.clearAllMocks();
Client.clearMockResponses();
});
describe('with a project', function () {
function createWrapper() {
return mountWithTheme(
,
{context: routerContext}
);
}
it('Renders a button for creating an event', function () {
const wrapper = createWrapper();
const button = wrapper.getByRole('button', {name: 'Create a sample event'});
expect(button).not.toBeDisabled();
expect(getIssues).toHaveBeenCalled();
});
it('Renders installation instructions', function () {
const wrapper = createWrapper();
fireEvent.click(wrapper.getByText('Installation Instructions'));
expect(routerContext.context.router.push).toHaveBeenCalledWith(
'/org-slug/project-slug/getting-started/'
);
});
});
describe('without a project', function () {
function createWrapper() {
return mountWithTheme(
,
{context: routerContext}
);
}
it('Renders a disabled create event button', function () {
const wrapper = createWrapper();
const button = wrapper.getByRole('button', {name: 'Create a sample event'});
expect(button).toBeDisabled();
expect(getIssues).toHaveBeenCalledTimes(0);
});
it('does not display install instructions', function () {
const wrapper = createWrapper();
expect(wrapper.queryByText('Installation Instructions')).toBeNull();
});
});
});