123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- import {doEventsRequest} from 'sentry/actionCreators/events';
- describe('Events ActionCreator', function () {
- const api = new MockApiClient();
- const organization = TestStubs.Organization();
- const project = TestStubs.Project();
- const opts = {
- organization,
- project: [project.id],
- environment: [],
- };
- let mock: jest.Mock;
- beforeEach(function () {
- MockApiClient.clearMockResponses();
- mock = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events-stats/',
- body: {
- data: [
- [123, []],
- [123, []],
- [123, []],
- [123, []],
- [123, []],
- [123, []],
- ],
- },
- });
- });
- it('requests events stats with relative period', function () {
- doEventsRequest(api, {
- ...opts,
- includePrevious: false,
- period: '7d',
- partial: true,
- });
- expect(mock).toHaveBeenLastCalledWith(
- '/organizations/org-slug/events-stats/',
- expect.objectContaining({
- query: expect.objectContaining({
- project: [project.id],
- environment: [],
- statsPeriod: '7d',
- }),
- })
- );
- });
- it('requests events stats with relative period including previous period', function () {
- doEventsRequest(api, {
- ...opts,
- includePrevious: true,
- period: '7d',
- partial: true,
- });
- expect(mock).toHaveBeenLastCalledWith(
- '/organizations/org-slug/events-stats/',
- expect.objectContaining({
- query: expect.objectContaining({
- project: [project.id],
- environment: [],
- statsPeriod: '14d',
- }),
- })
- );
- });
- it('requests events stats with absolute period', function () {
- const start = new Date('2017-10-12T12:00:00.000Z');
- const end = new Date('2017-10-17T00:00:00.000Z');
- doEventsRequest(api, {
- ...opts,
- includePrevious: false,
- start,
- end,
- partial: true,
- });
- expect(mock).toHaveBeenCalledTimes(1);
- expect(mock).toHaveBeenLastCalledWith(
- '/organizations/org-slug/events-stats/',
- expect.objectContaining({
- query: expect.objectContaining({
- project: [project.id],
- environment: [],
- start: '2017-10-12T12:00:00',
- end: '2017-10-17T00:00:00',
- }),
- })
- );
- });
- it('requests events stats with absolute period including previous period', async function () {
- const start = new Date('2017-10-12T12:00:00.000Z');
- const end = new Date('2017-10-17T00:00:00.000Z');
- await doEventsRequest(api, {
- ...opts,
- includePrevious: true,
- start,
- end,
- partial: true,
- });
- expect(mock).toHaveBeenLastCalledWith(
- '/organizations/org-slug/events-stats/',
- expect.objectContaining({
- query: expect.objectContaining({
- project: [project.id],
- environment: [],
- start: '2017-10-08T00:00:00',
- end: '2017-10-17T00:00:00',
- }),
- })
- );
- });
- });
|