setup.ts 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. /* eslint-env node */
  2. /* eslint import/no-nodejs-modules:0 */
  3. import {TextDecoder, TextEncoder} from 'util';
  4. import type {ReactElement} from 'react';
  5. import {configure as configureRtl} from '@testing-library/react'; // eslint-disable-line no-restricted-imports
  6. import MockDate from 'mockdate';
  7. import {ConfigFixture} from 'sentry-fixture/config';
  8. // eslint-disable-next-line jest/no-mocks-import
  9. import type {Client} from 'sentry/__mocks__/api';
  10. import ConfigStore from 'sentry/stores/configStore';
  11. import * as performanceForSentry from 'sentry/utils/performanceForSentry';
  12. /**
  13. * XXX(epurkhiser): Gross hack to fix a bug in jsdom which makes testing of
  14. * framer-motion SVG components fail
  15. *
  16. * See https://github.com/jsdom/jsdom/issues/1330
  17. */
  18. // @ts-expect-error
  19. SVGElement.prototype.getTotalLength ??= () => 1;
  20. /**
  21. * React Testing Library configuration to override the default test id attribute
  22. *
  23. * See: https://testing-library.com/docs/queries/bytestid/#overriding-data-testid
  24. */
  25. configureRtl({testIdAttribute: 'data-test-id'});
  26. /**
  27. * Mock (current) date to always be National Pasta Day
  28. * 2017-10-17T02:41:20.000Z
  29. */
  30. const constantDate = new Date(1508208080000);
  31. MockDate.set(constantDate);
  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. init: jest.fn(),
  88. configureScope: 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. startSpan: jest.spyOn(SentryReact, 'startSpan'),
  99. finishSpan: jest.fn(),
  100. lastEventId: jest.fn(),
  101. getClient: jest.spyOn(SentryReact, 'getClient'),
  102. getCurrentHub: jest.spyOn(SentryReact, 'getCurrentHub'),
  103. withScope: jest.spyOn(SentryReact, 'withScope'),
  104. Hub: SentryReact.Hub,
  105. Scope: SentryReact.Scope,
  106. Severity: SentryReact.Severity,
  107. withProfiler: SentryReact.withProfiler,
  108. metrics: {
  109. MetricsAggregator: jest.fn().mockReturnValue({}),
  110. metricsAggregatorIntegration: jest.fn(),
  111. increment: jest.fn(),
  112. gauge: jest.fn(),
  113. set: jest.fn(),
  114. distribution: jest.fn(),
  115. },
  116. BrowserTracing: jest.fn().mockReturnValue({}),
  117. BrowserProfilingIntegration: jest.fn().mockReturnValue({}),
  118. addGlobalEventProcessor: jest.fn(),
  119. BrowserClient: jest.fn().mockReturnValue({
  120. captureEvent: jest.fn(),
  121. }),
  122. startTransaction: () => ({
  123. finish: jest.fn(),
  124. setTag: jest.fn(),
  125. setData: jest.fn(),
  126. setStatus: jest.fn(),
  127. startChild: jest.fn().mockReturnValue({
  128. finish: jest.fn(),
  129. }),
  130. }),
  131. };
  132. });
  133. ConfigStore.loadInitialData(ConfigFixture());
  134. /**
  135. * Test Globals
  136. */
  137. declare global {
  138. /**
  139. * Generates a promise that resolves on the next macro-task
  140. */
  141. // eslint-disable-next-line no-var
  142. var tick: () => Promise<void>;
  143. /**
  144. * Used to mock API requests
  145. */
  146. // eslint-disable-next-line no-var
  147. var MockApiClient: typeof Client;
  148. }
  149. // needed by cbor-web for webauthn
  150. window.TextEncoder = TextEncoder;
  151. window.TextDecoder = TextDecoder as typeof window.TextDecoder;
  152. // This is so we can use async/await in tests instead of wrapping with `setTimeout`.
  153. window.tick = () => new Promise(resolve => setTimeout(resolve));
  154. window.MockApiClient = jest.requireMock('sentry/api').Client;
  155. window.scrollTo = jest.fn();
  156. // We need to re-define `window.location`, otherwise we can't spyOn certain
  157. // methods as `window.location` is read-only
  158. Object.defineProperty(window, 'location', {
  159. value: {...window.location, assign: jest.fn(), reload: jest.fn(), replace: jest.fn()},
  160. configurable: true,
  161. writable: true,
  162. });
  163. // The JSDOM implementation is too slow
  164. // Especially for dropdowns that try to position themselves
  165. // perf issue - https://github.com/jsdom/jsdom/issues/3234
  166. Object.defineProperty(window, 'getComputedStyle', {
  167. value: (el: HTMLElement) => {
  168. /**
  169. * This is based on the jsdom implementation of getComputedStyle
  170. * https://github.com/jsdom/jsdom/blob/9dae17bf0ad09042cfccd82e6a9d06d3a615d9f4/lib/jsdom/browser/Window.js#L779-L820
  171. *
  172. * It is missing global style parsing and will only return styles applied directly to an element.
  173. * Will not return styles that are global or from emotion
  174. */
  175. const declaration = new CSSStyleDeclaration();
  176. const {style} = el;
  177. Array.prototype.forEach.call(style, (property: string) => {
  178. declaration.setProperty(
  179. property,
  180. style.getPropertyValue(property),
  181. style.getPropertyPriority(property)
  182. );
  183. });
  184. return declaration;
  185. },
  186. configurable: true,
  187. writable: true,
  188. });
  189. window.IntersectionObserver = class IntersectionObserver {
  190. root = null;
  191. rootMargin = '';
  192. thresholds = [];
  193. takeRecords = jest.fn();
  194. constructor() {}
  195. observe() {}
  196. unobserve() {}
  197. disconnect() {}
  198. };