123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 |
- /**
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- *
- * @format
- */
- 'use strict';
- const MockNativeMethods = jest.requireActual('./MockNativeMethods');
- const mockComponent = jest.requireActual('./mockComponent');
- jest.requireActual('../Libraries/polyfills/Object.es7.js');
- jest.requireActual('../Libraries/polyfills/error-guard');
- global.__DEV__ = true;
- global.Promise = jest.requireActual('promise');
- global.regeneratorRuntime = jest.requireActual('regenerator-runtime/runtime');
- global.requestAnimationFrame = function(callback) {
- return setTimeout(callback, 0);
- };
- global.cancelAnimationFrame = function(id) {
- clearTimeout(id);
- };
- // there's a __mock__ for it.
- jest.setMock(
- '../Libraries/vendor/core/ErrorUtils',
- require('../Libraries/vendor/core/ErrorUtils'),
- );
- jest
- .mock('../Libraries/Core/InitializeCore', () => {})
- .mock('../Libraries/Core/NativeExceptionsManager', () => ({
- __esModule: true,
- default: {
- reportException: jest.fn(),
- },
- }))
- .mock('../Libraries/ReactNative/UIManager', () => ({
- AndroidViewPager: {
- Commands: {
- setPage: jest.fn(),
- setPageWithoutAnimation: jest.fn(),
- },
- },
- blur: jest.fn(),
- createView: jest.fn(),
- customBubblingEventTypes: {},
- customDirectEventTypes: {},
- dispatchViewManagerCommand: jest.fn(),
- focus: jest.fn(),
- getViewManagerConfig: jest.fn(name => {
- if (name === 'AndroidDrawerLayout') {
- return {
- Constants: {
- DrawerPosition: {
- Left: 10,
- },
- },
- };
- }
- }),
- measure: jest.fn(),
- manageChildren: jest.fn(),
- removeSubviewsFromContainerWithID: jest.fn(),
- replaceExistingNonRootView: jest.fn(),
- setChildren: jest.fn(),
- updateView: jest.fn(),
- AndroidDrawerLayout: {
- Constants: {
- DrawerPosition: {
- Left: 10,
- },
- },
- },
- AndroidTextInput: {
- Commands: {},
- },
- ScrollView: {
- Constants: {},
- },
- View: {
- Constants: {},
- },
- }))
- .mock('../Libraries/Image/Image', () =>
- mockComponent('../Libraries/Image/Image'),
- )
- .mock('../Libraries/Text/Text', () =>
- mockComponent('../Libraries/Text/Text', MockNativeMethods),
- )
- .mock('../Libraries/Components/TextInput/TextInput', () =>
- mockComponent('../Libraries/Components/TextInput/TextInput', {
- ...MockNativeMethods,
- isFocused: jest.fn(),
- clear: jest.fn(),
- getNativeRef: jest.fn(),
- }),
- )
- .mock('../Libraries/Modal/Modal', () =>
- mockComponent('../Libraries/Modal/Modal'),
- )
- .mock('../Libraries/Components/View/View', () =>
- mockComponent('../Libraries/Components/View/View', MockNativeMethods),
- )
- .mock('../Libraries/Components/AccessibilityInfo/AccessibilityInfo', () => ({
- addEventListener: jest.fn(),
- announceForAccessibility: jest.fn(),
- fetch: jest.fn(),
- isBoldTextEnabled: jest.fn(),
- isGrayscaleEnabled: jest.fn(),
- isInvertColorsEnabled: jest.fn(),
- isReduceMotionEnabled: jest.fn(),
- isReduceTransparencyEnabled: jest.fn(),
- isScreenReaderEnabled: jest.fn(() => Promise.resolve(false)),
- removeEventListener: jest.fn(),
- setAccessibilityFocus: jest.fn(),
- }))
- .mock('../Libraries/Components/RefreshControl/RefreshControl', () =>
- jest.requireActual(
- '../Libraries/Components/RefreshControl/__mocks__/RefreshControlMock',
- ),
- )
- .mock('../Libraries/Components/ScrollView/ScrollView', () => {
- const baseComponent = mockComponent(
- '../Libraries/Components/ScrollView/ScrollView',
- {
- ...MockNativeMethods,
- getScrollResponder: jest.fn(),
- getScrollableNode: jest.fn(),
- getInnerViewNode: jest.fn(),
- getInnerViewRef: jest.fn(),
- getNativeScrollRef: jest.fn(),
- scrollTo: jest.fn(),
- scrollToEnd: jest.fn(),
- flashScrollIndicators: jest.fn(),
- scrollResponderZoomTo: jest.fn(),
- scrollResponderScrollNativeHandleToKeyboard: jest.fn(),
- },
- );
- const mockScrollView = jest.requireActual('./mockScrollView');
- return mockScrollView(baseComponent);
- })
- .mock('../Libraries/Components/ActivityIndicator/ActivityIndicator', () =>
- mockComponent(
- '../Libraries/Components/ActivityIndicator/ActivityIndicator',
- ),
- )
- .mock('../Libraries/AppState/AppState', () => ({
- addEventListener: jest.fn(),
- removeEventListener: jest.fn(),
- }))
- .mock('../Libraries/Linking/Linking', () => ({
- openURL: jest.fn(),
- canOpenURL: jest.fn(() => Promise.resolve(true)),
- openSettings: jest.fn(),
- addEventListener: jest.fn(),
- getInitialURL: jest.fn(() => Promise.resolve()),
- removeEventListener: jest.fn(),
- sendIntent: jest.fn(),
- }))
- // Mock modules defined by the native layer (ex: Objective-C, Java)
- .mock('../Libraries/BatchedBridge/NativeModules', () => ({
- AlertManager: {
- alertWithArgs: jest.fn(),
- },
- AsyncLocalStorage: {
- multiGet: jest.fn((keys, callback) =>
- process.nextTick(() => callback(null, [])),
- ),
- multiSet: jest.fn((entries, callback) =>
- process.nextTick(() => callback(null)),
- ),
- multiRemove: jest.fn((keys, callback) =>
- process.nextTick(() => callback(null)),
- ),
- multiMerge: jest.fn((entries, callback) =>
- process.nextTick(() => callback(null)),
- ),
- clear: jest.fn(callback => process.nextTick(() => callback(null))),
- getAllKeys: jest.fn(callback =>
- process.nextTick(() => callback(null, [])),
- ),
- },
- Clipboard: {
- getString: jest.fn(() => ''),
- setString: jest.fn(),
- },
- DeviceInfo: {
- getConstants() {
- return {
- Dimensions: {
- window: {
- fontScale: 2,
- height: 1334,
- scale: 2,
- width: 750,
- },
- screen: {
- fontScale: 2,
- height: 1334,
- scale: 2,
- width: 750,
- },
- },
- };
- },
- },
- ImageLoader: {
- getSize: jest.fn(url => Promise.resolve({width: 320, height: 240})),
- prefetchImage: jest.fn(),
- },
- ImageViewManager: {
- getSize: jest.fn((uri, success) =>
- process.nextTick(() => success(320, 240)),
- ),
- prefetchImage: jest.fn(),
- },
- KeyboardObserver: {
- addListener: jest.fn(),
- removeListeners: jest.fn(),
- },
- Networking: {
- sendRequest: jest.fn(),
- abortRequest: jest.fn(),
- addListener: jest.fn(),
- removeListeners: jest.fn(),
- },
- PlatformConstants: {
- getConstants() {
- return {};
- },
- },
- PushNotificationManager: {
- presentLocalNotification: jest.fn(),
- scheduleLocalNotification: jest.fn(),
- cancelAllLocalNotifications: jest.fn(),
- removeAllDeliveredNotifications: jest.fn(),
- getDeliveredNotifications: jest.fn(callback =>
- process.nextTick(() => []),
- ),
- removeDeliveredNotifications: jest.fn(),
- setApplicationIconBadgeNumber: jest.fn(),
- getApplicationIconBadgeNumber: jest.fn(callback =>
- process.nextTick(() => callback(0)),
- ),
- cancelLocalNotifications: jest.fn(),
- getScheduledLocalNotifications: jest.fn(callback =>
- process.nextTick(() => callback()),
- ),
- requestPermissions: jest.fn(() =>
- Promise.resolve({alert: true, badge: true, sound: true}),
- ),
- abandonPermissions: jest.fn(),
- checkPermissions: jest.fn(callback =>
- process.nextTick(() =>
- callback({alert: true, badge: true, sound: true}),
- ),
- ),
- getInitialNotification: jest.fn(() => Promise.resolve(null)),
- addListener: jest.fn(),
- removeListeners: jest.fn(),
- },
- SourceCode: {
- getConstants() {
- return {
- scriptURL: null,
- };
- },
- },
- StatusBarManager: {
- setColor: jest.fn(),
- setStyle: jest.fn(),
- setHidden: jest.fn(),
- setNetworkActivityIndicatorVisible: jest.fn(),
- setBackgroundColor: jest.fn(),
- setTranslucent: jest.fn(),
- getConstants: () => ({
- HEIGHT: 42,
- }),
- },
- Timing: {
- createTimer: jest.fn(),
- deleteTimer: jest.fn(),
- },
- UIManager: {},
- BlobModule: {
- getConstants: () => ({BLOB_URI_SCHEME: 'content', BLOB_URI_HOST: null}),
- addNetworkingHandler: jest.fn(),
- enableBlobSupport: jest.fn(),
- disableBlobSupport: jest.fn(),
- createFromParts: jest.fn(),
- sendBlob: jest.fn(),
- release: jest.fn(),
- },
- WebSocketModule: {
- connect: jest.fn(),
- send: jest.fn(),
- sendBinary: jest.fn(),
- ping: jest.fn(),
- close: jest.fn(),
- addListener: jest.fn(),
- removeListeners: jest.fn(),
- },
- I18nManager: {
- allowRTL: jest.fn(),
- forceRTL: jest.fn(),
- swapLeftAndRightInRTL: jest.fn(),
- getConstants: () => ({
- isRTL: false,
- doLeftAndRightSwapInRTL: true,
- }),
- },
- }))
- .mock('../Libraries/ReactNative/requireNativeComponent', () => {
- const React = require('react');
- return viewName => {
- const Component = class extends React.Component {
- render() {
- return React.createElement(viewName, this.props, this.props.children);
- }
- // The methods that exist on host components
- blur = jest.fn();
- focus = jest.fn();
- measure = jest.fn();
- measureInWindow = jest.fn();
- measureLayout = jest.fn();
- setNativeProps = jest.fn();
- };
- if (viewName === 'RCTView') {
- Component.displayName = 'View';
- } else {
- Component.displayName = viewName;
- }
- return Component;
- };
- })
- .mock(
- '../Libraries/Utilities/verifyComponentAttributeEquivalence',
- () => function() {},
- )
- .mock('../Libraries/Components/View/ViewNativeComponent', () => {
- const React = require('react');
- const Component = class extends React.Component {
- render() {
- return React.createElement('View', this.props, this.props.children);
- }
- };
- Component.displayName = 'View';
- return {
- __esModule: true,
- default: Component,
- };
- });
|