1
0
Fork 0
mirror of https://github.com/actions/setup-java.git synced 2024-09-20 00:26:43 +00:00

Fix adopt tests

This commit is contained in:
John Oliver 2023-10-17 15:19:09 +01:00
parent 23f68c75ed
commit f9217513b1

View file

@ -7,6 +7,7 @@ import {JavaInstallerOptions} from '../../src/distributions/base-models';
import os from 'os'; import os from 'os';
import temurinManifestData from '../data/temurin.json';
import manifestData from '../data/adopt.json'; import manifestData from '../data/adopt.json';
import { import {
TemurinDistribution, TemurinDistribution,
@ -18,11 +19,21 @@ describe('getAvailableVersions', () => {
beforeEach(() => { beforeEach(() => {
spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson'); spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson');
spyHttpClient.mockReturnValue({ spyHttpClient
statusCode: 200, .mockImplementation((requestUrl, additionalHeaders) => {
headers: {}, if (requestUrl.startsWith('https://api.adoptium.net/')) {
result: [] return {
}); statusCode: 200,
headers: {},
result: []
} as any;
}
})
.mockReturnValue({
statusCode: 200,
headers: {},
result: []
});
}); });
afterEach(() => { afterEach(() => {
@ -135,6 +146,15 @@ describe('getAvailableVersions', () => {
it('load available versions', async () => { it('load available versions', async () => {
spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson'); spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson');
spyHttpClient spyHttpClient
.mockImplementation((requestUrl, additionalHeaders) => {
if (requestUrl.startsWith('https://api.adoptium.net/')) {
return {
statusCode: 200,
headers: {},
result: []
} as any;
}
})
.mockReturnValueOnce({ .mockReturnValueOnce({
statusCode: 200, statusCode: 200,
headers: {}, headers: {},
@ -236,6 +256,17 @@ describe('findPackageForDownload', () => {
['15.0.1+9', '15.0.1+9'], ['15.0.1+9', '15.0.1+9'],
['15.0.1+9.1', '15.0.1+9.1'] ['15.0.1+9.1', '15.0.1+9.1']
])('version is resolved correctly %s -> %s', async (input, expected) => { ])('version is resolved correctly %s -> %s', async (input, expected) => {
const temurinDistribution = new TemurinDistribution(
{
version: '11',
architecture: 'x64',
packageType: 'jdk',
checkLatest: false
},
TemurinImplementation.Hotspot
);
temurinDistribution['getAvailableVersions'] = async () => [] as any;
const distribution = new AdoptDistribution( const distribution = new AdoptDistribution(
{ {
version: '11', version: '11',
@ -243,26 +274,23 @@ describe('findPackageForDownload', () => {
packageType: 'jdk', packageType: 'jdk',
checkLatest: false checkLatest: false
}, },
AdoptImplementation.Hotspot AdoptImplementation.Hotspot,
temurinDistribution
); );
distribution['getAvailableVersions'] = async () => manifestData as any; distribution['getAvailableVersions'] = async () => manifestData as any;
const resolvedVersion = await distribution['findPackageForDownload'](input); const resolvedVersion = await distribution['findPackageForDownload'](input);
expect(resolvedVersion.version).toBe(expected); expect(resolvedVersion.version).toBe(expected);
}); });
describe('delegates to Temurin', () => { describe('delegates to Temurin', () => {
it.each([ it.each([
['9', '9.0.7+10'], ['8', '8.0.302+8'],
['15', '15.0.2+7'], ['16', '16.0.2+7'],
['15.0', '15.0.2+7'], ['16.0', '16.0.2+7'],
['15.0.2', '15.0.2+7'], ['16.0.2', '16.0.2+7'],
['15.0.1', '15.0.1+9.1'], ['8.x', '8.0.302+8'],
['11.x', '11.0.10+9'], ['x', '16.0.2+7']
['x', '15.0.2+7'],
['12', '12.0.2+10.3'], // make sure that '12.0.2+10.1', '12.0.2+10.3', '12.0.2+10.2' are sorted correctly
['12.0.2+10.1', '12.0.2+10.1'],
['15.0.1+9', '15.0.1+9'],
['15.0.1+9.1', '15.0.1+9.1']
])('version is resolved correctly %s -> %s', async (input, expected) => { ])('version is resolved correctly %s -> %s', async (input, expected) => {
const temurinDistribution = new TemurinDistribution( const temurinDistribution = new TemurinDistribution(
{ {
@ -273,6 +301,8 @@ describe('findPackageForDownload', () => {
}, },
TemurinImplementation.Hotspot TemurinImplementation.Hotspot
); );
temurinDistribution['getAvailableVersions'] = async () =>
temurinManifestData as any;
const distribution = new AdoptDistribution( const distribution = new AdoptDistribution(
{ {
@ -285,11 +315,13 @@ describe('findPackageForDownload', () => {
temurinDistribution temurinDistribution
); );
temurinDistribution['getAvailableVersions'] = async () => distribution['findPackageForDownload'] = async () => {
manifestData as any; throw new Error(`Could not find satisfied version`);
const resolvedVersion = await distribution['findPackageForDownload']( };
input
); const resolvedVersion = await temurinDistribution[
'findPackageForDownload'
](input);
expect(resolvedVersion.version).toBe(expected); expect(resolvedVersion.version).toBe(expected);
}); });
}); });
@ -334,6 +366,16 @@ describe('findPackageForDownload', () => {
}); });
it('version is found but binaries list is empty', async () => { it('version is found but binaries list is empty', async () => {
const temurinDistribution = new TemurinDistribution(
{
version: '11',
architecture: 'x64',
packageType: 'jdk',
checkLatest: false
},
TemurinImplementation.Hotspot
);
temurinDistribution['getAvailableVersions'] = async () => [] as any;
const distribution = new AdoptDistribution( const distribution = new AdoptDistribution(
{ {
version: '11', version: '11',
@ -341,13 +383,24 @@ describe('findPackageForDownload', () => {
packageType: 'jdk', packageType: 'jdk',
checkLatest: false checkLatest: false
}, },
AdoptImplementation.Hotspot AdoptImplementation.Hotspot,
temurinDistribution
); );
distribution['getAvailableVersions'] = async () => manifestData as any; distribution['getAvailableVersions'] = async () => manifestData as any;
await expect( await expect(
distribution['findPackageForDownload']('9.0.8') distribution['findPackageForDownload']('9.0.8')
).rejects.toThrow(/Could not find satisfied version for SemVer */); ).rejects.toThrow(/Could not find satisfied version for SemVer */);
}); });
const temurinDistribution = new TemurinDistribution(
{
version: '11',
architecture: 'x64',
packageType: 'jdk',
checkLatest: false
},
TemurinImplementation.Hotspot
);
temurinDistribution['getAvailableVersions'] = async () => [] as any;
it('version is not found', async () => { it('version is not found', async () => {
const distribution = new AdoptDistribution( const distribution = new AdoptDistribution(
@ -357,7 +410,8 @@ describe('findPackageForDownload', () => {
packageType: 'jdk', packageType: 'jdk',
checkLatest: false checkLatest: false
}, },
AdoptImplementation.Hotspot AdoptImplementation.Hotspot,
temurinDistribution
); );
distribution['getAvailableVersions'] = async () => manifestData as any; distribution['getAvailableVersions'] = async () => manifestData as any;
await expect(distribution['findPackageForDownload']('7.x')).rejects.toThrow( await expect(distribution['findPackageForDownload']('7.x')).rejects.toThrow(
@ -366,6 +420,23 @@ describe('findPackageForDownload', () => {
}); });
it('version list is empty', async () => { it('version list is empty', async () => {
let spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson');
spyHttpClient.mockImplementation((requestUrl, additionalHeaders) => {
if (requestUrl.startsWith('https://api.adoptium.net/')) {
return {
statusCode: 200,
headers: {},
result: []
} as any;
}
return {
statusCode: 200,
headers: {},
result: manifestData as any
} as any;
});
const distribution = new AdoptDistribution( const distribution = new AdoptDistribution(
{ {
version: '11', version: '11',