2019-08-15 04:30:16 +00:00
|
|
|
import fs from 'fs';
|
2020-02-11 05:08:10 +00:00
|
|
|
import _got from '../../util/got';
|
2020-02-23 08:16:25 +00:00
|
|
|
import * as nuget from '.';
|
2020-02-11 05:08:10 +00:00
|
|
|
import * as _hostRules from '../../util/host-rules';
|
2019-12-20 08:27:58 +00:00
|
|
|
|
|
|
|
const hostRules: any = _hostRules;
|
2018-06-14 09:15:52 +00:00
|
|
|
|
2020-02-11 05:08:10 +00:00
|
|
|
jest.mock('../../util/got');
|
|
|
|
jest.mock('../../util/host-rules');
|
2018-06-14 09:15:52 +00:00
|
|
|
|
2019-08-15 06:26:21 +00:00
|
|
|
const got: any = _got;
|
|
|
|
|
2019-03-11 15:50:10 +00:00
|
|
|
const pkgListV3 = fs.readFileSync(
|
2020-02-11 05:08:10 +00:00
|
|
|
'lib/datasource/nuget/__fixtures__/nunitV3.json',
|
2019-03-11 15:50:10 +00:00
|
|
|
'utf8'
|
|
|
|
);
|
2019-02-19 14:58:42 +00:00
|
|
|
const pkgListV3WithoutProkjectUrl = fs.readFileSync(
|
2020-02-11 05:08:10 +00:00
|
|
|
'lib/datasource/nuget/__fixtures__/nunitV3_withoutProjectUrl.json',
|
2019-02-19 14:58:42 +00:00
|
|
|
'utf8'
|
|
|
|
);
|
2019-11-13 09:58:33 +00:00
|
|
|
const pkgListV3NoGitHubProjectUrl = fs.readFileSync(
|
2020-02-11 05:08:10 +00:00
|
|
|
'lib/datasource/nuget/__fixtures__/nunitV3_noGitHubProjectUrl.json',
|
2019-11-13 09:58:33 +00:00
|
|
|
'utf8'
|
|
|
|
);
|
2019-02-19 14:58:42 +00:00
|
|
|
const pkgInfoV3FromNuget = fs.readFileSync(
|
2020-02-11 05:08:10 +00:00
|
|
|
'lib/datasource/nuget/__fixtures__/nunitv3_nuget-org.xml',
|
2019-02-19 14:58:42 +00:00
|
|
|
'utf8'
|
|
|
|
);
|
|
|
|
|
2019-03-11 15:50:10 +00:00
|
|
|
const pkgListV2 = fs.readFileSync(
|
2020-02-11 05:08:10 +00:00
|
|
|
'lib/datasource/nuget/__fixtures__/nunitV2.xml',
|
2019-03-11 15:50:10 +00:00
|
|
|
'utf8'
|
|
|
|
);
|
2019-11-13 09:58:33 +00:00
|
|
|
const pkgListV2NoGitHubProjectUrl = fs.readFileSync(
|
2020-02-11 05:08:10 +00:00
|
|
|
'lib/datasource/nuget/__fixtures__/nunitV2_noGitHubProjectUrl.xml',
|
2019-11-13 09:58:33 +00:00
|
|
|
'utf8'
|
|
|
|
);
|
2019-09-17 10:55:22 +00:00
|
|
|
const pkgListV2NoRelease = fs.readFileSync(
|
2020-02-11 05:08:10 +00:00
|
|
|
'lib/datasource/nuget/__fixtures__/nunitV2_no_release.xml',
|
2019-09-17 10:55:22 +00:00
|
|
|
'utf8'
|
|
|
|
);
|
2019-02-22 09:34:01 +00:00
|
|
|
const pkgListV2WithoutProjectUrl = fs.readFileSync(
|
2020-02-11 05:08:10 +00:00
|
|
|
'lib/datasource/nuget/__fixtures__/nunitV2_withoutProjectUrl.xml',
|
2019-02-19 14:58:42 +00:00
|
|
|
'utf8'
|
|
|
|
);
|
|
|
|
|
2019-04-29 20:16:47 +00:00
|
|
|
const pkgListV2Page1of2 = fs.readFileSync(
|
2020-02-11 05:08:10 +00:00
|
|
|
'lib/datasource/nuget/__fixtures__/nunitV2_paginated_1.xml',
|
2019-04-29 20:16:47 +00:00
|
|
|
'utf8'
|
|
|
|
);
|
|
|
|
const pkgListV2Page2of2 = fs.readFileSync(
|
2020-02-11 05:08:10 +00:00
|
|
|
'lib/datasource/nuget/__fixtures__/nunitV2_paginated_2.xml',
|
2019-04-29 20:16:47 +00:00
|
|
|
'utf8'
|
|
|
|
);
|
|
|
|
|
2019-02-19 14:58:42 +00:00
|
|
|
const nugetIndexV3 = fs.readFileSync(
|
2020-02-11 05:08:10 +00:00
|
|
|
'lib/datasource/nuget/__fixtures__/indexV3.json',
|
2019-02-19 14:58:42 +00:00
|
|
|
'utf8'
|
|
|
|
);
|
|
|
|
|
2019-02-22 09:34:01 +00:00
|
|
|
const configNoRegistryUrls = {
|
|
|
|
lookupName: 'nunit',
|
|
|
|
};
|
|
|
|
|
2019-02-19 14:58:42 +00:00
|
|
|
const configV3V2 = {
|
|
|
|
lookupName: 'nunit',
|
|
|
|
registryUrls: [
|
|
|
|
'https://api.nuget.org/v3/index.json',
|
|
|
|
'https://www.nuget.org/api/v2/',
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
const configV2 = {
|
|
|
|
lookupName: 'nunit',
|
|
|
|
registryUrls: ['https://www.nuget.org/api/v2/'],
|
|
|
|
};
|
|
|
|
|
|
|
|
const configV3 = {
|
|
|
|
lookupName: 'nunit',
|
|
|
|
registryUrls: ['https://api.nuget.org/v3/index.json'],
|
|
|
|
};
|
|
|
|
|
|
|
|
const configV3NotNugetOrg = {
|
|
|
|
lookupName: 'nunit',
|
|
|
|
registryUrls: ['https://myprivatefeed/index.json'],
|
|
|
|
};
|
2018-06-14 09:15:52 +00:00
|
|
|
|
2018-06-14 13:52:37 +00:00
|
|
|
describe('datasource/nuget', () => {
|
2019-04-22 15:12:16 +00:00
|
|
|
beforeEach(() => global.renovateCache.rmAll());
|
2018-07-29 14:04:00 +00:00
|
|
|
describe('getPkgReleases', () => {
|
2018-12-25 11:31:51 +00:00
|
|
|
beforeEach(() => {
|
2019-02-22 09:34:01 +00:00
|
|
|
jest.resetAllMocks();
|
2019-12-20 08:27:58 +00:00
|
|
|
hostRules.hosts = jest.fn(() => []);
|
2018-12-25 11:31:51 +00:00
|
|
|
global.repoCache = {};
|
|
|
|
});
|
2019-02-19 14:58:42 +00:00
|
|
|
|
|
|
|
it(`can't detect nuget feed version`, async () => {
|
|
|
|
const config = {
|
|
|
|
lookupName: 'nunit',
|
|
|
|
registryUrls: ['#$#api.nuget.org/v3/index.xml'],
|
|
|
|
};
|
|
|
|
|
|
|
|
expect(
|
2020-02-23 08:16:25 +00:00
|
|
|
await nuget.getPkgReleases({
|
2019-02-19 14:58:42 +00:00
|
|
|
...config,
|
|
|
|
})
|
|
|
|
).toBeNull();
|
|
|
|
});
|
|
|
|
|
2020-03-19 20:58:37 +00:00
|
|
|
it('extracts feed version from registry URL hash', async () => {
|
|
|
|
const config = {
|
|
|
|
lookupName: 'nunit',
|
|
|
|
registryUrls: ['https://my-registry#protocolVersion=3'],
|
|
|
|
};
|
|
|
|
await nuget.getPkgReleases({
|
|
|
|
...config,
|
|
|
|
});
|
|
|
|
expect(got.mock.calls[0][0]).toEqual('https://my-registry/');
|
|
|
|
});
|
|
|
|
|
2019-02-22 09:34:01 +00:00
|
|
|
it('queries the default nuget feed if no registries are supplied', async () => {
|
2020-02-23 08:16:25 +00:00
|
|
|
await nuget.getPkgReleases({
|
2019-02-22 09:34:01 +00:00
|
|
|
...configNoRegistryUrls,
|
|
|
|
});
|
|
|
|
expect(got.mock.calls[0][0]).toEqual(
|
|
|
|
'https://api.nuget.org/v3/index.json'
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2019-02-19 14:58:42 +00:00
|
|
|
it(`can't get packages list (v3)`, async () => {
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
body: JSON.parse(nugetIndexV3),
|
|
|
|
statusCode: 200,
|
|
|
|
});
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
statusCode: 500,
|
|
|
|
});
|
2020-02-23 08:16:25 +00:00
|
|
|
const res = await nuget.getPkgReleases({
|
2019-02-19 14:58:42 +00:00
|
|
|
...configV3,
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(res).toBeNull();
|
|
|
|
});
|
|
|
|
it(`empty packages list (v3)`, async () => {
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
body: JSON.parse(nugetIndexV3),
|
|
|
|
statusCode: 200,
|
|
|
|
});
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
body: JSON.parse('{"totalHits": 0}'),
|
|
|
|
statusCode: 200,
|
|
|
|
});
|
2020-02-23 08:16:25 +00:00
|
|
|
const res = await nuget.getPkgReleases({
|
2019-02-19 14:58:42 +00:00
|
|
|
...configV3,
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(res).toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns null for empty result (v3v2)', async () => {
|
|
|
|
got.mockReturnValueOnce({});
|
|
|
|
expect(
|
2020-02-23 08:16:25 +00:00
|
|
|
await nuget.getPkgReleases({
|
2019-02-19 14:58:42 +00:00
|
|
|
...configV3V2,
|
|
|
|
})
|
|
|
|
).toBeNull();
|
|
|
|
});
|
|
|
|
it('returns null for empty result (v2)', async () => {
|
|
|
|
got.mockReturnValueOnce({});
|
|
|
|
expect(
|
2020-02-23 08:16:25 +00:00
|
|
|
await nuget.getPkgReleases({
|
2019-02-19 14:58:42 +00:00
|
|
|
...configV2,
|
|
|
|
})
|
|
|
|
).toBeNull();
|
|
|
|
});
|
|
|
|
it('returns null for empty result (v3)', async () => {
|
2018-06-14 09:15:52 +00:00
|
|
|
got.mockReturnValueOnce({});
|
2019-01-28 05:40:37 +00:00
|
|
|
expect(
|
2020-02-23 08:16:25 +00:00
|
|
|
await nuget.getPkgReleases({
|
2019-02-19 14:58:42 +00:00
|
|
|
...configV3,
|
|
|
|
})
|
|
|
|
).toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns null for non 200 (v3v2)', async () => {
|
|
|
|
got.mockImplementationOnce(() =>
|
|
|
|
Promise.reject({
|
|
|
|
statusCode: 500,
|
|
|
|
})
|
|
|
|
);
|
|
|
|
expect(
|
2020-02-23 08:16:25 +00:00
|
|
|
await nuget.getPkgReleases({
|
2019-02-19 14:58:42 +00:00
|
|
|
...configV3V2,
|
|
|
|
})
|
|
|
|
).toBeNull();
|
|
|
|
});
|
|
|
|
it('returns null for non 200 (v3)', async () => {
|
|
|
|
got.mockImplementationOnce(() =>
|
|
|
|
Promise.reject({
|
|
|
|
statusCode: 500,
|
|
|
|
})
|
|
|
|
);
|
|
|
|
expect(
|
2020-02-23 08:16:25 +00:00
|
|
|
await nuget.getPkgReleases({
|
2019-02-19 14:58:42 +00:00
|
|
|
...configV3,
|
2019-02-04 08:41:22 +00:00
|
|
|
})
|
2019-01-28 05:40:37 +00:00
|
|
|
).toBeNull();
|
2018-06-14 09:15:52 +00:00
|
|
|
});
|
2019-02-19 14:58:42 +00:00
|
|
|
it('returns null for non 200 (v3)', async () => {
|
2018-06-14 13:52:37 +00:00
|
|
|
got.mockImplementationOnce(() =>
|
|
|
|
Promise.reject({
|
2019-02-19 14:58:42 +00:00
|
|
|
statusCode: 500,
|
2018-06-14 13:52:37 +00:00
|
|
|
})
|
2018-06-14 09:15:52 +00:00
|
|
|
);
|
2019-01-28 05:40:37 +00:00
|
|
|
expect(
|
2020-02-23 08:16:25 +00:00
|
|
|
await nuget.getPkgReleases({
|
2019-02-19 14:58:42 +00:00
|
|
|
...configV2,
|
|
|
|
})
|
|
|
|
).toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns null for unknown error (v3v2)', async () => {
|
|
|
|
got.mockImplementationOnce(() => {
|
|
|
|
throw new Error();
|
|
|
|
});
|
|
|
|
expect(
|
2020-02-23 08:16:25 +00:00
|
|
|
await nuget.getPkgReleases({
|
2019-02-19 14:58:42 +00:00
|
|
|
...configV3V2,
|
|
|
|
})
|
|
|
|
).toBeNull();
|
|
|
|
});
|
|
|
|
it('returns null for unknown error in getPkgReleasesFromV3Feed (v3)', async () => {
|
|
|
|
got.mockImplementationOnce(() => {
|
|
|
|
throw new Error();
|
|
|
|
});
|
|
|
|
expect(
|
2020-02-23 08:16:25 +00:00
|
|
|
await nuget.getPkgReleases({
|
2019-02-19 14:58:42 +00:00
|
|
|
...configV3,
|
|
|
|
})
|
|
|
|
).toBeNull();
|
|
|
|
});
|
|
|
|
it('returns null for unknown error in getQueryUrlForV3Feed (v3)', async () => {
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
body: JSON.parse(nugetIndexV3),
|
|
|
|
statusCode: 200,
|
|
|
|
});
|
|
|
|
got.mockImplementationOnce(() => {
|
|
|
|
throw new Error();
|
|
|
|
});
|
|
|
|
expect(
|
2020-02-23 08:16:25 +00:00
|
|
|
await nuget.getPkgReleases({
|
2019-02-19 14:58:42 +00:00
|
|
|
...configV3,
|
2019-02-04 08:41:22 +00:00
|
|
|
})
|
2019-01-28 05:40:37 +00:00
|
|
|
).toBeNull();
|
2018-06-14 13:52:37 +00:00
|
|
|
});
|
2019-02-19 14:58:42 +00:00
|
|
|
it('returns null for unknown error (v2)', async () => {
|
2018-06-14 13:52:37 +00:00
|
|
|
got.mockImplementationOnce(() => {
|
|
|
|
throw new Error();
|
|
|
|
});
|
2019-01-28 05:40:37 +00:00
|
|
|
expect(
|
2020-02-23 08:16:25 +00:00
|
|
|
await nuget.getPkgReleases({
|
2019-02-19 14:58:42 +00:00
|
|
|
...configV2,
|
2019-02-04 08:41:22 +00:00
|
|
|
})
|
2019-01-28 05:40:37 +00:00
|
|
|
).toBeNull();
|
2018-06-14 13:52:37 +00:00
|
|
|
});
|
2019-02-19 14:58:42 +00:00
|
|
|
it('processes real data (v3) feed is a nuget.org', async () => {
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
body: JSON.parse(nugetIndexV3),
|
|
|
|
statusCode: 200,
|
|
|
|
});
|
2018-06-14 13:52:37 +00:00
|
|
|
got.mockReturnValueOnce({
|
2019-02-19 14:58:42 +00:00
|
|
|
body: JSON.parse(pkgListV3),
|
|
|
|
statusCode: 200,
|
2018-06-14 13:52:37 +00:00
|
|
|
});
|
|
|
|
got.mockReturnValueOnce({
|
2019-02-19 14:58:42 +00:00
|
|
|
body: pkgInfoV3FromNuget,
|
|
|
|
statusCode: 200,
|
2018-06-14 13:52:37 +00:00
|
|
|
});
|
2020-02-23 08:16:25 +00:00
|
|
|
const res = await nuget.getPkgReleases({
|
2019-02-19 14:58:42 +00:00
|
|
|
...configV3,
|
|
|
|
});
|
|
|
|
expect(res).not.toBeNull();
|
|
|
|
expect(res).toMatchSnapshot();
|
|
|
|
expect(res.sourceUrl).toBeDefined();
|
|
|
|
});
|
|
|
|
it('processes real data (v3) feed is not a nuget.org', async () => {
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
body: JSON.parse(nugetIndexV3),
|
|
|
|
statusCode: 200,
|
|
|
|
});
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
body: JSON.parse(pkgListV3),
|
|
|
|
statusCode: 200,
|
|
|
|
});
|
2020-02-23 08:16:25 +00:00
|
|
|
const res = await nuget.getPkgReleases({
|
2019-02-19 14:58:42 +00:00
|
|
|
...configV3NotNugetOrg,
|
|
|
|
});
|
|
|
|
expect(res).not.toBeNull();
|
|
|
|
expect(res).toMatchSnapshot();
|
|
|
|
expect(res.sourceUrl).toBeDefined();
|
|
|
|
});
|
2019-04-25 10:28:40 +00:00
|
|
|
it('processes real data (v3) feed is not a nuget.org with mismatch', async () => {
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
body: JSON.parse(nugetIndexV3),
|
|
|
|
statusCode: 200,
|
|
|
|
});
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
body: JSON.parse(pkgListV3),
|
|
|
|
statusCode: 200,
|
|
|
|
});
|
2020-02-23 08:16:25 +00:00
|
|
|
const res = await nuget.getPkgReleases({
|
2019-04-25 10:28:40 +00:00
|
|
|
...configV3NotNugetOrg,
|
|
|
|
lookupName: 'nun',
|
|
|
|
});
|
|
|
|
expect(res).toBeNull();
|
|
|
|
});
|
2019-02-19 14:58:42 +00:00
|
|
|
it('processes real data without project url (v3)', async () => {
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
body: JSON.parse(nugetIndexV3),
|
|
|
|
statusCode: 200,
|
|
|
|
});
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
body: JSON.parse(pkgListV3WithoutProkjectUrl),
|
|
|
|
statusCode: 200,
|
|
|
|
});
|
2020-02-23 08:16:25 +00:00
|
|
|
const res = await nuget.getPkgReleases({
|
2019-02-19 14:58:42 +00:00
|
|
|
...configV3NotNugetOrg,
|
|
|
|
});
|
|
|
|
expect(res).not.toBeNull();
|
|
|
|
expect(res).toMatchSnapshot();
|
|
|
|
expect(res.sourceUrl).not.toBeDefined();
|
|
|
|
});
|
2019-11-13 09:58:33 +00:00
|
|
|
it('processes real data with no github project url (v3)', async () => {
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
body: JSON.parse(nugetIndexV3),
|
|
|
|
statusCode: 200,
|
|
|
|
});
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
body: JSON.parse(pkgListV3NoGitHubProjectUrl),
|
|
|
|
statusCode: 200,
|
|
|
|
});
|
2020-02-23 08:16:25 +00:00
|
|
|
const res = await nuget.getPkgReleases({
|
2019-11-13 09:58:33 +00:00
|
|
|
...configV3NotNugetOrg,
|
|
|
|
});
|
|
|
|
expect(res).not.toBeNull();
|
|
|
|
expect(res).toMatchSnapshot();
|
|
|
|
});
|
2019-02-19 14:58:42 +00:00
|
|
|
it('processes real data (v2)', async () => {
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
body: pkgListV2,
|
|
|
|
statusCode: 200,
|
|
|
|
});
|
2020-02-23 08:16:25 +00:00
|
|
|
const res = await nuget.getPkgReleases({
|
2019-02-19 14:58:42 +00:00
|
|
|
...configV2,
|
2019-02-04 08:41:22 +00:00
|
|
|
});
|
2018-06-14 13:52:37 +00:00
|
|
|
expect(res).not.toBeNull();
|
|
|
|
expect(res).toMatchSnapshot();
|
2018-12-10 04:59:28 +00:00
|
|
|
expect(res.sourceUrl).toBeDefined();
|
2018-06-14 09:15:52 +00:00
|
|
|
});
|
2019-09-17 10:55:22 +00:00
|
|
|
it('processes real data no relase (v2)', async () => {
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
body: pkgListV2NoRelease,
|
|
|
|
statusCode: 200,
|
|
|
|
});
|
2020-02-23 08:16:25 +00:00
|
|
|
const res = await nuget.getPkgReleases({
|
2019-09-17 10:55:22 +00:00
|
|
|
...configV2,
|
|
|
|
});
|
|
|
|
expect(res).toBeNull();
|
|
|
|
});
|
2019-02-19 14:58:42 +00:00
|
|
|
it('processes real data without project url (v2)', async () => {
|
|
|
|
got.mockReturnValueOnce({
|
2019-02-22 09:34:01 +00:00
|
|
|
body: pkgListV2WithoutProjectUrl,
|
2019-02-19 14:58:42 +00:00
|
|
|
statusCode: 200,
|
|
|
|
});
|
2020-02-23 08:16:25 +00:00
|
|
|
const res = await nuget.getPkgReleases({
|
2019-02-19 14:58:42 +00:00
|
|
|
...configV2,
|
|
|
|
});
|
|
|
|
expect(res).not.toBeNull();
|
|
|
|
expect(res).toMatchSnapshot();
|
|
|
|
expect(res.sourceUrl).not.toBeDefined();
|
|
|
|
});
|
2019-11-13 09:58:33 +00:00
|
|
|
it('processes real data with no github project url (v2)', async () => {
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
body: pkgListV2NoGitHubProjectUrl,
|
|
|
|
statusCode: 200,
|
|
|
|
});
|
2020-02-23 08:16:25 +00:00
|
|
|
const res = await nuget.getPkgReleases({
|
2019-11-13 09:58:33 +00:00
|
|
|
...configV2,
|
|
|
|
});
|
|
|
|
expect(res).not.toBeNull();
|
|
|
|
expect(res).toMatchSnapshot();
|
|
|
|
});
|
2019-04-29 20:16:47 +00:00
|
|
|
it('handles paginated results (v2)', async () => {
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
body: pkgListV2Page1of2,
|
|
|
|
statusCode: 200,
|
|
|
|
});
|
|
|
|
got.mockReturnValueOnce({
|
|
|
|
body: pkgListV2Page2of2,
|
|
|
|
statusCode: 200,
|
|
|
|
});
|
2020-02-23 08:16:25 +00:00
|
|
|
const res = await nuget.getPkgReleases({
|
2019-04-29 20:16:47 +00:00
|
|
|
...configV2,
|
|
|
|
});
|
|
|
|
expect(res).not.toBeNull();
|
|
|
|
expect(res).toMatchSnapshot();
|
|
|
|
});
|
2018-06-14 09:15:52 +00:00
|
|
|
});
|
|
|
|
});
|