jest.config.ts 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. import type {Config} from '@jest/types';
  2. import path from 'node:path';
  3. import process from 'node:process';
  4. import babelConfig from './babel.config';
  5. const {
  6. CI,
  7. JEST_TESTS,
  8. JEST_TEST_BALANCER,
  9. CI_NODE_TOTAL,
  10. CI_NODE_INDEX,
  11. GITHUB_PR_SHA,
  12. GITHUB_PR_REF,
  13. GITHUB_RUN_ID,
  14. GITHUB_RUN_ATTEMPT,
  15. } = process.env;
  16. const IS_MASTER_BRANCH = GITHUB_PR_REF === 'refs/heads/master';
  17. const BALANCE_RESULTS_PATH = path.resolve(
  18. __dirname,
  19. 'tests',
  20. 'js',
  21. 'test-balancer',
  22. 'jest-balance.json'
  23. );
  24. const optionalTags: {
  25. balancer?: boolean;
  26. balancer_strategy?: string;
  27. } = {
  28. balancer: false,
  29. };
  30. if (!!JEST_TEST_BALANCER && !CI) {
  31. throw new Error(
  32. '[Operation only allowed in CI]: Jest test balancer should never be ran manually as you risk skewing the numbers - please trigger the automated github workflow at https://github.com/getsentry/sentry/actions/workflows/jest-balance.yml'
  33. );
  34. }
  35. /**
  36. * In CI we may need to shard our jest tests so that we can parellize the test runs
  37. *
  38. * `JEST_TESTS` is a list of all tests that will run, captured by `jest --listTests`
  39. * Then we split up the tests based on the total number of CI instances that will
  40. * be running the tests.
  41. */
  42. let testMatch: string[] | undefined;
  43. function getTestsForGroup(
  44. nodeIndex: number,
  45. nodeTotal: number,
  46. allTests: ReadonlyArray<string>,
  47. testStats: Record<string, number>
  48. ): string[] {
  49. const speculatedSuiteDuration = Object.values(testStats).reduce((a, b) => a + b, 0);
  50. const targetDuration = speculatedSuiteDuration / nodeTotal;
  51. if (speculatedSuiteDuration <= 0) {
  52. throw new Error('Speculated suite duration is <= 0');
  53. }
  54. // We are going to take all of our tests and split them into groups.
  55. // If we have a test without a known duration, we will default it to 2 second
  56. // This is to ensure that we still assign some weight to the tests and still attempt to somewhat balance them.
  57. // The 1.5s default is selected as a p50 value of all of our JS tests in CI (as of 2022-10-26) taken from our sentry performance monitoring.
  58. const tests = new Map<string, number>();
  59. const SUITE_P50_DURATION_MS = 1500;
  60. // First, iterate over all of the tests we have stats for.
  61. for (const test in testStats) {
  62. if (testStats[test] <= 0) {
  63. throw new Error(`Test duration is <= 0 for ${test}`);
  64. }
  65. tests.set(test, testStats[test]);
  66. }
  67. // Then, iterate over all of the remaining tests and assign them a default duration.
  68. for (const test of allTests) {
  69. if (tests.has(test)) {
  70. continue;
  71. }
  72. tests.set(test, SUITE_P50_DURATION_MS);
  73. }
  74. // Sanity check to ensure that we have all of our tests accounted for, we need to fail
  75. // if this is not the case as we risk not executing some tests and passing the build.
  76. if (tests.size < allTests.length) {
  77. throw new Error(
  78. `All tests should be accounted for, missing ${allTests.length - tests.size}`
  79. );
  80. }
  81. const groups: string[][] = [];
  82. // We sort files by path so that we try and improve the transformer cache hit rate.
  83. // Colocated domain specific files are likely to require other domain specific files.
  84. const testsSortedByPath = Array.from(tests.entries()).sort((a, b) => {
  85. // WidgetBuilder tests are a special case as they can sometimes take a long time to run (3-5 minutes)
  86. // As such, we want to ensure that they are ran in the same group as other widget builder tests.
  87. // We do this by sorting them by the path of the widget builder test which ensures they are started by the first job
  88. // in the CI group and that all of the tests actually run in the same group.
  89. if (a[0].includes('widgetBuilder')) {
  90. return -1;
  91. }
  92. if (b[0].includes('widgetBuilder')) {
  93. return 1;
  94. }
  95. return a[0].localeCompare(b[0]);
  96. });
  97. for (let group = 0; group < nodeTotal; group++) {
  98. groups[group] = [];
  99. let duration = 0;
  100. // While we are under our target duration and there are tests in the group
  101. while (duration < targetDuration && testsSortedByPath.length > 0) {
  102. // We peek the next item to check that it is not some super long running
  103. // test that may exceed our target duration. For example, if target runtime for each group is
  104. // 10 seconds, we have currently accounted for 9 seconds, and the next test is 5 seconds, we
  105. // want to move that test to the next group so as to avoid a 40% imbalance.
  106. const peek = testsSortedByPath[testsSortedByPath.length - 1];
  107. if (duration + peek[1] > targetDuration && peek[1] > 30_000) {
  108. break;
  109. }
  110. const nextTest = testsSortedByPath.pop();
  111. if (!nextTest) {
  112. throw new TypeError('Received falsy test' + JSON.stringify(nextTest));
  113. }
  114. groups[group].push(nextTest[0]);
  115. duration += nextTest[1];
  116. }
  117. }
  118. // Whatever may be left over will get round robin'd into the groups.
  119. let i = 0;
  120. while (testsSortedByPath.length) {
  121. const nextTest = testsSortedByPath.pop();
  122. if (!nextTest) {
  123. throw new TypeError('Received falsy test' + JSON.stringify(nextTest));
  124. }
  125. groups[i % 4].push(nextTest[0]);
  126. i++;
  127. }
  128. // Make sure we exhausted all tests before proceeding.
  129. if (testsSortedByPath.length > 0) {
  130. throw new Error('All tests should be accounted for');
  131. }
  132. // We need to ensure that everything from jest --listTests is accounted for.
  133. for (const test of allTests) {
  134. if (!tests.has(test)) {
  135. throw new Error(`Test ${test} is not accounted for`);
  136. }
  137. }
  138. if (!groups[nodeIndex]) {
  139. throw new Error(`No tests found for node ${nodeIndex}`);
  140. }
  141. return groups[nodeIndex].map(test => `<rootDir>/${test}`);
  142. }
  143. if (
  144. JEST_TESTS &&
  145. typeof CI_NODE_TOTAL !== 'undefined' &&
  146. typeof CI_NODE_INDEX !== 'undefined'
  147. ) {
  148. let balance: null | Record<string, number> = null;
  149. try {
  150. balance = require(BALANCE_RESULTS_PATH);
  151. } catch (err) {
  152. // Just ignore if balance results doesn't exist
  153. }
  154. // Taken from https://github.com/facebook/jest/issues/6270#issue-326653779
  155. const envTestList: string[] = JSON.parse(JEST_TESTS).map(file =>
  156. file.replace(__dirname, '')
  157. );
  158. const nodeTotal = Number(CI_NODE_TOTAL);
  159. const nodeIndex = Number(CI_NODE_INDEX);
  160. if (balance) {
  161. optionalTags.balancer = true;
  162. optionalTags.balancer_strategy = 'by_path';
  163. testMatch = getTestsForGroup(nodeIndex, nodeTotal, envTestList, balance);
  164. } else {
  165. const tests = envTestList.sort((a, b) => b.localeCompare(a));
  166. const length = tests.length;
  167. const size = Math.floor(length / nodeTotal);
  168. const remainder = length % nodeTotal;
  169. const offset = Math.min(nodeIndex, remainder) + nodeIndex * size;
  170. const chunk = size + (nodeIndex < remainder ? 1 : 0);
  171. testMatch = tests.slice(offset, offset + chunk).map(test => '<rootDir>' + test);
  172. }
  173. }
  174. /**
  175. * For performance we don't want to try and compile everything in the
  176. * node_modules, but some packages which use ES6 syntax only NEED to be
  177. * transformed.
  178. */
  179. const ESM_NODE_MODULES = ['screenfull'];
  180. const config: Config.InitialOptions = {
  181. verbose: false,
  182. collectCoverageFrom: [
  183. 'static/app/**/*.{js,jsx,ts,tsx}',
  184. '!static/app/**/*.spec.{js,jsx,ts,tsx}',
  185. ],
  186. coverageReporters: ['html', 'cobertura'],
  187. coverageDirectory: '.artifacts/coverage',
  188. moduleNameMapper: {
  189. '^sentry/(.*)': '<rootDir>/static/app/$1',
  190. '^sentry-fixture/(.*)': '<rootDir>/tests/js/fixtures/$1',
  191. '^sentry-test/(.*)': '<rootDir>/tests/js/sentry-test/$1',
  192. '^sentry-locale/(.*)': '<rootDir>/src/sentry/locale/$1',
  193. '\\.(css|less|png|jpg|mp4)$': '<rootDir>/tests/js/sentry-test/importStyleMock.js',
  194. '\\.(svg)$': '<rootDir>/tests/js/sentry-test/svgMock.js',
  195. // Disable echarts in test, since they're very slow and take time to
  196. // transform
  197. '^echarts/(.*)': '<rootDir>/tests/js/sentry-test/echartsMock.js',
  198. '^zrender/(.*)': '<rootDir>/tests/js/sentry-test/echartsMock.js',
  199. },
  200. setupFiles: [
  201. '<rootDir>/static/app/utils/silence-react-unsafe-warnings.ts',
  202. 'jest-canvas-mock',
  203. ],
  204. setupFilesAfterEnv: [
  205. '<rootDir>/tests/js/setup.ts',
  206. '<rootDir>/tests/js/setupFramework.ts',
  207. ],
  208. testMatch: testMatch || ['<rootDir>/(static|tests/js)/**/?(*.)+(spec|test).[jt]s?(x)'],
  209. testPathIgnorePatterns: ['<rootDir>/tests/sentry/lang/javascript/'],
  210. unmockedModulePathPatterns: [
  211. '<rootDir>/node_modules/react',
  212. '<rootDir>/node_modules/reflux',
  213. ],
  214. transform: {
  215. '^.+\\.jsx?$': ['babel-jest', babelConfig as any],
  216. '^.+\\.tsx?$': ['babel-jest', babelConfig as any],
  217. '^.+\\.pegjs?$': '<rootDir>/tests/js/jest-pegjs-transform.js',
  218. },
  219. transformIgnorePatterns: [
  220. ESM_NODE_MODULES.length
  221. ? `/node_modules/(?!${ESM_NODE_MODULES.join('|')})`
  222. : '/node_modules/',
  223. ],
  224. moduleFileExtensions: ['js', 'ts', 'jsx', 'tsx', 'pegjs'],
  225. globals: {},
  226. testResultsProcessor: JEST_TEST_BALANCER
  227. ? '<rootDir>/tests/js/test-balancer/index.js'
  228. : undefined,
  229. reporters: [
  230. 'default',
  231. [
  232. 'jest-junit',
  233. {
  234. outputDirectory: '.artifacts',
  235. outputName: 'jest.junit.xml',
  236. },
  237. ],
  238. ],
  239. /**
  240. * jest.clearAllMocks() automatically called before each test
  241. * @link - https://jestjs.io/docs/configuration#clearmocks-boolean
  242. */
  243. clearMocks: true,
  244. // To disable the sentry jest integration, set this to 'jsdom'
  245. testEnvironment: '@sentry/jest-environment/jsdom',
  246. testEnvironmentOptions: {
  247. sentryConfig: {
  248. init: {
  249. // jest project under Sentry organization (dev productivity team)
  250. dsn: CI
  251. ? 'https://3fe1dce93e3a4267979ebad67f3de327@o1.ingest.us.sentry.io/4857230'
  252. : false,
  253. // Use production env to reduce sampling of commits on master
  254. environment: CI ? (IS_MASTER_BRANCH ? 'ci:master' : 'ci:pull_request') : 'local',
  255. tracesSampleRate: CI ? 0.75 : 0,
  256. profilesSampleRate: 0,
  257. transportOptions: {keepAlive: true},
  258. },
  259. transactionOptions: {
  260. tags: {
  261. ...optionalTags,
  262. branch: GITHUB_PR_REF,
  263. commit: GITHUB_PR_SHA,
  264. github_run_attempt: GITHUB_RUN_ATTEMPT,
  265. github_actions_run: `https://github.com/getsentry/sentry/actions/runs/${GITHUB_RUN_ID}`,
  266. },
  267. },
  268. },
  269. },
  270. };
  271. export default config;