setup.ts 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. import '@testing-library/jest-dom';
  2. /* eslint-env node */
  3. import type {ReactElement} from 'react';
  4. import {configure as configureRtl} from '@testing-library/react'; // eslint-disable-line no-restricted-imports
  5. import {webcrypto} from 'node:crypto';
  6. import {TextDecoder, TextEncoder} from 'node:util';
  7. import {ConfigFixture} from 'sentry-fixture/config';
  8. import {resetMockDate} from 'sentry-test/utils';
  9. // eslint-disable-next-line jest/no-mocks-import
  10. import type {Client} from 'sentry/__mocks__/api';
  11. import ConfigStore from 'sentry/stores/configStore';
  12. import * as performanceForSentry from 'sentry/utils/performanceForSentry';
  13. /**
  14. * XXX(epurkhiser): Gross hack to fix a bug in jsdom which makes testing of
  15. * framer-motion SVG components fail
  16. *
  17. * See https://github.com/jsdom/jsdom/issues/1330
  18. */
  19. // @ts-expect-error
  20. SVGElement.prototype.getTotalLength ??= () => 1;
  21. /**
  22. * React Testing Library configuration to override the default test id attribute
  23. *
  24. * See: https://testing-library.com/docs/queries/bytestid/#overriding-data-testid
  25. */
  26. configureRtl({testIdAttribute: 'data-test-id'});
  27. /**
  28. * Mock (current) date to always be National Pasta Day
  29. * 2017-10-17T02:41:20.000Z
  30. */
  31. resetMockDate();
  32. /**
  33. * Global testing configuration
  34. */
  35. /**
  36. * Mocks
  37. */
  38. jest.mock('lodash/debounce', () =>
  39. jest.fn(fn => {
  40. fn.cancel = jest.fn();
  41. return fn;
  42. })
  43. );
  44. jest.mock('sentry/utils/recreateRoute');
  45. jest.mock('sentry/api');
  46. jest
  47. .spyOn(performanceForSentry, 'VisuallyCompleteWithData')
  48. .mockImplementation(props => props.children as ReactElement);
  49. jest.mock('scroll-to-element', () => jest.fn());
  50. jest.mock('react-router', function reactRouterMockFactory() {
  51. const ReactRouter = jest.requireActual('react-router');
  52. return {
  53. ...ReactRouter,
  54. browserHistory: {
  55. goBack: jest.fn(),
  56. push: jest.fn(),
  57. replace: jest.fn(),
  58. listen: jest.fn(() => {}),
  59. listenBefore: jest.fn(),
  60. getCurrentLocation: jest.fn(() => ({pathname: '', query: {}})),
  61. },
  62. };
  63. });
  64. jest.mock('sentry/utils/search/searchBoxTextArea');
  65. jest.mock('react-virtualized', function reactVirtualizedMockFactory() {
  66. const ActualReactVirtualized = jest.requireActual('react-virtualized');
  67. return {
  68. ...ActualReactVirtualized,
  69. AutoSizer: ({children}) => children({width: 100, height: 100}),
  70. };
  71. });
  72. jest.mock('echarts-for-react/lib/core', function echartsMockFactory() {
  73. // We need to do this because `jest.mock` gets hoisted by babel and `React` is not
  74. // guaranteed to be in scope
  75. const ReactActual = require('react');
  76. // We need a class component here because `BaseChart` passes `ref` which will
  77. // error if we return a stateless/functional component
  78. return class extends ReactActual.Component {
  79. render() {
  80. return null;
  81. }
  82. };
  83. });
  84. jest.mock('@sentry/react', function sentryReact() {
  85. const SentryReact = jest.requireActual('@sentry/react');
  86. return {
  87. ...SentryReact,
  88. init: jest.fn(),
  89. setTag: jest.fn(),
  90. setTags: jest.fn(),
  91. setExtra: jest.fn(),
  92. setExtras: jest.fn(),
  93. captureBreadcrumb: jest.fn(),
  94. addBreadcrumb: jest.fn(),
  95. captureMessage: jest.fn(),
  96. captureException: jest.fn(),
  97. showReportDialog: jest.fn(),
  98. getDefaultIntegrations: jest.spyOn(SentryReact, 'getDefaultIntegrations'),
  99. startSpan: jest.spyOn(SentryReact, 'startSpan'),
  100. finishSpan: jest.fn(),
  101. lastEventId: jest.fn(),
  102. getClient: jest.spyOn(SentryReact, 'getClient'),
  103. getCurrentScope: jest.spyOn(SentryReact, 'getCurrentScope'),
  104. withScope: jest.spyOn(SentryReact, 'withScope'),
  105. withProfiler: SentryReact.withProfiler,
  106. metrics: {
  107. increment: jest.fn(),
  108. gauge: jest.fn(),
  109. set: jest.fn(),
  110. distribution: jest.fn(),
  111. },
  112. reactRouterV3BrowserTracingIntegration: jest.fn().mockReturnValue({}),
  113. browserTracingIntegration: jest.fn().mockReturnValue({}),
  114. browserProfilingIntegration: jest.fn().mockReturnValue({}),
  115. addEventProcessor: jest.fn(),
  116. BrowserClient: jest.fn().mockReturnValue({
  117. captureEvent: jest.fn(),
  118. }),
  119. startInactiveSpan: () => ({
  120. end: jest.fn(),
  121. setStatus: jest.fn(),
  122. startChild: jest.fn().mockReturnValue({
  123. end: jest.fn(),
  124. }),
  125. }),
  126. };
  127. });
  128. ConfigStore.loadInitialData(ConfigFixture());
  129. /**
  130. * Test Globals
  131. */
  132. declare global {
  133. /**
  134. * Generates a promise that resolves on the next macro-task
  135. */
  136. var tick: () => Promise<void>;
  137. /**
  138. * Used to mock API requests
  139. */
  140. var MockApiClient: typeof Client;
  141. }
  142. // needed by cbor-web for webauthn
  143. window.TextEncoder = TextEncoder;
  144. window.TextDecoder = TextDecoder as typeof window.TextDecoder;
  145. // This is so we can use async/await in tests instead of wrapping with `setTimeout`.
  146. window.tick = () => new Promise(resolve => setTimeout(resolve));
  147. window.MockApiClient = jest.requireMock('sentry/api').Client;
  148. window.scrollTo = jest.fn();
  149. // We need to re-define `window.location`, otherwise we can't spyOn certain
  150. // methods as `window.location` is read-only
  151. Object.defineProperty(window, 'location', {
  152. value: {...window.location, assign: jest.fn(), reload: jest.fn(), replace: jest.fn()},
  153. configurable: true,
  154. writable: true,
  155. });
  156. // The JSDOM implementation is too slow
  157. // Especially for dropdowns that try to position themselves
  158. // perf issue - https://github.com/jsdom/jsdom/issues/3234
  159. Object.defineProperty(window, 'getComputedStyle', {
  160. value: (el: HTMLElement) => {
  161. /**
  162. * This is based on the jsdom implementation of getComputedStyle
  163. * https://github.com/jsdom/jsdom/blob/9dae17bf0ad09042cfccd82e6a9d06d3a615d9f4/lib/jsdom/browser/Window.js#L779-L820
  164. *
  165. * It is missing global style parsing and will only return styles applied directly to an element.
  166. * Will not return styles that are global or from emotion
  167. */
  168. const declaration = new CSSStyleDeclaration();
  169. const {style} = el;
  170. Array.prototype.forEach.call(style, (property: string) => {
  171. declaration.setProperty(
  172. property,
  173. style.getPropertyValue(property),
  174. style.getPropertyPriority(property)
  175. );
  176. });
  177. return declaration;
  178. },
  179. configurable: true,
  180. writable: true,
  181. });
  182. window.IntersectionObserver = class IntersectionObserver {
  183. root = null;
  184. rootMargin = '';
  185. thresholds = [];
  186. takeRecords = jest.fn();
  187. observe() {}
  188. unobserve() {}
  189. disconnect() {}
  190. };
  191. // Mock the crypto.subtle API for Gravatar
  192. Object.defineProperty(global.self, 'crypto', {
  193. value: {
  194. subtle: webcrypto.subtle,
  195. },
  196. });