1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import EventView from 'sentry/utils/discover/eventView';
- import {ALL_VIEWS} from 'sentry/views/discover/data';
- import {
- handleCreateQuery,
- handleDeleteQuery,
- handleUpdateQuery,
- handleUpdateQueryName,
- } from 'sentry/views/discover/savedQuery/utils';
- describe('SavedQueries API helpers', () => {
- const api = new MockApiClient();
- const organization = OrganizationFixture();
- const errorsQuery = ALL_VIEWS.find(view => view.name === 'Errors by Title')!;
- const errorsView = EventView.fromSavedQuery(errorsQuery);
- errorsView.id = '1'; // set id manually as errorsView.id is undefined
- const yAxis = ['count()', 'failure_count()'];
- let mockCall;
- afterEach(() => {
- MockApiClient.clearMockResponses();
- });
- describe('handleCreateQuery', () => {
- beforeEach(() => {
- mockCall = MockApiClient.addMockResponse({
- method: 'POST',
- url: `/organizations/${organization.slug}/discover/saved/`,
- body: {data: {}, fromBody: {}},
- });
- });
- it('calls the correct API endpoint', async () => {
- const response = await handleCreateQuery(api, organization, errorsView, yAxis);
- expect(mockCall).toHaveBeenCalledWith(
- expect.anything(),
- expect.objectContaining({
- data: expect.objectContaining({yAxis}),
- })
- );
- expect(response).toEqual({data: {}, fromBody: {}});
- });
- });
- describe('handleUpdateQuery', () => {
- beforeEach(() => {
- mockCall = MockApiClient.addMockResponse({
- method: 'PUT',
- url: `/organizations/${organization.slug}/discover/saved/${errorsView.id}/`,
- body: {data: {}, fromBody: {}},
- });
- });
- it('calls the correct API endpoint', async () => {
- const response = await handleUpdateQuery(api, organization, errorsView, yAxis);
- expect(mockCall).toHaveBeenCalledWith(
- expect.anything(),
- expect.objectContaining({
- data: expect.objectContaining({yAxis}),
- })
- );
- expect(response).toEqual({data: {}, fromBody: {}});
- });
- });
- describe('handleUpdateQueryName', () => {
- beforeEach(() => {
- MockApiClient.addMockResponse({
- method: 'PUT',
- url: `/organizations/${organization.slug}/discover/saved/${errorsView.id}/`,
- body: {data: {}, fromBody: {}},
- });
- });
- it('calls the correct API endpoint', async () => {
- const response = await handleUpdateQueryName(api, organization, errorsView);
- expect(response).toEqual({data: {}, fromBody: {}});
- });
- });
- describe('handleDeleteQuery', () => {
- beforeEach(() => {
- MockApiClient.addMockResponse({
- method: 'DELETE',
- url: `/organizations/${organization.slug}/discover/saved/${errorsView.id}/`,
- body: {data: {}, fromBody: {}},
- });
- });
- it('calls the correct API endpoint', async () => {
- const response = await handleDeleteQuery(api, organization, errorsView);
- expect(response).toEqual({data: {}, fromBody: {}});
- });
- });
- });
|