mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
7819fef988
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/37555 Changelog: [Internal] Refactor some npm commands and centralize in npm-utils. For now, centralize `getPackageVersionStrByTag` and `publishPackage` and update: 1. `publish-npm` to use utilities. This is how we publish `react-native` for commitlies, releases, and nightlies 2. Update `find-and-publish-all-bumped-packages.js` where we publish our monorepo dependencies Reviewed By: cortinico, hoxyq Differential Revision: D46131120 fbshipit-source-id: e6020058eb94b4f8d95068b8cd87cc765711be5b
63 lines
1.8 KiB
JavaScript
63 lines
1.8 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
|
|
*/
|
|
|
|
const {getPackageVersionStrByTag, publishPackage} = require('../npm-utils');
|
|
|
|
const execMock = jest.fn();
|
|
jest.mock('shelljs', () => ({
|
|
exec: execMock,
|
|
}));
|
|
|
|
describe('npm-utils', () => {
|
|
beforeEach(() => {
|
|
jest.resetModules();
|
|
jest.resetAllMocks();
|
|
});
|
|
|
|
describe('getPackageVersionStrByTag', () => {
|
|
it('should return package version string', () => {
|
|
execMock.mockImplementationOnce(() => ({code: 0, stdout: '0.34.2 \n'}));
|
|
const versionStr = getPackageVersionStrByTag('my-package', 'next');
|
|
expect(versionStr).toBe('0.34.2');
|
|
});
|
|
it('should throw error when invalid result', () => {
|
|
execMock.mockImplementationOnce(() => ({
|
|
code: 1,
|
|
stderr: 'Some error message',
|
|
}));
|
|
|
|
expect(() => {
|
|
getPackageVersionStrByTag('my-package', 'next');
|
|
}).toThrow('Failed to get next version from npm\nSome error message');
|
|
});
|
|
});
|
|
|
|
describe('publishPackage', () => {
|
|
it('should run publish command', () => {
|
|
publishPackage(
|
|
'path/to/my-package',
|
|
{tag: 'latest', otp: 'otp'},
|
|
{silent: true, cwd: 'i/expect/this/to/be/overriden'},
|
|
);
|
|
expect(execMock).toHaveBeenCalledWith(
|
|
'npm publish --tag latest --otp otp',
|
|
{silent: true, cwd: 'path/to/my-package'},
|
|
);
|
|
});
|
|
|
|
it('should run publish command when no execOptions', () => {
|
|
publishPackage('path/to/my-package', {tag: 'latest', otp: 'otp'});
|
|
expect(execMock).toHaveBeenCalledWith(
|
|
'npm publish --tag latest --otp otp',
|
|
{cwd: 'path/to/my-package'},
|
|
);
|
|
});
|
|
});
|
|
});
|