loadFixtures.ts 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. /* global __dirname */
  2. /* eslint import/no-nodejs-modules:0 */
  3. import fs from 'fs';
  4. import path from 'path';
  5. import TestStubFixtures from '../../../fixtures/js-stubs/types';
  6. const FIXTURES_ROOT = path.join(__dirname, '../../../fixtures');
  7. type Options = {
  8. /**
  9. * Flatten all fixtures to together into a single object
  10. */
  11. flatten?: boolean;
  12. };
  13. /**
  14. * Loads a directory of fixtures. Supports js and json fixtures.
  15. */
  16. export function loadFixtures(dir: string, opts: Options = {}): TestStubFixtures {
  17. const from = path.join(FIXTURES_ROOT, dir);
  18. const files = fs.readdirSync(from);
  19. // @ts-expect-error, this is a partial definition
  20. const fixtures: TestStubFixtures = {};
  21. for (const file of files) {
  22. const filePath = path.join(from, file);
  23. if (/[jt]sx?$/.test(file)) {
  24. const module = require(filePath);
  25. if (module.default) {
  26. throw new Error('Javascript fixtures cannot use default export');
  27. }
  28. fixtures[file] = module;
  29. continue;
  30. }
  31. if (/json$/.test(file)) {
  32. fixtures[file] = JSON.parse(fs.readFileSync(filePath).toString());
  33. continue;
  34. }
  35. throw new Error(`Invalid fixture type found: ${file}`);
  36. }
  37. if (opts.flatten) {
  38. // @ts-expect-error, this is a partial definition
  39. const flattenedFixtures: TestStubFixtures = {};
  40. for (const moduleKey in fixtures) {
  41. for (const moduleExport in fixtures[moduleKey]) {
  42. // Check if our flattenedFixtures already contains a key with the same export.
  43. // If it does, we want to throw and make sure that we dont silently override the fixtures.
  44. if (flattenedFixtures?.[moduleKey]?.[moduleExport]) {
  45. throw new Error(
  46. `Flatten will override module ${flattenedFixtures[moduleKey]} with ${fixtures[moduleKey][moduleExport]}`
  47. );
  48. }
  49. flattenedFixtures[moduleExport] = fixtures[moduleKey][moduleExport];
  50. }
  51. }
  52. return flattenedFixtures;
  53. }
  54. return fixtures;
  55. }
  56. const extensions = ['.js', '.ts', '.tsx', '.json'];
  57. // This is a mapping of special cases where fixture name does not map 1:1 to file name.
  58. // Some fixture files also contain more than one fixture so additional mappings are needed.
  59. // If you have added new fixtures and you are seeing an error being throw, please add the fixture
  60. const SPECIAL_MAPPING = {
  61. AllAuthenticators: 'authenticators',
  62. OrgRoleList: 'roleList',
  63. BitbucketIntegrationConfig: 'integrationListDirectory',
  64. DetailedEvents: 'events',
  65. DiscoverSavedQuery: 'discover',
  66. Entries123Base: 'entries',
  67. Entries123Target: 'entries',
  68. Events: 'events',
  69. EventsStats: 'events',
  70. EventStacktraceMessage: 'eventStacktraceException',
  71. GitHubIntegration: 'githubIntegration',
  72. GitHubIntegrationConfig: 'integrationListDirectory',
  73. GitHubIntegrationProvider: 'githubIntegrationProvider',
  74. MetricsField: 'metrics',
  75. MetricsSessionUserCountByStatusByRelease: 'metrics',
  76. MetricsTotalCountByReleaseIn24h: 'metrics',
  77. MOCK_RESP_VERBOSE: 'ruleConditions',
  78. OrgOwnedApps: 'integrationListDirectory',
  79. OutcomesWithReason: 'outcomes',
  80. PluginListConfig: 'integrationListDirectory',
  81. ProviderList: 'integrationListDirectory',
  82. PublishedApps: 'integrationListDirectory',
  83. SentryAppComponentAsync: 'sentryAppComponent',
  84. SentryAppInstalls: 'integrationListDirectory',
  85. SessionsField: 'sessions',
  86. SessionStatusCountByProjectInPeriod: 'sessions',
  87. SessionStatusCountByReleaseInPeriod: 'sessions',
  88. SessionUserCountByStatus: 'sessions',
  89. SessionUserCountByStatusByRelease: 'sessions',
  90. TagValues: 'tagvalues',
  91. VercelProvider: 'vercelIntegration',
  92. };
  93. function tryRequire(dir: string, name: string): any {
  94. if (SPECIAL_MAPPING[name]) {
  95. return require(path.resolve(dir, SPECIAL_MAPPING[name]));
  96. }
  97. for (const ext of extensions) {
  98. try {
  99. return require(path.resolve(dir, lowercaseFirst(name) + ext));
  100. } catch {
  101. // ignore
  102. }
  103. }
  104. throw new Error('Failed to resolve file');
  105. }
  106. function lowercaseFirst(value: string): string {
  107. return value.charAt(0).toLowerCase() + value.slice(1);
  108. }
  109. export function makeLazyFixtures<UserProvidedFixtures extends Record<any, any>>(
  110. fixturesDirectoryPath: string,
  111. userProvidedFixtures: UserProvidedFixtures
  112. ): TestStubFixtures & UserProvidedFixtures {
  113. const lazyFixtures = new Proxy(
  114. {},
  115. {
  116. get(target, prop: string) {
  117. if (target[prop]) {
  118. return target[prop];
  119. }
  120. if (userProvidedFixtures[prop]) {
  121. return userProvidedFixtures[prop];
  122. }
  123. try {
  124. const maybeModule = tryRequire(fixturesDirectoryPath, prop);
  125. for (const exportKey in maybeModule) {
  126. target[exportKey] = maybeModule[exportKey];
  127. }
  128. } catch (error) {
  129. return () => {
  130. throw new Error(
  131. error +
  132. '\n\n' +
  133. `Failed to resolve ${prop} fixture.
  134. - Your fixture does not map directly to file on disk or fixture file could be exporting > 1 fixture.
  135. - To resolve this, add a mapping to SPECIAL_MAPPING in loadFixtures.ts or ensure fixture export name maps to the file on disk.
  136. - If you are seeing this only in CI and you have followed the step above, check the exact casing of the file as it is case sensitive.
  137. `
  138. );
  139. };
  140. }
  141. if (target[prop] === undefined) {
  142. return () => {
  143. throw new Error(
  144. `Failed to resolve ${prop} fixture.
  145. - Your fixture does not map directly to file on disk or fixture file could be exporting > 1 fixture.
  146. - To resolve this, add a mapping to SPECIAL_MAPPING in loadFixtures.ts or ensure fixture export name maps to the file on disk.
  147. - If you are seeing this only in CI and you have followed the step above, check the exact casing of the file as it is case sensitive.`
  148. );
  149. };
  150. }
  151. return target[prop];
  152. },
  153. }
  154. );
  155. return lazyFixtures as TestStubFixtures & UserProvidedFixtures;
  156. }