123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {render, screen, waitFor} from 'sentry-test/reactTestingLibrary';
- import {useLocation} from 'sentry/utils/useLocation';
- import useOrganization from 'sentry/utils/useOrganization';
- import usePageFilters from 'sentry/utils/usePageFilters';
- import PageOverview from 'sentry/views/performance/browser/webVitals/pageOverview';
- jest.mock('sentry/utils/useLocation');
- jest.mock('sentry/utils/usePageFilters');
- jest.mock('sentry/utils/useOrganization');
- describe('PageOverview', function () {
- const organization = OrganizationFixture({
- features: ['starfish-browser-webvitals', 'performance-database-view'],
- });
- let eventsMock;
- beforeEach(function () {
- jest.mocked(useLocation).mockReturnValue({
- pathname: '',
- search: '',
- query: {},
- hash: '',
- state: undefined,
- action: 'PUSH',
- key: '',
- });
- jest.mocked(usePageFilters).mockReturnValue({
- isReady: true,
- desyncedFilters: new Set(),
- pinnedFilters: new Set(),
- shouldPersist: true,
- selection: {
- datetime: {
- period: '10d',
- start: null,
- end: null,
- utc: false,
- },
- environments: [],
- projects: [],
- },
- });
- jest.mocked(useOrganization).mockReturnValue(organization);
- eventsMock = MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: {
- data: [],
- },
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events-stats/`,
- body: {},
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/spans-aggregation/`,
- body: {},
- });
- });
- afterEach(function () {
- jest.clearAllMocks();
- });
- it('renders FID deprecation alert', async () => {
- jest.mocked(useLocation).mockReturnValue({
- pathname: '',
- search: '',
- query: {useStoredScores: 'true', transaction: '/'},
- hash: '',
- state: undefined,
- action: 'PUSH',
- key: '',
- });
- render(<PageOverview />);
- await screen.findByText(/\(Interaction to Next Paint\) will replace/);
- await screen.findByText(
- /\(First Input Delay\) in our performance score calculation./
- );
- });
- it('renders interaction samples', async () => {
- const organizationWithInp = OrganizationFixture({
- features: [
- 'starfish-browser-webvitals',
- 'performance-database-view',
- 'starfish-browser-webvitals-replace-fid-with-inp',
- ],
- });
- jest.mocked(useOrganization).mockReturnValue(organizationWithInp);
- jest.mocked(useLocation).mockReturnValue({
- pathname: '',
- search: '',
- query: {useStoredScores: 'true', transaction: '/', type: 'interactions'},
- hash: '',
- state: undefined,
- action: 'PUSH',
- key: '',
- });
- render(<PageOverview />);
- await waitFor(() =>
- expect(eventsMock).toHaveBeenCalledWith(
- '/organizations/org-slug/events/',
- expect.objectContaining({
- query: expect.objectContaining({
- dataset: 'spansIndexed',
- field: [
- 'measurements.inp',
- 'measurements.score.inp',
- 'measurements.score.weight.inp',
- 'measurements.score.total',
- 'span_id',
- 'timestamp',
- 'profile_id',
- 'replay.id',
- 'user',
- 'origin.transaction',
- 'project',
- 'browser.name',
- 'span.self_time',
- 'span.description',
- ],
- query:
- 'span.op:ui.interaction.click measurements.score.weight.inp:>0 origin.transaction:/',
- }),
- })
- )
- );
- });
- });
|