2021-04-05 12:02:27 +02:00
|
|
|
import { HttpClient } from '@actions/http-client';
|
|
|
|
|
2021-05-17 15:33:21 +02:00
|
|
|
import { AdoptDistribution, AdoptImplementation } from '../../src/distributions/adopt/installer';
|
2021-04-05 12:02:27 +02:00
|
|
|
import { JavaInstallerOptions } from '../../src/distributions/base-models';
|
|
|
|
|
2022-10-11 01:47:17 +02:00
|
|
|
import os from 'os';
|
|
|
|
|
2021-04-05 12:02:27 +02:00
|
|
|
let manifestData = require('../data/adopt.json') as [];
|
|
|
|
|
|
|
|
describe('getAvailableVersions', () => {
|
|
|
|
let spyHttpClient: jest.SpyInstance;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson');
|
|
|
|
spyHttpClient.mockReturnValue({
|
|
|
|
statusCode: 200,
|
|
|
|
headers: {},
|
|
|
|
result: []
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
jest.resetAllMocks();
|
|
|
|
jest.clearAllMocks();
|
|
|
|
jest.restoreAllMocks();
|
|
|
|
});
|
|
|
|
|
|
|
|
it.each([
|
|
|
|
[
|
|
|
|
{ version: '11', architecture: 'x64', packageType: 'jdk', checkLatest: false },
|
2021-05-17 15:33:21 +02:00
|
|
|
AdoptImplementation.Hotspot,
|
|
|
|
'os=mac&architecture=x64&image_type=jdk&release_type=ga&jvm_impl=hotspot&page_size=20&page=0'
|
2021-04-05 12:02:27 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
{ version: '11', architecture: 'x86', packageType: 'jdk', checkLatest: false },
|
2021-05-17 15:33:21 +02:00
|
|
|
AdoptImplementation.Hotspot,
|
|
|
|
'os=mac&architecture=x86&image_type=jdk&release_type=ga&jvm_impl=hotspot&page_size=20&page=0'
|
2021-04-05 12:02:27 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
{ version: '11', architecture: 'x64', packageType: 'jre', checkLatest: false },
|
2021-05-17 15:33:21 +02:00
|
|
|
AdoptImplementation.Hotspot,
|
|
|
|
'os=mac&architecture=x64&image_type=jre&release_type=ga&jvm_impl=hotspot&page_size=20&page=0'
|
2021-04-05 12:02:27 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
{ version: '11-ea', architecture: 'x64', packageType: 'jdk', checkLatest: false },
|
2021-05-17 15:33:21 +02:00
|
|
|
AdoptImplementation.Hotspot,
|
|
|
|
'os=mac&architecture=x64&image_type=jdk&release_type=ea&jvm_impl=hotspot&page_size=20&page=0'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
{ version: '11', architecture: 'x64', packageType: 'jdk', checkLatest: false },
|
|
|
|
AdoptImplementation.OpenJ9,
|
|
|
|
'os=mac&architecture=x64&image_type=jdk&release_type=ga&jvm_impl=openj9&page_size=20&page=0'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
{ version: '11', architecture: 'x86', packageType: 'jdk', checkLatest: false },
|
|
|
|
AdoptImplementation.OpenJ9,
|
|
|
|
'os=mac&architecture=x86&image_type=jdk&release_type=ga&jvm_impl=openj9&page_size=20&page=0'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
{ version: '11', architecture: 'x64', packageType: 'jre', checkLatest: false },
|
|
|
|
AdoptImplementation.OpenJ9,
|
|
|
|
'os=mac&architecture=x64&image_type=jre&release_type=ga&jvm_impl=openj9&page_size=20&page=0'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
{ version: '11-ea', architecture: 'x64', packageType: 'jdk', checkLatest: false },
|
|
|
|
AdoptImplementation.OpenJ9,
|
|
|
|
'os=mac&architecture=x64&image_type=jdk&release_type=ea&jvm_impl=openj9&page_size=20&page=0'
|
2021-04-05 12:02:27 +02:00
|
|
|
]
|
|
|
|
])(
|
|
|
|
'build correct url for %s',
|
2021-05-17 15:33:21 +02:00
|
|
|
async (
|
|
|
|
installerOptions: JavaInstallerOptions,
|
|
|
|
impl: AdoptImplementation,
|
|
|
|
expectedParameters
|
|
|
|
) => {
|
|
|
|
const distribution = new AdoptDistribution(installerOptions, impl);
|
2021-04-05 12:02:27 +02:00
|
|
|
const baseUrl = 'https://api.adoptopenjdk.net/v3/assets/version/%5B1.0,100.0%5D';
|
2021-05-17 15:33:21 +02:00
|
|
|
const expectedUrl = `${baseUrl}?project=jdk&vendor=adoptopenjdk&heap_size=normal&sort_method=DEFAULT&sort_order=DESC&${expectedParameters}`;
|
2021-04-05 12:02:27 +02:00
|
|
|
distribution['getPlatformOption'] = () => 'mac';
|
|
|
|
|
|
|
|
await distribution['getAvailableVersions']();
|
|
|
|
|
|
|
|
expect(spyHttpClient.mock.calls).toHaveLength(1);
|
|
|
|
expect(spyHttpClient.mock.calls[0][0]).toBe(expectedUrl);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
it('load available versions', async () => {
|
|
|
|
spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson');
|
|
|
|
spyHttpClient
|
|
|
|
.mockReturnValueOnce({
|
|
|
|
statusCode: 200,
|
|
|
|
headers: {},
|
|
|
|
result: manifestData
|
|
|
|
})
|
|
|
|
.mockReturnValueOnce({
|
|
|
|
statusCode: 200,
|
|
|
|
headers: {},
|
|
|
|
result: manifestData
|
|
|
|
})
|
|
|
|
.mockReturnValueOnce({
|
|
|
|
statusCode: 200,
|
|
|
|
headers: {},
|
|
|
|
result: []
|
|
|
|
});
|
|
|
|
|
2021-05-17 15:33:21 +02:00
|
|
|
const distribution = new AdoptDistribution(
|
|
|
|
{ version: '11', architecture: 'x64', packageType: 'jdk', checkLatest: false },
|
|
|
|
AdoptImplementation.Hotspot
|
|
|
|
);
|
2021-04-05 12:02:27 +02:00
|
|
|
const availableVersions = await distribution['getAvailableVersions']();
|
|
|
|
expect(availableVersions).not.toBeNull();
|
|
|
|
expect(availableVersions.length).toBe(manifestData.length * 2);
|
|
|
|
});
|
2021-05-17 15:33:21 +02:00
|
|
|
|
|
|
|
it.each([
|
|
|
|
[AdoptImplementation.Hotspot, 'jdk', 'Java_Adopt_jdk'],
|
|
|
|
[AdoptImplementation.Hotspot, 'jre', 'Java_Adopt_jre'],
|
|
|
|
[AdoptImplementation.OpenJ9, 'jdk', 'Java_Adopt-OpenJ9_jdk'],
|
|
|
|
[AdoptImplementation.OpenJ9, 'jre', 'Java_Adopt-OpenJ9_jre']
|
|
|
|
])(
|
|
|
|
'find right toolchain folder',
|
|
|
|
(impl: AdoptImplementation, packageType: string, expected: string) => {
|
|
|
|
const distribution = new AdoptDistribution(
|
|
|
|
{ version: '11', architecture: 'x64', packageType: packageType, checkLatest: false },
|
|
|
|
impl
|
|
|
|
);
|
|
|
|
|
|
|
|
// @ts-ignore - because it is protected
|
|
|
|
expect(distribution.toolcacheFolderName).toBe(expected);
|
|
|
|
}
|
|
|
|
);
|
2022-10-11 01:47:17 +02:00
|
|
|
|
|
|
|
it.each([
|
|
|
|
['amd64', 'x64'],
|
|
|
|
['arm64', 'aarch64']
|
|
|
|
])(
|
|
|
|
'defaults to os.arch(): %s mapped to distro arch: %s',
|
|
|
|
async (osArch: string, distroArch: string) => {
|
|
|
|
jest.spyOn(os, 'arch').mockReturnValue(osArch);
|
|
|
|
|
|
|
|
const installerOptions: JavaInstallerOptions = {
|
|
|
|
version: '17',
|
|
|
|
architecture: '', // to get default value
|
|
|
|
packageType: 'jdk',
|
|
|
|
checkLatest: false
|
|
|
|
};
|
|
|
|
|
|
|
|
const expectedParameters = `os=mac&architecture=${distroArch}&image_type=jdk&release_type=ga&jvm_impl=hotspot&page_size=20&page=0`;
|
|
|
|
|
|
|
|
const distribution = new AdoptDistribution(installerOptions, AdoptImplementation.Hotspot);
|
|
|
|
const baseUrl = 'https://api.adoptopenjdk.net/v3/assets/version/%5B1.0,100.0%5D';
|
|
|
|
const expectedUrl = `${baseUrl}?project=jdk&vendor=adoptopenjdk&heap_size=normal&sort_method=DEFAULT&sort_order=DESC&${expectedParameters}`;
|
|
|
|
distribution['getPlatformOption'] = () => 'mac';
|
|
|
|
|
|
|
|
await distribution['getAvailableVersions']();
|
|
|
|
|
|
|
|
expect(spyHttpClient.mock.calls).toHaveLength(1);
|
|
|
|
expect(spyHttpClient.mock.calls[0][0]).toBe(expectedUrl);
|
|
|
|
}
|
|
|
|
);
|
2021-04-05 12:02:27 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('findPackageForDownload', () => {
|
|
|
|
it.each([
|
|
|
|
['9', '9.0.7+10'],
|
|
|
|
['15', '15.0.2+7'],
|
|
|
|
['15.0', '15.0.2+7'],
|
|
|
|
['15.0.2', '15.0.2+7'],
|
|
|
|
['15.0.1', '15.0.1+9.1'],
|
|
|
|
['11.x', '11.0.10+9'],
|
|
|
|
['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) => {
|
2021-05-17 15:33:21 +02:00
|
|
|
const distribution = new AdoptDistribution(
|
|
|
|
{ version: '11', architecture: 'x64', packageType: 'jdk', checkLatest: false },
|
|
|
|
AdoptImplementation.Hotspot
|
|
|
|
);
|
2021-04-05 12:02:27 +02:00
|
|
|
distribution['getAvailableVersions'] = async () => manifestData;
|
|
|
|
const resolvedVersion = await distribution['findPackageForDownload'](input);
|
|
|
|
expect(resolvedVersion.version).toBe(expected);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('version is found but binaries list is empty', async () => {
|
2021-05-17 15:33:21 +02:00
|
|
|
const distribution = new AdoptDistribution(
|
|
|
|
{ version: '11', architecture: 'x64', packageType: 'jdk', checkLatest: false },
|
|
|
|
AdoptImplementation.Hotspot
|
|
|
|
);
|
2021-04-05 12:02:27 +02:00
|
|
|
distribution['getAvailableVersions'] = async () => manifestData;
|
|
|
|
await expect(distribution['findPackageForDownload']('9.0.8')).rejects.toThrowError(
|
|
|
|
/Could not find satisfied version for SemVer */
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('version is not found', async () => {
|
2021-05-17 15:33:21 +02:00
|
|
|
const distribution = new AdoptDistribution(
|
|
|
|
{ version: '11', architecture: 'x64', packageType: 'jdk', checkLatest: false },
|
|
|
|
AdoptImplementation.Hotspot
|
|
|
|
);
|
2021-04-05 12:02:27 +02:00
|
|
|
distribution['getAvailableVersions'] = async () => manifestData;
|
|
|
|
await expect(distribution['findPackageForDownload']('7.x')).rejects.toThrowError(
|
|
|
|
/Could not find satisfied version for SemVer */
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('version list is empty', async () => {
|
2021-05-17 15:33:21 +02:00
|
|
|
const distribution = new AdoptDistribution(
|
|
|
|
{ version: '11', architecture: 'x64', packageType: 'jdk', checkLatest: false },
|
|
|
|
AdoptImplementation.Hotspot
|
|
|
|
);
|
2021-04-05 12:02:27 +02:00
|
|
|
distribution['getAvailableVersions'] = async () => [];
|
|
|
|
await expect(distribution['findPackageForDownload']('11')).rejects.toThrowError(
|
|
|
|
/Could not find satisfied version for SemVer */
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|