/* eslint-env node */ /* eslint import/no-nodejs-modules:0 */ import {TextDecoder, TextEncoder} from 'util'; import type {ReactElement} from 'react'; import {configure as configureRtl} from '@testing-library/react'; // eslint-disable-line no-restricted-imports import MockDate from 'mockdate'; import {ConfigFixture} from 'sentry-fixture/config'; // 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'; /** * 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 .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.spyOn(SentryReact, 'startSpan'), finishSpan: jest.fn(), lastEventId: jest.fn(), getClient: jest.spyOn(SentryReact, 'getClient'), getCurrentHub: jest.spyOn(SentryReact, 'getCurrentHub'), withScope: jest.spyOn(SentryReact, 'withScope'), Hub: SentryReact.Hub, Scope: SentryReact.Scope, Severity: SentryReact.Severity, withProfiler: SentryReact.withProfiler, metrics: { MetricsAggregator: jest.fn().mockReturnValue({}), metricsAggregatorIntegration: jest.fn(), increment: jest.fn(), gauge: jest.fn(), set: jest.fn(), distribution: jest.fn(), }, 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(), }), }), }; }); ConfigStore.loadInitialData(ConfigFixture()); /** * Test Globals */ declare global { /** * Generates a promise that resolves on the next macro-task */ // eslint-disable-next-line no-var var tick: () => Promise; /** * 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; // 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() {} };