mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/42783 This change will fix the publishing of Nightlies for React Native with the right version ## Changelog: [Internal] - Update the package.json of react native correctly. Reviewed By: cortinico, huntie Differential Revision: D53309082 fbshipit-source-id: 2fa4d4fdf4f984603c6b3d3690fa3c464ee6d030
88 lines
2.4 KiB
JavaScript
88 lines
2.4 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.
|
|
*
|
|
* @flow
|
|
* @format
|
|
* @oncall react_native
|
|
*/
|
|
|
|
const readFileMock = jest.fn();
|
|
const writeFileMock = jest.fn();
|
|
const updateTemplatePackageMock = jest.fn();
|
|
|
|
jest.mock('fs', () => ({
|
|
...jest.requireActual<$FlowFixMe>('fs'),
|
|
promises: {
|
|
...jest.requireActual<$FlowFixMe>('fs').promises,
|
|
readFile: readFileMock,
|
|
writeFile: writeFileMock,
|
|
},
|
|
}));
|
|
jest.mock('./../update-template-package', () => updateTemplatePackageMock);
|
|
|
|
const {setReactNativeVersion} = require('../set-rn-version');
|
|
|
|
describe('setReactNativeVersion', () => {
|
|
beforeAll(() => {
|
|
readFileMock.mockImplementation(path => {
|
|
if (path === 'packages/react-native/ReactAndroid/gradle.properties') {
|
|
return 'VERSION_NAME=1000.0.0\n';
|
|
}
|
|
if (path === 'packages/react-native/package.json') {
|
|
return JSON.stringify({
|
|
name: 'react-native',
|
|
version: '1000.0.0',
|
|
dependencies: {
|
|
'@react-native/package-a': '1000.0.0',
|
|
},
|
|
});
|
|
}
|
|
});
|
|
});
|
|
|
|
afterEach(() => {
|
|
writeFileMock.mockReset();
|
|
});
|
|
|
|
test('should set nightly version', async () => {
|
|
const version = '0.81.0-nightly-29282302-abcd1234';
|
|
const dependencyVersions = {
|
|
'@react-native/package-a': version,
|
|
};
|
|
await setReactNativeVersion(version, dependencyVersions, 'nightly');
|
|
|
|
expect(updateTemplatePackageMock).toHaveBeenCalledWith({
|
|
'@react-native/package-a': version,
|
|
'react-native': version,
|
|
});
|
|
|
|
for (const [filePath, contents] of writeFileMock.mock.calls) {
|
|
expect(formatGeneratedFile(contents)).toMatchSnapshot(filePath);
|
|
}
|
|
});
|
|
|
|
test('should set release version', async () => {
|
|
const version = '0.81.0';
|
|
await setReactNativeVersion(version, null, 'release');
|
|
|
|
expect(updateTemplatePackageMock).toHaveBeenCalledWith({
|
|
'react-native': version,
|
|
});
|
|
|
|
for (const [filePath, contents] of writeFileMock.mock.calls) {
|
|
expect(formatGeneratedFile(contents)).toMatchSnapshot(filePath);
|
|
}
|
|
});
|
|
});
|
|
|
|
function formatGeneratedFile(source: string) {
|
|
// Strip \@\generated annotation
|
|
return source.replace(
|
|
new RegExp('^ \\* @' + 'generated.*', 'gm'),
|
|
' * << GENERATED >>',
|
|
);
|
|
}
|