renovate/lib/workers/repository/updates/generate.spec.ts
Michael Kriese 00c56d8bde
chore: fix types (#5904)
* chore: fix types

* fix more types

* chore: mote fixes

* fix frmat

* chore: fix tests

* chore: fix type

* chore: cleanup

* chore: cleanup

Co-authored-by: Rhys Arkins <rhys@arkins.net>
2020-05-07 10:23:45 +02:00

474 lines
14 KiB
TypeScript

import { defaultConfig, partial } from '../../../../test/util';
import { UpdateType } from '../../../config';
import * as datasourceNpm from '../../../datasource/npm';
import { BranchUpgradeConfig } from '../../common';
import { generateBranchConfig } from './generate';
beforeEach(() => {
jest.resetAllMocks();
});
describe('workers/repository/updates/generate', () => {
describe('generateBranchConfig()', () => {
it('does not group single upgrade', () => {
const branch = [
{
depName: 'some-dep',
groupName: 'some-group',
branchName: 'some-branch',
prTitle: 'some-title',
lazyGrouping: true,
releaseTimestamp: '2017-02-07T20:01:41+00:00',
foo: 1,
group: {
foo: 2,
},
},
];
const res = generateBranchConfig(branch);
expect(res.foo).toBe(1);
expect(res.groupName).toBeUndefined();
expect(res.releaseTimestamp).toBeDefined();
});
it('groups single upgrade if not lazyGrouping', () => {
const branch = [
{
depName: 'some-dep',
groupName: 'some-group',
branchName: 'some-branch',
prTitle: 'some-title',
lazyGrouping: false,
foo: 1,
group: {
foo: 2,
},
},
];
const res = generateBranchConfig(branch);
expect(res.foo).toBe(2);
expect(res.groupName).toBeDefined();
});
it('does not group same upgrades', () => {
const branch = [
{
depName: 'some-dep',
groupName: 'some-group',
branchName: 'some-branch',
prTitle: 'some-title',
lazyGrouping: true,
foo: 1,
group: {
foo: 2,
},
},
{
depName: 'some-dep',
groupName: 'some-group',
branchName: 'some-branch',
prTitle: 'some-title',
lazyGrouping: true,
foo: 1,
group: {
foo: 2,
},
},
];
const res = generateBranchConfig(branch);
expect(res.foo).toBe(1);
expect(res.groupName).toBeUndefined();
});
it('groups multiple upgrades same version', () => {
const branch = [
{
depName: 'some-dep',
groupName: 'some-group',
branchName: 'some-branch',
prTitle: 'some-title',
commitMessageExtra:
'to {{#if isMajor}}v{{newMajor}}{{else}}{{#unless isRange}}v{{/unless}}{{newValue}}{{/if}}',
lazyGrouping: true,
foo: 1,
newValue: '5.1.2',
toVersion: '5.1.2',
group: {
foo: 2,
},
releaseTimestamp: '2017-02-07T20:01:41+00:00',
canBeUnpublished: false,
automerge: true,
},
{
depName: 'some-other-dep',
groupName: 'some-group',
branchName: 'some-branch',
prTitle: 'some-title',
commitMessageExtra:
'to {{#if isMajor}}v{{newMajor}}{{else}}{{#unless isRange}}v{{/unless}}{{newValue}}{{/if}}',
lazyGrouping: true,
foo: 1,
newValue: '5.1.2',
toVersion: '5.1.2',
group: {
foo: 2,
},
releaseTimestamp: '2017-02-06T20:01:41+00:00',
canBeUnpublished: true,
automerge: false,
},
];
const res = generateBranchConfig(branch);
expect(res.foo).toBe(2);
expect(res.groupName).toBeDefined();
expect(res.releaseTimestamp).toEqual('2017-02-07T20:01:41+00:00');
expect(res.canBeUnpublished).toBe(true);
expect(res.automerge).toBe(false);
});
it('groups multiple upgrades different version', () => {
const branch = [
{
depName: 'depB',
groupName: 'some-group',
branchName: 'some-branch',
prTitle: 'some-title',
commitMessageExtra:
'to {{#if isMajor}}v{{newMajor}}{{else}}{{#unless isRange}}v{{/unless}}{{newValue}}{{/if}}',
lazyGrouping: true,
foo: 1,
newValue: '5.1.2',
toVersion: '5.1.2',
group: {
foo: 2,
},
releaseTimestamp: '2017-02-07T20:01:41+00:00',
},
{
depName: 'depA',
groupName: 'some-group',
branchName: 'some-branch',
prTitle: 'some-title',
commitMessageExtra:
'to {{#if isMajor}}v{{newMajor}}{{else}}{{#unless isRange}}v{{/unless}}{{newValue}}{{/if}}',
lazyGrouping: true,
foo: 1,
newValue: '1.1.0',
toVersion: '1.1.0',
group: {
foo: 2,
},
releaseTimestamp: '2017-02-08T20:01:41+00:00',
},
];
const res = generateBranchConfig(branch);
expect(res.foo).toBe(2);
expect(res.singleVersion).toBeUndefined();
expect(res.recreateClosed).toBe(true);
expect(res.groupName).toBeDefined();
expect(res.releaseTimestamp).toEqual('2017-02-08T20:01:41+00:00');
});
it('groups multiple digest updates', () => {
const branch = [
{
depName: 'foo/bar',
groupName: 'foo docker images',
branchName: 'some-branch',
prTitle: 'some-title',
commitMessageExtra:
'to {{#if isMajor}}v{{newMajor}}{{else}}{{#unless isRange}}v{{/unless}}{{newValue}}{{/if}}',
lazyGrouping: true,
isDigest: true,
currentDigest: 'abcdefghijklmnopqrstuvwxyz',
newDigest: '123abcdefghijklmnopqrstuvwxyz',
foo: 1,
group: {
foo: 2,
},
},
{
depName: 'foo/baz',
groupName: 'foo docker images',
branchName: 'some-branch',
prTitle: 'some-title',
commitMessageExtra:
'to {{#if isMajor}}v{{newMajor}}{{else}}{{#unless isRange}}v{{/unless}}{{newValue}}{{/if}}',
lazyGrouping: true,
foo: 1,
newValue: 'zzzzzzzzzz',
group: {
foo: 2,
},
},
];
const res = generateBranchConfig(branch);
expect(res.foo).toBe(2);
expect(res.singleVersion).toBeUndefined();
expect(res.recreateClosed).toBe(true);
expect(res.groupName).toBeDefined();
});
it('fixes different messages', () => {
const branch = [
{
depName: 'depA',
groupName: 'some-group',
branchName: 'some-branch',
prTitle: 'some-title',
commitMessageExtra:
'to {{#if isMajor}}v{{newMajor}}{{else}}{{#unless isRange}}v{{/unless}}{{newValue}}{{/if}}',
lazyGrouping: true,
foo: 1,
newValue: '>= 5.1.2',
toVersion: '5.1.2',
group: {
foo: 2,
},
releaseTimestamp: '2017-02-07T20:01:41+00:00',
},
{
depName: 'depA',
groupName: 'some-group',
branchName: 'some-branch',
prTitle: 'some-title',
commitMessageExtra:
'to {{#if isMajor}}v{{newMajor}}{{else}}{{#unless isRange}}v{{/unless}}{{newValue}}{{/if}}',
lazyGrouping: true,
foo: 1,
newValue: '^5,1,2',
toVersion: '5.1.2',
group: {
foo: 2,
},
releaseTimestamp: '2017-02-08T20:01:41+00:00',
},
];
const res = generateBranchConfig(branch);
expect(res.foo).toBe(1);
expect(res.groupName).toBeUndefined();
});
it('uses semantic commits', () => {
const branch = [
partial<BranchUpgradeConfig>({
...defaultConfig,
depName: 'some-dep',
semanticCommits: true,
semanticCommitType: 'chore',
semanticCommitScope: 'package',
lazyGrouping: true,
newValue: '1.2.0',
isSingleVersion: true,
toVersion: '1.2.0',
foo: 1,
group: {
foo: 2,
},
}),
];
const res = generateBranchConfig(branch);
expect(res.prTitle).toEqual(
'chore(package): update dependency some-dep to v1.2.0'
);
});
it('scopes monorepo commits', () => {
const branch = [
partial<BranchUpgradeConfig>({
...defaultConfig,
depName: 'some-dep',
packageFile: 'package.json',
baseDir: '',
semanticCommits: true,
semanticCommitType: 'chore',
semanticCommitScope: '{{baseDir}}',
lazyGrouping: true,
newValue: '1.2.0',
isSingleVersion: true,
toVersion: '1.2.0',
foo: 1,
group: {
foo: 2,
},
}),
];
const res = generateBranchConfig(branch);
expect(res.prTitle).toEqual(
'chore(): update dependency some-dep to v1.2.0'
);
});
it('scopes monorepo commits with nested package files', () => {
const branch = [
partial<BranchUpgradeConfig>({
...defaultConfig,
commitBodyTable: false,
depName: 'some-dep',
packageFile: 'foo/bar/package.json',
parentDir: 'bar',
semanticCommits: true,
semanticCommitType: 'chore',
semanticCommitScope: '{{parentDir}}',
lazyGrouping: true,
newValue: '1.2.0',
isSingleVersion: true,
toVersion: '1.2.0',
foo: 1,
group: {
foo: 2,
},
}),
];
const res = generateBranchConfig(branch);
expect(res.prTitle).toEqual(
'chore(bar): update dependency some-dep to v1.2.0'
);
});
it('scopes monorepo commits with nested package files', () => {
const branch = [
partial<BranchUpgradeConfig>({
...defaultConfig,
depName: 'some-dep',
packageFile: 'foo/bar/package.json',
baseDir: 'foo/bar',
semanticCommits: true,
semanticCommitType: 'chore',
semanticCommitScope: '{{baseDir}}',
lazyGrouping: true,
newValue: '1.2.0',
isSingleVersion: true,
toVersion: '1.2.0',
foo: 1,
group: {
foo: 2,
},
}),
];
const res = generateBranchConfig(branch);
expect(res.prTitle).toEqual(
'chore(foo/bar): update dependency some-dep to v1.2.0'
);
});
it('adds commit message body', () => {
const branch = [
partial<BranchUpgradeConfig>({
...defaultConfig,
depName: 'some-dep',
commitBody: '[skip-ci]',
newValue: '1.2.0',
isSingleVersion: true,
toVersion: '1.2.0',
}),
];
const res = generateBranchConfig(branch);
expect(res.commitMessage).toMatchSnapshot();
expect(res.commitMessage.includes('\n')).toBe(true);
});
it('supports manual prTitle', () => {
const branch = [
partial<BranchUpgradeConfig>({
...defaultConfig,
depName: 'some-dep',
prTitle: 'Upgrade {{depName}}',
toLowerCase: true,
}),
];
const res = generateBranchConfig(branch);
expect(res.prTitle).toMatchSnapshot();
});
it('handles @types specially', () => {
const branch: BranchUpgradeConfig[] = [
{
commitBodyTable: true,
datasource: datasourceNpm.id,
depName: '@types/some-dep',
groupName: null,
branchName: 'some-branch',
prTitle: 'some-title',
lazyGrouping: true,
currentValue: '0.5.7',
fromVersion: '0.5.7',
toVersion: '0.5.8',
group: {},
},
{
commitBodyTable: true,
datasource: datasourceNpm.id,
depName: 'some-dep',
groupName: null,
branchName: 'some-branch',
prTitle: 'some-title',
lazyGrouping: true,
newValue: '0.6.0',
group: {},
},
];
const res = generateBranchConfig(branch);
expect(res.recreateClosed).toBe(false);
expect(res.groupName).toBeUndefined();
});
it('handles @types specially (reversed)', () => {
const branch: BranchUpgradeConfig[] = [
{
depName: 'some-dep',
groupName: null,
branchName: 'some-branch',
prTitle: 'some-title',
lazyGrouping: true,
newValue: '0.6.0',
group: {},
},
{
depName: '@types/some-dep',
groupName: null,
branchName: 'some-branch',
prTitle: 'some-title',
lazyGrouping: true,
newValue: '0.5.7',
group: {},
},
];
expect(generateBranchConfig(branch)).toMatchSnapshot();
});
it('handles upgrades', () => {
const branch: BranchUpgradeConfig[] = [
{
depName: 'some-dep',
branchName: 'some-branch',
prTitle: 'some-title',
newValue: '0.6.0',
hasBaseBranches: true,
fileReplacePosition: 5,
},
{
...defaultConfig,
depName: 'some-dep',
branchName: 'some-branch',
prTitle: 'some-title',
newValue: '0.6.0',
isGroup: true,
separateMinorPatch: true,
updateType: 'minor' as UpdateType,
fileReplacePosition: 1,
},
{
...defaultConfig,
depName: 'some-dep',
branchName: 'some-branch',
prTitle: 'some-title',
newValue: '0.6.0',
isGroup: true,
separateMajorMinor: true,
updateType: 'major' as UpdateType,
fileReplacePosition: 2,
},
{
...defaultConfig,
depName: 'some-dep',
branchName: 'some-branch',
prTitle: 'some-title',
newValue: '0.6.0',
isGroup: true,
separateMajorMinor: true,
updateType: 'patch' as UpdateType,
fileReplacePosition: 0,
},
];
const res = generateBranchConfig(branch);
expect(res.prTitle).toMatchSnapshot();
});
});
});