Files
react-native/Libraries/Utilities/__tests__/codegenNativeComponent-test.js
T
Tim YungandFacebook GitHub Bot 7c08d07115 RN: Change Internal Imports to Relative Paths
Summary:
Fixes all internal import statements directly referencing the `react-native` package to instead use relative paths.

Changelog:
[Internal]

Reviewed By: christophpurrer

Differential Revision: D39831223

fbshipit-source-id: 510123e5fc8f6845f96d1b55c67e0e59cb401beb
2022-09-27 09:22:58 -07:00

68 lines
2.2 KiB
JavaScript

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @oncall react_native
*/
'use strict';
const codegenNativeComponent = require('../codegenNativeComponent').default;
const UIManager = require('../../ReactNative/UIManager');
// We need to unmock requireNativeComponent since it's under test.
// Instead, we mock the function it calls, createReactNativeComponentClass,
// so that we don't run into issues populating the registry with the same
// component names.
jest.unmock('../../ReactNative/requireNativeComponent');
jest.mock(
'../../Renderer/shims/createReactNativeComponentClass',
() => componentName => componentName,
);
jest
.spyOn(UIManager, 'hasViewManagerConfig')
.mockImplementation(componentName =>
componentName.includes('ComponentNameDoesNotExist') ? false : true,
);
describe('codegenNativeComponent', () => {
it('should require component as is ', () => {
const component = codegenNativeComponent('ComponentName');
expect(component).toBe('ComponentName');
});
it('should require paperComponentName', () => {
const component = codegenNativeComponent('ComponentName', {
paperComponentName: 'PaperComponentName',
});
expect(component).toBe('PaperComponentName');
});
it('should fall back to requiring the deprecated paper component name', () => {
const component = codegenNativeComponent('ComponentNameDoesNotExist', {
paperComponentNameDeprecated: 'ComponentName',
});
expect(component).toBe('ComponentName');
});
it('should require the new component name', () => {
const component = codegenNativeComponent('ComponentName', {
paperComponentNameDeprecated: 'ComponentNameDoesNotExist',
});
expect(component).toBe('ComponentName');
});
it('should throw if neither component names exist', () => {
expect(() =>
codegenNativeComponent('ComponentNameDoesNotExistOne', {
paperComponentNameDeprecated: 'ComponentNameDoesNotExistTwo',
}),
).toThrow(
'Failed to find native component for either ComponentNameDoesNotExistOne or ComponentNameDoesNotExistTwo',
);
});
});