59 lines
2.4 KiB
TypeScript
59 lines
2.4 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
import {ReleaseTrain} from '../../versioning/release-trains';
|
|
import {MoveNextIntoReleaseCandidateAction} from '../actions/move-next-into-release-candidate';
|
|
|
|
import {expectBranchOffActionToRun} from './branch-off-next-branch-testing';
|
|
import {parse} from './test-utils';
|
|
|
|
describe('move next into release-candidate action', () => {
|
|
it('should not activate if a feature-freeze release-train is active', async () => {
|
|
expect(await MoveNextIntoReleaseCandidateAction.isActive({
|
|
releaseCandidate: new ReleaseTrain('10.1.x', parse('10.1.0-next.1')),
|
|
next: new ReleaseTrain('master', parse('10.2.0-next.0')),
|
|
latest: new ReleaseTrain('10.0.x', parse('10.0.3')),
|
|
})).toBe(false);
|
|
});
|
|
|
|
it('should not activate if release-candidate release-train is active', async () => {
|
|
expect(await MoveNextIntoReleaseCandidateAction.isActive({
|
|
// No longer in feature-freeze but in release-candidate phase.
|
|
releaseCandidate: new ReleaseTrain('10.1.x', parse('10.1.0-rc.0')),
|
|
next: new ReleaseTrain('master', parse('10.2.0-next.0')),
|
|
latest: new ReleaseTrain('10.0.x', parse('10.0.3')),
|
|
})).toBe(false);
|
|
});
|
|
|
|
it('should not activate if the next release-train is for a major', async () => {
|
|
expect(await MoveNextIntoReleaseCandidateAction.isActive({
|
|
releaseCandidate: null,
|
|
next: new ReleaseTrain('master', parse('11.0.0-next.0')),
|
|
latest: new ReleaseTrain('10.0.x', parse('10.0.3')),
|
|
})).toBe(false);
|
|
});
|
|
|
|
it('should activate if no FF/RC release-train is active', async () => {
|
|
expect(await MoveNextIntoReleaseCandidateAction.isActive({
|
|
releaseCandidate: null,
|
|
next: new ReleaseTrain('master', parse('10.1.0-next.0')),
|
|
latest: new ReleaseTrain('10.0.x', parse('10.0.3')),
|
|
})).toBe(true);
|
|
});
|
|
|
|
it('should create pull requests and new version-branch', async () => {
|
|
await expectBranchOffActionToRun(
|
|
MoveNextIntoReleaseCandidateAction, {
|
|
releaseCandidate: null,
|
|
next: new ReleaseTrain('master', parse('10.2.0-next.0')),
|
|
latest: new ReleaseTrain('10.0.x', parse('10.0.3')),
|
|
},
|
|
/* isNextPublishedToNpm */ true, '10.3.0-next.0', '10.2.0-rc.0', '10.2.x');
|
|
});
|
|
});
|