123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- import {render, screen, userEvent, waitFor} from 'sentry-test/reactTestingLibrary';
- import * as indicators from 'sentry/actionCreators/indicator';
- import ProjectPluginDetailsContainer, {
- ProjectPluginDetails,
- } from 'sentry/views/settings/projectPlugins/details';
- describe('ProjectPluginDetails', function () {
- const organization = TestStubs.Organization();
- const project = TestStubs.Project();
- const plugins = TestStubs.Plugins();
- const plugin = TestStubs.Plugin();
- const routerProps = TestStubs.routeComponentProps();
- beforeAll(function () {
- jest.spyOn(console, 'info').mockImplementation(() => {});
- });
- beforeEach(function () {
- MockApiClient.addMockResponse({
- url: `/projects/${organization.slug}/${project.slug}/plugins/`,
- method: 'GET',
- body: plugins,
- });
- MockApiClient.addMockResponse({
- url: `/projects/${organization.slug}/${project.slug}/plugins/${plugin.id}/`,
- method: 'DELETE',
- });
- MockApiClient.addMockResponse({
- url: `/projects/${organization.slug}/${project.slug}/plugins/${plugin.id}/`,
- method: 'GET',
- body: plugin,
- });
- MockApiClient.addMockResponse({
- url: `/projects/${organization.slug}/${project.slug}/plugins/${plugin.id}/`,
- method: 'POST',
- body: {
- ...plugin,
- config: [{value: 'default'}],
- },
- });
- });
- it('renders', function () {
- render(
- <ProjectPluginDetailsContainer
- {...routerProps}
- organization={organization}
- project={project}
- params={{
- projectId: project.slug,
- pluginId: 'amazon-sqs',
- }}
- />
- );
- });
- it('resets plugin', async function () {
- jest.spyOn(indicators, 'addSuccessMessage');
- render(
- <ProjectPluginDetails
- {...routerProps}
- organization={organization}
- project={project}
- plugins={{plugins}}
- params={{
- projectId: project.slug,
- pluginId: 'amazon-sqs',
- }}
- />
- );
- await userEvent.click(screen.getByRole('button', {name: 'Reset Configuration'}));
- await waitFor(() =>
- expect(indicators.addSuccessMessage).toHaveBeenCalledWith('Plugin was reset')
- );
- });
- it('enables/disables plugin', async function () {
- jest.spyOn(indicators, 'addSuccessMessage');
- render(
- <ProjectPluginDetailsContainer
- {...routerProps}
- organization={organization}
- project={project}
- params={{
- projectId: project.slug,
- pluginId: 'amazon-sqs',
- }}
- />
- );
- await userEvent.click(screen.getByRole('button', {name: 'Enable Plugin'}));
- await waitFor(() =>
- expect(indicators.addSuccessMessage).toHaveBeenCalledWith('Plugin was enabled')
- );
- });
- });
|