123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- import {Location} from 'history';
- import {GlobalSelectionFixture} from 'sentry-fixture/globalSelection';
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {ProjectFixture} from 'sentry-fixture/project';
- import {RouterContextFixture} from 'sentry-fixture/routerContextFixture';
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import OrganizationStore from 'sentry/stores/organizationStore';
- import ProfileSummaryPage from 'sentry/views/profiling/profileSummary';
- Object.defineProperty(window, 'matchMedia', {
- writable: true,
- value: jest.fn().mockImplementation(query => ({
- matches: false,
- media: query,
- onchange: null,
- addListener: jest.fn(), // Deprecated
- removeListener: jest.fn(), // Deprecated
- addEventListener: jest.fn(),
- removeEventListener: jest.fn(),
- dispatchEvent: jest.fn(),
- })),
- });
- // Replace the webgl renderer with a dom renderer for tests
- jest.mock('sentry/utils/profiling/renderers/flamegraphRendererWebGL', () => {
- const {
- FlamegraphRendererDOM,
- } = require('sentry/utils/profiling/renderers/flamegraphRendererDOM');
- return {
- FlamegraphRendererWebGL: FlamegraphRendererDOM,
- };
- });
- window.ResizeObserver =
- window.ResizeObserver ||
- jest.fn().mockImplementation(() => ({
- disconnect: jest.fn(),
- observe: jest.fn(),
- unobserve: jest.fn(),
- }));
- describe('ProfileSummaryPage', () => {
- it('renders new page', async () => {
- const organization = OrganizationFixture({
- features: [],
- projects: [ProjectFixture()],
- });
- OrganizationStore.onUpdate(organization);
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/projects/`,
- body: [ProjectFixture()],
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/profiling/filters/`,
- body: [],
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events-stats/`,
- body: {},
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/profiling/flamegraph/`,
- body: [],
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: {
- data: [{'last_seen()': new Date()}],
- },
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/profiling/function-trends/`,
- body: [],
- });
- render(
- <ProfileSummaryPage
- view="flamegraph"
- params={{}}
- selection={GlobalSelectionFixture()}
- location={
- {
- query: {transaction: 'fancyservice'},
- } as unknown as Location
- }
- />,
- {
- organization: OrganizationFixture({
- features: ['profiling-summary-redesign'],
- }),
- context: RouterContextFixture(),
- }
- );
- expect(await screen.findByTestId(/profile-summary-redesign/i)).toBeInTheDocument();
- });
- });
|