mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 07:26:26 +00:00
907b2b054e
Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Michael Kriese <michael.kriese@visualon.de> Co-authored-by: Jamie Magee <JamieMagee@users.noreply.github.com>
246 lines
7.7 KiB
TypeScript
246 lines
7.7 KiB
TypeScript
import { readFileSync } from 'fs';
|
|
import * as datasourceDocker from '../../datasource/docker';
|
|
import * as datasourceGitTags from '../../datasource/git-tags';
|
|
import * as datasourceGitHubTags from '../../datasource/github-tags';
|
|
import {
|
|
extractBase,
|
|
extractImage,
|
|
extractPackageFile,
|
|
parseKustomize,
|
|
} from './extract';
|
|
|
|
const kustomizeGitSSHBase = readFileSync(
|
|
'lib/manager/kustomize/__fixtures__/gitSshBase.yaml',
|
|
'utf8'
|
|
);
|
|
|
|
const kustomizeEmpty = readFileSync(
|
|
'lib/manager/kustomize/__fixtures__/kustomizeEmpty.yaml',
|
|
'utf8'
|
|
);
|
|
|
|
const kustomizeGitSSHSubdir = readFileSync(
|
|
'lib/manager/kustomize/__fixtures__/gitSubdir.yaml',
|
|
'utf8'
|
|
);
|
|
|
|
const kustomizeHTTP = readFileSync(
|
|
'lib/manager/kustomize/__fixtures__/kustomizeHttp.yaml',
|
|
'utf8'
|
|
);
|
|
|
|
const kustomizeWithLocal = readFileSync(
|
|
'lib/manager/kustomize/__fixtures__/kustomizeWithLocal.yaml',
|
|
'utf8'
|
|
);
|
|
|
|
const nonKustomize = readFileSync(
|
|
'lib/manager/kustomize/__fixtures__/service.yaml',
|
|
'utf8'
|
|
);
|
|
|
|
const gitImages = readFileSync(
|
|
'lib/manager/kustomize/__fixtures__/gitImages.yaml',
|
|
'utf8'
|
|
);
|
|
|
|
const kustomizeDepsInResources = readFileSync(
|
|
'lib/manager/kustomize/__fixtures__/depsInResources.yaml',
|
|
'utf8'
|
|
);
|
|
|
|
describe('manager/kustomize/extract', () => {
|
|
it('should successfully parse a valid kustomize file', () => {
|
|
const file = parseKustomize(kustomizeGitSSHBase);
|
|
expect(file).not.toBeNull();
|
|
});
|
|
it('return null on an invalid file', () => {
|
|
const file = parseKustomize('');
|
|
expect(file).toBeNull();
|
|
});
|
|
describe('extractBase', () => {
|
|
it('should return null for a local base', () => {
|
|
const res = extractBase('./service-1');
|
|
expect(res).toBeNull();
|
|
});
|
|
it('should extract out the version of an http base', () => {
|
|
const base = 'https://github.com/user/test-repo.git';
|
|
const version = 'v1.0.0';
|
|
const sample = {
|
|
currentValue: version,
|
|
datasource: datasourceGitTags.id,
|
|
depName: base,
|
|
lookupName: base,
|
|
};
|
|
|
|
const pkg = extractBase(`${base}?ref=${version}`);
|
|
expect(pkg).toEqual(sample);
|
|
});
|
|
|
|
it('should extract out the version of an github base', () => {
|
|
const base = 'fluxcd/flux/deploy';
|
|
const version = 'v1.0.0';
|
|
const sample = {
|
|
currentValue: version,
|
|
datasource: datasourceGitHubTags.id,
|
|
depName: base,
|
|
lookupName: 'fluxcd/flux',
|
|
};
|
|
|
|
const pkg = extractBase(`github.com/${base}?ref=${version}`);
|
|
expect(pkg).toEqual(sample);
|
|
});
|
|
it('should extract out the version of a git base', () => {
|
|
const base = 'git@github.com:user/repo.git';
|
|
const version = 'v1.0.0';
|
|
const sample = {
|
|
currentValue: version,
|
|
datasource: datasourceGitTags.id,
|
|
depName: base,
|
|
lookupName: base,
|
|
};
|
|
|
|
const pkg = extractBase(`${base}?ref=${version}`);
|
|
expect(pkg).toEqual(sample);
|
|
});
|
|
it('should extract out the version of a git base with subdir', () => {
|
|
const base = 'git@github.com:user/repo.git';
|
|
const version = 'v1.0.0';
|
|
const sample = {
|
|
currentValue: version,
|
|
datasource: datasourceGitTags.id,
|
|
depName: `${base}//subdir`,
|
|
lookupName: base,
|
|
};
|
|
|
|
const pkg = extractBase(`${sample.depName}?ref=${version}`);
|
|
expect(pkg).toEqual(sample);
|
|
});
|
|
});
|
|
describe('image extraction', () => {
|
|
it('should return null on a null input', () => {
|
|
const pkg = extractImage({
|
|
name: null,
|
|
newTag: null,
|
|
});
|
|
expect(pkg).toBeNull();
|
|
});
|
|
it('should correctly extract a default image', () => {
|
|
const sample = {
|
|
currentValue: 'v1.0.0',
|
|
datasource: datasourceDocker.id,
|
|
depName: 'node',
|
|
lookupName: 'node',
|
|
};
|
|
const pkg = extractImage({
|
|
name: sample.lookupName,
|
|
newTag: sample.currentValue,
|
|
});
|
|
expect(pkg).toEqual(sample);
|
|
});
|
|
it('should correctly extract an image in a repo', () => {
|
|
const sample = {
|
|
currentValue: 'v1.0.0',
|
|
datasource: datasourceDocker.id,
|
|
depName: 'test/node',
|
|
lookupName: 'test/node',
|
|
};
|
|
const pkg = extractImage({
|
|
name: sample.lookupName,
|
|
newTag: sample.currentValue,
|
|
});
|
|
expect(pkg).toEqual(sample);
|
|
});
|
|
it('should correctly extract from a different registry', () => {
|
|
const sample = {
|
|
currentValue: 'v1.0.0',
|
|
datasource: datasourceDocker.id,
|
|
depName: 'quay.io/repo/image',
|
|
lookupName: 'quay.io/repo/image',
|
|
};
|
|
const pkg = extractImage({
|
|
name: sample.lookupName,
|
|
newTag: sample.currentValue,
|
|
});
|
|
expect(pkg).toEqual(sample);
|
|
});
|
|
it('should correctly extract from a different port', () => {
|
|
const sample = {
|
|
currentValue: 'v1.0.0',
|
|
datasource: datasourceDocker.id,
|
|
depName: 'localhost:5000/repo/image',
|
|
lookupName: 'localhost:5000/repo/image',
|
|
};
|
|
const pkg = extractImage({
|
|
name: sample.lookupName,
|
|
newTag: sample.currentValue,
|
|
});
|
|
expect(pkg).toEqual(sample);
|
|
});
|
|
it('should correctly extract from a multi-depth registry', () => {
|
|
const sample = {
|
|
currentValue: 'v1.0.0',
|
|
datasource: datasourceDocker.id,
|
|
depName: 'localhost:5000/repo/image/service',
|
|
lookupName: 'localhost:5000/repo/image/service',
|
|
};
|
|
const pkg = extractImage({
|
|
name: sample.lookupName,
|
|
newTag: sample.currentValue,
|
|
});
|
|
expect(pkg).toEqual(sample);
|
|
});
|
|
});
|
|
describe('extractPackageFile()', () => {
|
|
it('returns null for non kustomize kubernetes files', () => {
|
|
expect(extractPackageFile(nonKustomize)).toBeNull();
|
|
});
|
|
it('extracts multiple image lines', () => {
|
|
const res = extractPackageFile(kustomizeWithLocal);
|
|
expect(res.deps).toMatchSnapshot();
|
|
expect(res.deps).toHaveLength(2);
|
|
});
|
|
it('extracts ssh dependency', () => {
|
|
const res = extractPackageFile(kustomizeGitSSHBase);
|
|
expect(res.deps).toMatchSnapshot();
|
|
expect(res.deps).toHaveLength(1);
|
|
});
|
|
it('extracts ssh dependency with a subdir', () => {
|
|
const res = extractPackageFile(kustomizeGitSSHSubdir);
|
|
expect(res.deps).toMatchSnapshot();
|
|
expect(res.deps).toHaveLength(1);
|
|
});
|
|
it('extracts http dependency', () => {
|
|
const res = extractPackageFile(kustomizeHTTP);
|
|
expect(res.deps).toMatchSnapshot();
|
|
expect(res.deps).toHaveLength(2);
|
|
expect(res.deps[0].currentValue).toEqual('v0.0.1');
|
|
expect(res.deps[1].currentValue).toEqual('1.19.0');
|
|
expect(res.deps[1].depName).toEqual('fluxcd/flux/deploy');
|
|
expect(res.deps[1].lookupName).toEqual('fluxcd/flux');
|
|
});
|
|
it('should extract out image versions', () => {
|
|
const res = extractPackageFile(gitImages);
|
|
expect(res.deps).toMatchSnapshot();
|
|
expect(res.deps).toHaveLength(4);
|
|
expect(res.deps[0].currentValue).toEqual('v0.1.0');
|
|
expect(res.deps[1].currentValue).toEqual('v0.0.1');
|
|
});
|
|
it('ignores non-Kubernetes empty files', () => {
|
|
expect(extractPackageFile('')).toBeNull();
|
|
});
|
|
it('does nothing with kustomize empty kustomize files', () => {
|
|
expect(extractPackageFile(kustomizeEmpty)).toBeNull();
|
|
});
|
|
it('should extract bases from bases block and the resources block', () => {
|
|
const res = extractPackageFile(kustomizeDepsInResources);
|
|
expect(res).not.toBeNull();
|
|
expect(res.deps).toMatchSnapshot();
|
|
expect(res.deps).toHaveLength(2);
|
|
expect(res.deps[0].currentValue).toEqual('v0.0.1');
|
|
expect(res.deps[1].currentValue).toEqual('1.19.0');
|
|
expect(res.deps[1].depName).toEqual('fluxcd/flux/deploy');
|
|
expect(res.deps[1].lookupName).toEqual('fluxcd/flux');
|
|
});
|
|
});
|
|
});
|