import * as qs from 'query-string'; import {OrganizationFixture} from 'sentry-fixture/organization'; import {render, screen, userEvent} from 'sentry-test/reactTestingLibrary'; import selectEvent from 'sentry-test/selectEvent'; import AwsLambdaCloudformation from 'sentry/views/integrationPipeline/awsLambdaCloudformation'; describe('AwsLambdaCloudformation', () => { let windowAssignMock; beforeEach(() => { windowAssignMock = jest.fn(); window.location.assign = windowAssignMock; window.localStorage.setItem('AWS_EXTERNAL_ID', 'my-id'); }); it('submit arn', async () => { render( ); // Open configuration fields await userEvent.click(screen.getByRole('button', {name: "I've created the stack"})); // Fill out fields await userEvent.type( screen.getByRole('textbox', {name: 'AWS Account ID'}), '599817902985' ); await selectEvent.select(screen.getByRole('textbox', {name: 'AWS Region'}), [ 'us-west-1', ]); expect(screen.getByRole('button', {name: 'Next'})).toBeEnabled(); await userEvent.click(screen.getByRole('button', {name: 'Next'})); const query = qs.stringify({ accountNumber: '599817902985', region: 'us-west-1', awsExternalId: 'my-id', }); expect(windowAssignMock).toHaveBeenCalledWith( `${window.location.origin}/extensions/aws_lambda/setup/?${query}` ); }); });