/** * 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 { parseVersion, isReleaseBranch, validateBuildType, } = require('../version-utils'); let execResult = null; jest.mock('shelljs', () => ({ exec: () => { return { stdout: execResult, }; }, echo: message => { console.log(message); }, exit: exitCode => { exit(exitCode); }, })); describe('version-utils', () => { describe('isReleaseBranch', () => { it('should identify as release branch', () => { expect(isReleaseBranch('v0.66-stable')).toBe(true); expect(isReleaseBranch('0.66-stable')).toBe(true); expect(isReleaseBranch('made-up-stuff-stable')).toBe(true); }); it('should not identify as release branch', () => { expect(isReleaseBranch('main')).toBe(false); expect(isReleaseBranch('pull/32659')).toBe(false); }); }); describe('parseVersion', () => { it('should throw error if buildType is undefined', () => { function testInvalidVersion() { parseVersion('v0.10.5'); } expect(testInvalidVersion).toThrowErrorMatchingInlineSnapshot( `"Unsupported build type: undefined"`, ); }); it('should throw error if buildType is not `release`, `dry-run` or `nightly`', () => { function testInvalidVersion() { parseVersion('v0.10.5', 'invalid_build_type'); } expect(testInvalidVersion).toThrowErrorMatchingInlineSnapshot( `"Unsupported build type: invalid_build_type"`, ); }); it('should throw error if invalid match with release', () => { function testInvalidVersion() { parseVersion('', 'release'); } expect(testInvalidVersion).toThrowErrorMatchingInlineSnapshot( `"You must pass a correctly formatted version; couldn't parse "`, ); }); it('should throw error if invalid match with dry-run', () => { function testInvalidVersion() { parseVersion('', 'dry-run'); } expect(testInvalidVersion).toThrowErrorMatchingInlineSnapshot( `"You must pass a correctly formatted version; couldn't parse "`, ); }); it('should throw error if invalid match with nightly', () => { function testInvalidVersion() { parseVersion('', 'nightly'); } expect(testInvalidVersion).toThrowErrorMatchingInlineSnapshot( `"You must pass a correctly formatted version; couldn't parse "`, ); }); it('should parse pre-release version with release and `.`', () => { const {version, major, minor, patch, prerelease} = parseVersion( '0.66.0-rc.4', 'release', ); expect(version).toBe('0.66.0-rc.4'); expect(major).toBe('0'); expect(minor).toBe('66'); expect(patch).toBe('0'); expect(prerelease).toBe('rc.4'); }); it('should parse pre-release version with release and `-`', () => { const {version, major, minor, patch, prerelease} = parseVersion( '0.66.0-rc-4', 'release', ); expect(version).toBe('0.66.0-rc-4'); expect(major).toBe('0'); expect(minor).toBe('66'); expect(patch).toBe('0'); expect(prerelease).toBe('rc-4'); }); it('should reject pre-release version with random prerelease pattern', () => { function testInvalidVersion() { parseVersion('0.66.0-something_invalid', 'release'); } expect(testInvalidVersion).toThrowErrorMatchingInlineSnapshot( `"Version 0.66.0-something_invalid is not valid for Release"`, ); }); it('should parse stable version', () => { const {version, major, minor, patch, prerelease} = parseVersion( '0.66.0', 'release', ); expect(version).toBe('0.66.0'); expect(major).toBe('0'); expect(minor).toBe('66'); expect(patch).toBe('0'); expect(prerelease).toBeUndefined(); }); it('should parse pre-release version from tag', () => { const {version, major, minor, patch, prerelease} = parseVersion( 'v0.66.0-rc.4', 'release', ); expect(version).toBe('0.66.0-rc.4'); expect(major).toBe('0'); expect(minor).toBe('66'); expect(patch).toBe('0'); expect(prerelease).toBe('rc.4'); }); it('should reject pre-release version from tag with random prerelease pattern', () => { function testInvalidVersion() { parseVersion('v0.66.0-something_invalid', 'release'); } expect(testInvalidVersion).toThrowErrorMatchingInlineSnapshot( `"Version 0.66.0-something_invalid is not valid for Release"`, ); }); it('should parse stable version from tag', () => { const {version, major, minor, patch, prerelease} = parseVersion( 'v0.66.0', 'release', ); expect(version).toBe('0.66.0'); expect(major).toBe('0'); expect(minor).toBe('66'); expect(patch).toBe('0'); expect(prerelease).toBeUndefined(); }); it('should reject nightly with no prerelease', () => { // this should fail function testInvalidFunction() { parseVersion('0.0.0', 'nightly'); } expect(testInvalidFunction).toThrowErrorMatchingInlineSnapshot( `"Version 0.0.0 is not valid for nightlies"`, ); }); it('should reject nightly with prerelease but wrong version numbers', () => { // this should fail function testInvalidFunction() { parseVersion('1.2.3-pre-release', 'nightly'); } expect(testInvalidFunction).toThrowErrorMatchingInlineSnapshot( `"Version 1.2.3-pre-release is not valid for nightlies"`, ); }); it('should parse nightly with 0.0.0 and a prerelease part', () => { // this should fail const {version, major, minor, patch, prerelease} = parseVersion( '0.0.0-pre-release', 'nightly', ); expect(version).toBe('0.0.0-pre-release'); expect(major).toBe('0'); expect(minor).toBe('0'); expect(patch).toBe('0'); expect(prerelease).toBe('pre-release'); }); it('should parse dryrun with release version', () => { const {version, major, minor, patch, prerelease} = parseVersion( '0.7.3', 'dry-run', ); expect(version).toBe('0.7.3'); expect(major).toBe('0'); expect(minor).toBe('7'); expect(patch).toBe('3'); expect(prerelease).toBeUndefined(); }); it('should parse dryrun with prerelease . version', () => { const {version, major, minor, patch, prerelease} = parseVersion( '0.20.0-rc.0', 'dry-run', ); expect(version).toBe('0.20.0-rc.0'); expect(major).toBe('0'); expect(minor).toBe('20'); expect(patch).toBe('0'); expect(prerelease).toBe('rc.0'); }); it('should parse dryrun with prerelease - version', () => { const {version, major, minor, patch, prerelease} = parseVersion( '0.20.0-rc-0', 'dry-run', ); expect(version).toBe('0.20.0-rc-0'); expect(major).toBe('0'); expect(minor).toBe('20'); expect(patch).toBe('0'); expect(prerelease).toBe('rc-0'); }); it('should parse dryrun with main version', () => { const {version, major, minor, patch, prerelease} = parseVersion( '1000.0.0', 'dry-run', ); expect(version).toBe('1000.0.0'); expect(major).toBe('1000'); expect(minor).toBe('0'); expect(patch).toBe('0'); expect(prerelease).toBeUndefined(); }); it('should fail for dryrun with v1000.0.1 version', () => { function testInvalidFunction() { parseVersion('v1000.0.1', 'dry-run'); } expect(testInvalidFunction).toThrowErrorMatchingInlineSnapshot( `"Version 1000.0.1 is not valid for dry-runs"`, ); }); it('should parse dryrun with nightly version', () => { const {version, major, minor, patch, prerelease} = parseVersion( '0.0.0-something-else', 'dry-run', ); expect(version).toBe('0.0.0-something-else'); expect(major).toBe('0'); expect(minor).toBe('0'); expect(patch).toBe('0'); expect(prerelease).toBe('something-else'); }); it('should reject dryrun invalid values', () => { function testInvalidFunction() { parseVersion('1000.0.4', 'dry-run'); } expect(testInvalidFunction).toThrowErrorMatchingInlineSnapshot( `"Version 1000.0.4 is not valid for dry-runs"`, ); }); it('should reject dryrun for invalid prerelease', () => { function testInvalidFunction() { parseVersion('0.6.4-something-else', 'dry-run'); } expect(testInvalidFunction).toThrowErrorMatchingInlineSnapshot( `"Version 0.6.4-something-else is not valid for dry-runs"`, ); }); it('should reject dryrun for nightlies with invalid prerelease', () => { function testInvalidFunction() { parseVersion('0.0.0', 'dry-run'); } expect(testInvalidFunction).toThrowErrorMatchingInlineSnapshot( `"Version 0.0.0 is not valid for dry-runs"`, ); }); }); describe('Validate version', () => { it('Throw error if the buildType is unknown', () => { function testInvalidFunction() { validateBuildType('wrong_build'); } expect(testInvalidFunction).toThrowErrorMatchingInlineSnapshot( `"Unsupported build type: wrong_build"`, ); }); it('Does not throw if the buildType is release', () => { function testValidCall() { validateBuildType('release'); } expect(testValidCall).not.toThrowError(); }); it('Does not throw if the buildType is nightly', () => { function testValidCall() { validateBuildType('nightly'); } expect(testValidCall).not.toThrowError(); }); it('Does not throw if the buildType is dry-run', () => { function testValidCall() { validateBuildType('dry-run'); } expect(testValidCall).not.toThrowError(); }); }); });