123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- import {
- MEPState,
- METRIC_SEARCH_SETTING_PARAM,
- } from 'sentry/utils/performance/contexts/metricsEnhancedSetting';
- import {
- DEFAULT_STATS_PERIOD,
- generatePerformanceEventView,
- } from 'sentry/views/performance/data';
- describe('generatePerformanceEventView()', function () {
- const organization = TestStubs.Organization();
- it('generates default values', function () {
- const result = generatePerformanceEventView(
- TestStubs.location({query: {}}),
- [],
- {},
- organization
- );
- expect(result.id).toBeUndefined();
- expect(result.name).toEqual('Performance');
- expect(result.fields.length).toBeGreaterThanOrEqual(7);
- expect(result.query).toEqual('');
- expect(result.getQueryWithAdditionalConditions()).toEqual('event.type:transaction');
- expect(result.sorts).toEqual([{kind: 'desc', field: 'tpm'}]);
- expect(result.statsPeriod).toEqual(DEFAULT_STATS_PERIOD);
- });
- it('applies sort from location', function () {
- const result = generatePerformanceEventView(
- TestStubs.location({query: {sort: ['-p50', '-count']}}),
- [],
- {},
- organization
- );
- expect(result.sorts).toEqual([{kind: 'desc', field: 'p50'}]);
- expect(result.statsPeriod).toEqual(DEFAULT_STATS_PERIOD);
- });
- it('does not override statsPeriod from location', function () {
- const result = generatePerformanceEventView(
- TestStubs.location({query: {statsPeriod: ['90d', '45d']}}),
- [],
- {},
- organization
- );
- expect(result.start).toBeUndefined();
- expect(result.end).toBeUndefined();
- expect(result.statsPeriod).toEqual('90d');
- });
- it('does not apply range when start and end are present', function () {
- const result = generatePerformanceEventView(
- TestStubs.location({
- query: {start: '2020-04-25T12:00:00', end: '2020-05-25T12:00:00'},
- }),
- [],
- {},
- organization
- );
- expect(result.start).toEqual('2020-04-25T12:00:00.000');
- expect(result.end).toEqual('2020-05-25T12:00:00.000');
- expect(result.statsPeriod).toBeUndefined();
- });
- it('converts bare query into transaction name wildcard', function () {
- const result = generatePerformanceEventView(
- TestStubs.location({query: {query: 'things.update'}}),
- [],
- {},
- organization
- );
- expect(result.query).toEqual(expect.stringContaining('transaction:*things.update*'));
- expect(result.getQueryWithAdditionalConditions()).toEqual(
- expect.stringContaining('event.type:transaction')
- );
- });
- it('bare query overwrites transaction condition', function () {
- const result = generatePerformanceEventView(
- TestStubs.location({query: {query: 'things.update transaction:thing.gone'}}),
- [],
- {},
- organization
- );
- expect(result.query).toEqual(expect.stringContaining('transaction:*things.update*'));
- expect(result.getQueryWithAdditionalConditions()).toEqual(
- expect.stringContaining('event.type:transaction')
- );
- expect(result.query).toEqual(expect.not.stringContaining('transaction:thing.gone'));
- });
- it('retains tag filter conditions', function () {
- const result = generatePerformanceEventView(
- TestStubs.location({query: {query: 'key:value tag:value'}}),
- [],
- {},
- organization
- );
- expect(result.query).toEqual(expect.stringContaining('key:value'));
- expect(result.query).toEqual(expect.stringContaining('tag:value'));
- expect(result.getQueryWithAdditionalConditions()).toEqual(
- expect.stringContaining('event.type:transaction')
- );
- });
- it('gets the right column', function () {
- const result = generatePerformanceEventView(
- TestStubs.location({query: {query: 'key:value tag:value'}}),
- [],
- {},
- organization
- );
- expect(result.fields).toEqual(
- expect.arrayContaining([expect.objectContaining({field: 'user_misery()'})])
- );
- expect(result.fields).toEqual(
- expect.arrayContaining([expect.objectContaining({field: 'count_miserable(user)'})])
- );
- expect(result.fields).toEqual(
- expect.arrayContaining([expect.objectContaining({field: 'apdex()'})])
- );
- });
- it('removes unsupported tokens for limited search', function () {
- const result = generatePerformanceEventView(
- TestStubs.location({
- query: {
- query: 'tag:value transaction:*auth*',
- [METRIC_SEARCH_SETTING_PARAM]: MEPState.METRICS_ONLY,
- },
- }),
- [],
- {withStaticFilters: true},
- organization
- );
- expect(result.query).toEqual('transaction:*auth*');
- });
- });
|