mirror of https://github.com/renovatebot/renovate
143 lines
5.1 KiB
TypeScript
143 lines
5.1 KiB
TypeScript
import { getPkgReleases } from '..';
|
|
import { Fixtures } from '../../../../test/fixtures';
|
|
import * as httpMock from '../../../../test/http-mock';
|
|
import { ExternalHostError } from '../../../types/errors/external-host-error';
|
|
import { GolangVersionDatasource } from '.';
|
|
|
|
const golangReleasesContent = Fixtures.get('releases.go');
|
|
const golangReleasesInvalidContent = Fixtures.get('releases-invalid.go');
|
|
const golangReleasesInvalidContent2 = Fixtures.get('releases-invalid2.go');
|
|
const golangReleasesInvalidContent3 = Fixtures.get('releases-invalid3.go');
|
|
const golangReleasesInvalidContent4 = Fixtures.get('releases-invalid4.go');
|
|
const golangReleasesInvalidContent5 = Fixtures.get('releases-invalid5.go');
|
|
const golangReleasesInvalidContent6 = Fixtures.get('releases-invalid6.go');
|
|
|
|
const datasource = GolangVersionDatasource.id;
|
|
|
|
describe('modules/datasource/golang-version/index', () => {
|
|
describe('getReleases', () => {
|
|
it('parses real data', async () => {
|
|
httpMock
|
|
.scope('https://raw.githubusercontent.com')
|
|
.get('/golang/website/HEAD/internal/history/release.go')
|
|
.reply(200, golangReleasesContent);
|
|
const res = await getPkgReleases({
|
|
datasource,
|
|
packageName: 'golang',
|
|
});
|
|
expect(res?.releases).toHaveLength(132);
|
|
expect(res?.releases[0]).toEqual({
|
|
releaseTimestamp: '2012-03-28T00:00:00.000Z',
|
|
version: '1.0.0',
|
|
});
|
|
expect(res).toMatchSnapshot();
|
|
});
|
|
|
|
it('supports custom registry URL', async () => {
|
|
httpMock
|
|
.scope('https://custom-registry/website')
|
|
.get('/HEAD/internal/history/release.go')
|
|
.reply(200, golangReleasesContent);
|
|
const config = {
|
|
registryUrls: ['https://custom-registry/website'],
|
|
};
|
|
const res = await getPkgReleases({
|
|
...config,
|
|
datasource,
|
|
packageName: 'golang',
|
|
});
|
|
expect(res?.releases).toHaveLength(132);
|
|
expect(res?.releases[0]).toEqual({
|
|
releaseTimestamp: '2012-03-28T00:00:00.000Z',
|
|
version: '1.0.0',
|
|
});
|
|
});
|
|
|
|
it('throws ExternalHostError for invalid release with no versions', async () => {
|
|
httpMock
|
|
.scope('https://raw.githubusercontent.com')
|
|
.get('/golang/website/HEAD/internal/history/release.go')
|
|
.reply(200, golangReleasesInvalidContent);
|
|
await expect(
|
|
getPkgReleases({
|
|
datasource,
|
|
packageName: 'golang',
|
|
}),
|
|
).rejects.toThrow(ExternalHostError);
|
|
});
|
|
|
|
it('throws ExternalHostError for invalid release with wrong termination', async () => {
|
|
httpMock
|
|
.scope('https://raw.githubusercontent.com')
|
|
.get('/golang/website/HEAD/internal/history/release.go')
|
|
.reply(200, golangReleasesInvalidContent2);
|
|
await expect(
|
|
getPkgReleases({
|
|
datasource,
|
|
packageName: 'golang',
|
|
}),
|
|
).rejects.toThrow(ExternalHostError);
|
|
});
|
|
|
|
it('throws ExternalHostError for empty result', async () => {
|
|
httpMock
|
|
.scope('https://raw.githubusercontent.com')
|
|
.get('/golang/website/HEAD/internal/history/release.go')
|
|
.reply(200, {});
|
|
await expect(
|
|
getPkgReleases({ datasource, packageName: 'golang' }),
|
|
).rejects.toThrow(ExternalHostError);
|
|
});
|
|
|
|
it('throws ExternalHostError for zero releases extracted', async () => {
|
|
httpMock
|
|
.scope('https://raw.githubusercontent.com')
|
|
.get('/golang/website/HEAD/internal/history/release.go')
|
|
.reply(200, golangReleasesInvalidContent3);
|
|
await expect(
|
|
getPkgReleases({ datasource, packageName: 'golang' }),
|
|
).rejects.toThrow(ExternalHostError);
|
|
});
|
|
|
|
it('throws ExternalHostError for invalid release semver', async () => {
|
|
httpMock
|
|
.scope('https://raw.githubusercontent.com')
|
|
.get('/golang/website/HEAD/internal/history/release.go')
|
|
.reply(200, golangReleasesInvalidContent4);
|
|
await expect(
|
|
getPkgReleases({ datasource, packageName: 'golang' }),
|
|
).rejects.toThrow(ExternalHostError);
|
|
});
|
|
|
|
it('returns null for error 404', async () => {
|
|
httpMock
|
|
.scope('https://raw.githubusercontent.com')
|
|
.get('/golang/website/HEAD/internal/history/release.go')
|
|
.reply(404);
|
|
expect(
|
|
await getPkgReleases({ datasource, packageName: 'golang' }),
|
|
).toBeNull();
|
|
});
|
|
|
|
it('throws ExternalHostError for invalid release format beginning ', async () => {
|
|
httpMock
|
|
.scope('https://raw.githubusercontent.com')
|
|
.get('/golang/website/HEAD/internal/history/release.go')
|
|
.reply(200, golangReleasesInvalidContent5);
|
|
await expect(
|
|
getPkgReleases({ datasource, packageName: 'golang' }),
|
|
).rejects.toThrow(ExternalHostError);
|
|
});
|
|
|
|
it('throws ExternalHostError for invalid release format', async () => {
|
|
httpMock
|
|
.scope('https://raw.githubusercontent.com')
|
|
.get('/golang/website/HEAD/internal/history/release.go')
|
|
.reply(200, golangReleasesInvalidContent6);
|
|
await expect(
|
|
getPkgReleases({ datasource, packageName: 'golang' }),
|
|
).rejects.toThrow(ExternalHostError);
|
|
});
|
|
});
|
|
});
|