123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- import {mountWithTheme} from 'sentry-test/enzyme';
- import SentryAppDetailsModal from 'sentry/components/modals/sentryAppDetailsModal';
- describe('SentryAppDetailsModal', function () {
- let wrapper;
- let org;
- let sentryApp;
- let onInstall;
- let isInstalled;
- let closeModal;
- const installButton = 'Button[data-test-id="install"]';
- let sentryAppInteractionRequest;
- function mount() {
- return mountWithTheme(
- <SentryAppDetailsModal
- sentryApp={sentryApp}
- organization={org}
- onInstall={onInstall}
- isInstalled={isInstalled}
- closeModal={closeModal}
- />
- );
- }
- beforeEach(() => {
- org = TestStubs.Organization();
- sentryApp = TestStubs.SentryApp();
- onInstall = jest.fn();
- isInstalled = false;
- closeModal = jest.fn();
- MockApiClient.addMockResponse({
- url: `/sentry-apps/${sentryApp.slug}/features/`,
- method: 'GET',
- body: [],
- });
- sentryAppInteractionRequest = MockApiClient.addMockResponse({
- url: `/sentry-apps/${sentryApp.slug}/interaction/`,
- method: 'POST',
- statusCode: 200,
- body: {},
- });
- wrapper = mount();
- });
- it('renders', () => {
- expect(wrapper.find('Name').text()).toBe(sentryApp.name);
- });
- it('records interaction request', () => {
- expect(sentryAppInteractionRequest).toHaveBeenCalledWith(
- `/sentry-apps/${sentryApp.slug}/interaction/`,
- expect.objectContaining({
- method: 'POST',
- data: {
- tsdbField: 'sentry_app_viewed',
- },
- })
- );
- });
- it('displays the Integrations description', () => {
- expect(wrapper.find('Description').text()).toContain(sentryApp.overview);
- });
- it('closes when Cancel is clicked', () => {
- wrapper.find({onClick: closeModal}).first().simulate('click');
- expect(closeModal).toHaveBeenCalled();
- });
- it('installs the Integration when Install is clicked', () => {
- wrapper.find(installButton).simulate('click');
- expect(onInstall).toHaveBeenCalled();
- });
- describe('when the User does not have permission to install Integrations', () => {
- beforeEach(() => {
- org = {...org, access: []};
- wrapper = mount();
- });
- it('does not display the Install button', () => {
- expect(wrapper.find(installButton).length).toBe(0);
- });
- });
- describe('when the Integration is installed', () => {
- beforeEach(() => {
- isInstalled = true;
- wrapper = mount();
- });
- it('disabled the Install button', () => {
- expect(wrapper.find(installButton).prop('disabled')).toBe(true);
- });
- });
- describe('when the Integration requires no permissions', () => {
- beforeEach(() => {
- sentryApp = {...sentryApp, scopes: []};
- wrapper = mount();
- });
- it('does not render permissions', () => {
- expect(wrapper.exists('Title')).toBe(false);
- });
- });
- });
|