123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- import {configure} from '@testing-library/react';
- import Adapter from '@wojtekmaj/enzyme-adapter-react-17';
- import Enzyme from 'enzyme'; // eslint-disable-line no-restricted-imports
- import MockDate from 'mockdate';
- import PropTypes from 'prop-types';
- import ConfigStore from 'app/stores/configStore';
- import {loadFixtures} from './sentry-test/loadFixtures';
- export * from './sentry-test/select';
- // We need this polyfill for testing only because typescript handles it for
- // main application
- import 'core-js/features/object/from-entries';
- /**
- * 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
- */
- if (!SVGElement.prototype.getTotalLength) {
- 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
- */
- configure({testIdAttribute: 'data-test-id'});
- /**
- * Enzyme configuration
- *
- * TODO(epurkhiser): We're using @wojtekmaj's react-17 enzyme adapter, until
- * the offical adapter has been released.
- *
- * https://github.com/enzymejs/enzyme/issues/2429
- */
- Enzyme.configure({adapter: new Adapter()});
- /**
- * Mock (current) date to always be National Pasta Day
- * 2017-10-17T02:41:20.000Z
- */
- const constantDate = new Date(1508208080000);
- MockDate.set(constantDate);
- /**
- * Load all files in `tests/js/fixtures/*` as a module.
- * These will then be added to the `TestStubs` global below
- */
- const fixtures = loadFixtures('js-stubs', {flatten: true});
- /**
- * Global testing configuration
- */
- ConfigStore.loadInitialData({
- messages: [],
- user: fixtures.User(),
- });
- /**
- * Mocks
- */
- jest.mock('lodash/debounce', () => jest.fn(fn => fn));
- jest.mock('app/utils/recreateRoute');
- jest.mock('app/api');
- jest.mock('app/utils/domId');
- jest.mock('app/utils/withOrganization');
- jest.mock('scroll-to-element', () => jest.fn());
- jest.mock('react-router', () => {
- const ReactRouter = jest.requireActual('react-router');
- return {
- IndexRedirect: ReactRouter.IndexRedirect,
- IndexRoute: ReactRouter.IndexRoute,
- Link: ReactRouter.Link,
- Redirect: ReactRouter.Redirect,
- Route: ReactRouter.Route,
- withRouter: ReactRouter.withRouter,
- browserHistory: {
- goBack: jest.fn(),
- push: jest.fn(),
- replace: jest.fn(),
- listen: jest.fn(() => {}),
- },
- };
- });
- jest.mock('react-lazyload', () => {
- const LazyLoadMock = ({children}) => children;
- return LazyLoadMock;
- });
- jest.mock('react-virtualized', () => {
- const ActualReactVirtualized = jest.requireActual('react-virtualized');
- return {
- ...ActualReactVirtualized,
- AutoSizer: ({children}) => children({width: 100, height: 100}),
- };
- });
- jest.mock('echarts-for-react/lib/core', () => {
- // 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', () => {
- 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.fn(),
- finishSpan: jest.fn(),
- lastEventId: jest.fn(),
- getCurrentHub: jest.spyOn(SentryReact, 'getCurrentHub'),
- withScope: jest.spyOn(SentryReact, 'withScope'),
- Severity: SentryReact.Severity,
- withProfiler: SentryReact.withProfiler,
- startTransaction: () => ({
- finish: jest.fn(),
- setTag: jest.fn(),
- setData: jest.fn(),
- setStatus: jest.fn(),
- }),
- };
- });
- jest.mock('popper.js', () => {
- const PopperJS = jest.requireActual('popper.js');
- return class {
- static placements = PopperJS.placements;
- constructor() {
- return {
- destroy: () => {},
- scheduleUpdate: () => {},
- };
- }
- };
- });
- /**
- * Test Globals
- */
- // This is so we can use async/await in tests instead of wrapping with `setTimeout`.
- window.tick = () => new Promise(resolve => setTimeout(resolve));
- window.scrollTo = jest.fn();
- // This is very commonly used, so expose it globally.
- window.MockApiClient = jest.requireMock('app/api').Client;
- window.TestStubs = {
- // react-router's 'router' context
- router: (params = {}) => ({
- push: jest.fn(),
- replace: jest.fn(),
- go: jest.fn(),
- goBack: jest.fn(),
- goForward: jest.fn(),
- listen: jest.fn(),
- setRouteLeaveHook: jest.fn(),
- isActive: jest.fn(),
- createHref: jest.fn(),
- location: {query: {}},
- ...params,
- }),
- location: (params = {}) => ({
- query: {},
- pathname: '/mock-pathname/',
- ...params,
- }),
- routes: () => [
- {path: '/'},
- {path: '/:orgId/'},
- {name: 'this should be skipped'},
- {path: '/organizations/:orgId/'},
- {path: 'api-keys/', name: 'API Key'},
- ],
- routerProps: (params = {}) => ({
- location: TestStubs.location(),
- params: {},
- routes: [],
- stepBack: () => {},
- ...params,
- }),
- routerContext: ([context, childContextTypes] = []) => ({
- context: {
- location: TestStubs.location(),
- router: TestStubs.router(),
- organization: fixtures.Organization(),
- project: fixtures.Project(),
- ...context,
- },
- childContextTypes: {
- router: PropTypes.object,
- location: PropTypes.object,
- organization: PropTypes.object,
- project: PropTypes.object,
- ...childContextTypes,
- },
- }),
- AllAuthenticators: () => Object.values(fixtures.Authenticators()).map(x => x()),
- ...fixtures,
- };
- // We now 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()},
- configurable: true,
- writable: true,
- });
|