123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- /* eslint-env node */
- /* eslint import/no-nodejs-modules:0 */
- import path from 'path';
- import {TextDecoder, TextEncoder} from 'util';
- import {ReactElement} from 'react';
- import type {InjectedRouter, RouteComponentProps} from 'react-router';
- import {configure as configureRtl} from '@testing-library/react'; // eslint-disable-line no-restricted-imports
- import type {Location} from 'history';
- import MockDate from 'mockdate';
- import {object as propTypesObject} from 'prop-types';
- import {stringify} from 'query-string';
- import {Organization} from 'sentry-fixture/organization';
- import {Project} from 'sentry-fixture/project';
- // eslint-disable-next-line jest/no-mocks-import
- import type {Client} from 'sentry/__mocks__/api';
- import ConfigStore from 'sentry/stores/configStore';
- import * as performanceForSentry from 'sentry/utils/performanceForSentry';
- import {makeLazyFixtures} from './sentry-test/loadFixtures';
- /**
- * XXX(epurkhiser): Gross hack to fix a bug in jsdom which makes testing of
- * framer-motion SVG components fail
- *
- * See https://github.com/jsdom/jsdom/issues/1330
- */
- // @ts-expect-error
- SVGElement.prototype.getTotalLength ??= () => 1;
- /**
- * React Testing Library configuration to override the default test id attribute
- *
- * See: https://testing-library.com/docs/queries/bytestid/#overriding-data-testid
- */
- configureRtl({testIdAttribute: 'data-test-id'});
- /**
- * Mock (current) date to always be National Pasta Day
- * 2017-10-17T02:41:20.000Z
- */
- const constantDate = new Date(1508208080000);
- MockDate.set(constantDate);
- /**
- * Global testing configuration
- */
- /**
- * Mocks
- */
- jest.mock('lodash/debounce', () =>
- jest.fn(fn => {
- fn.cancel = jest.fn();
- return fn;
- })
- );
- jest.mock('sentry/utils/recreateRoute');
- jest.mock('sentry/api');
- jest.mock('sentry/utils/withOrganization');
- jest
- .spyOn(performanceForSentry, 'VisuallyCompleteWithData')
- .mockImplementation(props => props.children as ReactElement);
- jest.mock('scroll-to-element', () => jest.fn());
- jest.mock('react-router', function reactRouterMockFactory() {
- const ReactRouter = jest.requireActual('react-router');
- return {
- ...ReactRouter,
- browserHistory: {
- goBack: jest.fn(),
- push: jest.fn(),
- replace: jest.fn(),
- listen: jest.fn(() => {}),
- listenBefore: jest.fn(),
- getCurrentLocation: jest.fn(() => ({pathname: '', query: {}})),
- },
- };
- });
- jest.mock('sentry/utils/search/searchBoxTextArea');
- jest.mock('react-virtualized', function reactVirtualizedMockFactory() {
- const ActualReactVirtualized = jest.requireActual('react-virtualized');
- return {
- ...ActualReactVirtualized,
- AutoSizer: ({children}) => children({width: 100, height: 100}),
- };
- });
- jest.mock('echarts-for-react/lib/core', function echartsMockFactory() {
- // We need to do this because `jest.mock` gets hoisted by babel and `React` is not
- // guaranteed to be in scope
- const ReactActual = require('react');
- // We need a class component here because `BaseChart` passes `ref` which will
- // error if we return a stateless/functional component
- return class extends ReactActual.Component {
- render() {
- return null;
- }
- };
- });
- jest.mock('@sentry/react', function sentryReact() {
- const SentryReact = jest.requireActual('@sentry/react');
- return {
- init: jest.fn(),
- configureScope: jest.fn(),
- setTag: jest.fn(),
- setTags: jest.fn(),
- setExtra: jest.fn(),
- setExtras: jest.fn(),
- captureBreadcrumb: jest.fn(),
- addBreadcrumb: jest.fn(),
- captureMessage: jest.fn(),
- captureException: jest.fn(),
- showReportDialog: jest.fn(),
- startSpan: jest.fn(),
- finishSpan: jest.fn(),
- lastEventId: jest.fn(),
- getCurrentHub: jest.spyOn(SentryReact, 'getCurrentHub'),
- withScope: jest.spyOn(SentryReact, 'withScope'),
- Hub: SentryReact.Hub,
- Scope: SentryReact.Scope,
- Severity: SentryReact.Severity,
- withProfiler: SentryReact.withProfiler,
- BrowserTracing: jest.fn().mockReturnValue({}),
- BrowserProfilingIntegration: jest.fn().mockReturnValue({}),
- addGlobalEventProcessor: jest.fn(),
- BrowserClient: jest.fn().mockReturnValue({
- captureEvent: jest.fn(),
- }),
- startTransaction: () => ({
- finish: jest.fn(),
- setTag: jest.fn(),
- setData: jest.fn(),
- setStatus: jest.fn(),
- startChild: jest.fn().mockReturnValue({
- finish: jest.fn(),
- }),
- }),
- };
- });
- const routerFixtures = {
- router: (params = {}): InjectedRouter => ({
- push: jest.fn(),
- replace: jest.fn(),
- go: jest.fn(),
- goBack: jest.fn(),
- goForward: jest.fn(),
- setRouteLeaveHook: jest.fn(),
- isActive: jest.fn(),
- createHref: jest.fn().mockImplementation(to => {
- if (typeof to === 'string') {
- return to;
- }
- if (typeof to === 'object') {
- if (!to.query) {
- return to.pathname;
- }
- return `${to.pathname}?${stringify(to.query)}`;
- }
- return '';
- }),
- location: routerFixtures.location(),
- createPath: jest.fn(),
- routes: [],
- params: {},
- ...params,
- }),
- location: (params: Partial<Location> = {}): Location => ({
- key: '',
- search: '',
- hash: '',
- action: 'PUSH',
- state: null,
- query: {},
- pathname: '/mock-pathname/',
- ...params,
- }),
- routerProps: (params = {}) => ({
- location: routerFixtures.location(),
- params: {},
- routes: [],
- stepBack: () => {},
- ...params,
- }),
- routeComponentProps: <RouteParams = {orgId: string; projectId: string}>(
- params: Partial<RouteComponentProps<RouteParams, {}>> = {}
- ): RouteComponentProps<RouteParams, {}> => {
- const router = routerFixtures.router(params);
- return {
- location: router.location,
- params: router.params as RouteParams & {},
- routes: router.routes,
- route: router.routes[0],
- routeParams: router.params,
- router,
- };
- },
- routerContext: ([context, childContextTypes] = []) => ({
- context: {
- location: routerFixtures.location(),
- router: routerFixtures.router(),
- organization: Organization(),
- project: Project(),
- ...context,
- },
- childContextTypes: {
- router: propTypesObject,
- location: propTypesObject,
- organization: propTypesObject,
- project: propTypesObject,
- ...childContextTypes,
- },
- }),
- };
- const jsFixturesDirectory = path.resolve(__dirname, '../../fixtures/js-stubs/');
- const fixtures = makeLazyFixtures(jsFixturesDirectory, routerFixtures);
- ConfigStore.loadInitialData(fixtures.Config());
- /**
- * Test Globals
- */
- declare global {
- /**
- * Test stubs are automatically loaded from the fixtures/js-stubs
- * directory. Use these for setting up test data.
- *
- * @deprecated Please import test stubs directly and do not use this global.
- */
- // eslint-disable-next-line no-var
- var TestStubs: typeof fixtures;
- /**
- * Generates a promise that resolves on the next macro-task
- */
- // eslint-disable-next-line no-var
- var tick: () => Promise<void>;
- /**
- * Used to mock API requests
- */
- // eslint-disable-next-line no-var
- var MockApiClient: typeof Client;
- }
- // needed by cbor-web for webauthn
- window.TextEncoder = TextEncoder;
- window.TextDecoder = TextDecoder as typeof window.TextDecoder;
- window.TestStubs = fixtures;
- // This is so we can use async/await in tests instead of wrapping with `setTimeout`.
- window.tick = () => new Promise(resolve => setTimeout(resolve));
- window.MockApiClient = jest.requireMock('sentry/api').Client;
- window.scrollTo = jest.fn();
- // We need to re-define `window.location`, otherwise we can't spyOn certain
- // methods as `window.location` is read-only
- Object.defineProperty(window, 'location', {
- value: {...window.location, assign: jest.fn(), reload: jest.fn(), replace: jest.fn()},
- configurable: true,
- writable: true,
- });
- // The JSDOM implementation is too slow
- // Especially for dropdowns that try to position themselves
- // perf issue - https://github.com/jsdom/jsdom/issues/3234
- Object.defineProperty(window, 'getComputedStyle', {
- value: (el: HTMLElement) => {
- /**
- * This is based on the jsdom implementation of getComputedStyle
- * https://github.com/jsdom/jsdom/blob/9dae17bf0ad09042cfccd82e6a9d06d3a615d9f4/lib/jsdom/browser/Window.js#L779-L820
- *
- * It is missing global style parsing and will only return styles applied directly to an element.
- * Will not return styles that are global or from emotion
- */
- const declaration = new CSSStyleDeclaration();
- const {style} = el;
- Array.prototype.forEach.call(style, (property: string) => {
- declaration.setProperty(
- property,
- style.getPropertyValue(property),
- style.getPropertyPriority(property)
- );
- });
- return declaration;
- },
- configurable: true,
- writable: true,
- });
- window.IntersectionObserver = class IntersectionObserver {
- root = null;
- rootMargin = '';
- thresholds = [];
- takeRecords = jest.fn();
- constructor() {}
- observe() {}
- unobserve() {}
- disconnect() {}
- };
|