123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import {render, waitFor} from 'sentry-test/reactTestingLibrary';
- import AddIntegration from 'sentry/views/settings/organizationIntegrations/addIntegration';
- describe('AddIntegration', function () {
- const provider = TestStubs.GitHubIntegrationProvider();
- const integration = TestStubs.GitHubIntegration();
- function interceptMessageEvent(event) {
- if (event.origin === '') {
- event.stopImmediatePropagation();
- const eventWithOrigin = new MessageEvent('message', {
- data: event.data,
- origin: 'https://foobar.sentry.io',
- });
- window.dispatchEvent(eventWithOrigin);
- }
- }
- beforeEach(function () {
- window.__initialData = {
- customerDomain: {
- subdomain: 'foobar',
- organizationUrl: 'https://foobar.sentry.io',
- sentryUrl: 'https://sentry.io',
- },
- links: {
- sentryUrl: 'https://sentry.io',
- },
- };
- window.location = 'https://foobar.sentry.io';
- window.addEventListener('message', interceptMessageEvent);
- });
- afterEach(function () {
- window.removeEventListener('message', interceptMessageEvent);
- });
- it('Adds an integration on dialog completion', async function () {
- const onAdd = jest.fn();
- const focus = jest.fn();
- const open = jest.fn().mockReturnValue({focus});
- global.open = open;
- render(
- <AddIntegration provider={provider} onInstall={onAdd}>
- {onClick => (
- <a href="#" onClick={onClick}>
- Click
- </a>
- )}
- </AddIntegration>
- );
- const newIntegration = {
- success: true,
- data: Object.assign({}, integration, {
- id: '2',
- domain_name: 'new-integration.github.com',
- icon: 'http://example.com/new-integration-icon.png',
- name: 'New Integration',
- }),
- };
- window.postMessage(newIntegration, '*');
- await waitFor(() => expect(onAdd).toHaveBeenCalledWith(newIntegration.data));
- });
- });
|