2026-06-29 13:19:49 +01:00
|
|
|
import {
|
|
|
|
|
MicrosoftDistributions,
|
|
|
|
|
MICROSOFT_PUBLIC_KEY
|
|
|
|
|
} from '../../src/distributions/microsoft/installer';
|
2022-10-10 17:47:17 -06:00
|
|
|
import os from 'os';
|
2023-06-07 16:18:17 +02:00
|
|
|
import data from '../data/microsoft.json';
|
2022-09-23 14:47:30 +02:00
|
|
|
import * as httpm from '@actions/http-client';
|
|
|
|
|
import * as core from '@actions/core';
|
2026-06-29 13:19:49 +01:00
|
|
|
import * as tc from '@actions/tool-cache';
|
|
|
|
|
import * as gpg from '../../src/gpg';
|
|
|
|
|
import * as util from '../../src/util';
|
|
|
|
|
import fs from 'fs';
|
2021-12-08 10:50:14 -08:00
|
|
|
|
|
|
|
|
describe('findPackageForDownload', () => {
|
|
|
|
|
let distribution: MicrosoftDistributions;
|
2022-09-23 14:47:30 +02:00
|
|
|
let spyGetManifestFromRepo: jest.SpyInstance;
|
|
|
|
|
let spyDebug: jest.SpyInstance;
|
2026-04-13 23:14:45 +05:30
|
|
|
let spyCoreError: jest.SpyInstance;
|
2021-12-08 10:50:14 -08:00
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
distribution = new MicrosoftDistributions({
|
|
|
|
|
version: '',
|
|
|
|
|
architecture: 'x64',
|
|
|
|
|
packageType: 'jdk',
|
|
|
|
|
checkLatest: false
|
|
|
|
|
});
|
2022-09-23 14:47:30 +02:00
|
|
|
|
|
|
|
|
spyGetManifestFromRepo = jest.spyOn(httpm.HttpClient.prototype, 'getJson');
|
|
|
|
|
spyGetManifestFromRepo.mockReturnValue({
|
|
|
|
|
result: data,
|
|
|
|
|
statusCode: 200,
|
|
|
|
|
headers: {}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
spyDebug = jest.spyOn(core, 'debug');
|
|
|
|
|
spyDebug.mockImplementation(() => {});
|
2026-04-13 23:14:45 +05:30
|
|
|
|
|
|
|
|
// Mock core.error to suppress error logs
|
|
|
|
|
spyCoreError = jest.spyOn(core, 'error');
|
|
|
|
|
spyCoreError.mockImplementation(() => {});
|
2021-12-08 10:50:14 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it.each([
|
2025-10-27 22:17:49 +02:00
|
|
|
[
|
|
|
|
|
'25.x',
|
|
|
|
|
'25.0.0',
|
|
|
|
|
'https://aka.ms/download-jdk/microsoft-jdk-25.0.0-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}'
|
|
|
|
|
],
|
2023-10-17 10:19:17 +02:00
|
|
|
[
|
|
|
|
|
'21.x',
|
|
|
|
|
'21.0.0',
|
|
|
|
|
'https://aka.ms/download-jdk/microsoft-jdk-21.0.0-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}'
|
|
|
|
|
],
|
2023-05-10 12:20:09 +09:00
|
|
|
[
|
2026-06-22 18:56:08 +03:00
|
|
|
'17.x',
|
|
|
|
|
'17.0.18',
|
|
|
|
|
'https://aka.ms/download-jdk/microsoft-jdk-17.0.18-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}'
|
2023-05-10 12:20:09 +09:00
|
|
|
],
|
2022-06-09 17:53:21 +01:00
|
|
|
[
|
2026-06-22 18:56:08 +03:00
|
|
|
'17.0.7',
|
2023-05-06 18:41:28 +09:00
|
|
|
'17.0.7',
|
|
|
|
|
'https://aka.ms/download-jdk/microsoft-jdk-17.0.7-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}'
|
2022-05-24 19:12:23 +02:00
|
|
|
],
|
2026-06-22 18:56:08 +03:00
|
|
|
[
|
|
|
|
|
'17.0.1',
|
|
|
|
|
'17.0.1+12.1',
|
|
|
|
|
'https://aka.ms/download-jdk/microsoft-jdk-17.0.1.12.1-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}'
|
|
|
|
|
],
|
2023-05-10 12:20:09 +09:00
|
|
|
[
|
|
|
|
|
'16.0.x',
|
|
|
|
|
'16.0.2+7.1',
|
|
|
|
|
'https://aka.ms/download-jdk/microsoft-jdk-16.0.2.7.1-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}'
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'11.0.13',
|
|
|
|
|
'11.0.13+8.1',
|
|
|
|
|
'https://aka.ms/download-jdk/microsoft-jdk-11.0.13.8.1-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}'
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'11.0.15',
|
|
|
|
|
'11.0.15',
|
|
|
|
|
'https://aka.ms/download-jdk/microsoft-jdk-11.0.15-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}'
|
|
|
|
|
],
|
2022-05-24 19:12:23 +02:00
|
|
|
[
|
2023-05-06 18:41:28 +09:00
|
|
|
'11.x',
|
|
|
|
|
'11.0.19',
|
|
|
|
|
'https://aka.ms/download-jdk/microsoft-jdk-11.0.19-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}'
|
2021-12-08 10:50:14 -08:00
|
|
|
]
|
|
|
|
|
])('version is %s -> %s', async (input, expectedVersion, expectedUrl) => {
|
|
|
|
|
const result = await distribution['findPackageForDownload'](input);
|
|
|
|
|
expect(result.version).toBe(expectedVersion);
|
|
|
|
|
let os: string;
|
|
|
|
|
let archive: string;
|
|
|
|
|
switch (process.platform) {
|
|
|
|
|
case 'darwin':
|
|
|
|
|
os = 'macos';
|
|
|
|
|
archive = 'tar.gz';
|
|
|
|
|
break;
|
|
|
|
|
case 'win32':
|
|
|
|
|
os = 'windows';
|
|
|
|
|
archive = 'zip';
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
os = process.platform.toString();
|
|
|
|
|
archive = 'tar.gz';
|
|
|
|
|
break;
|
|
|
|
|
}
|
2023-03-09 14:49:35 +02:00
|
|
|
const url = expectedUrl
|
|
|
|
|
.replace('{{OS_TYPE}}', os)
|
|
|
|
|
.replace('{{ARCHIVE_TYPE}}', archive);
|
2021-12-08 10:50:14 -08:00
|
|
|
expect(result.url).toBe(url);
|
2026-06-29 13:19:49 +01:00
|
|
|
expect(result.signatureUrl).toBe(`${url}.sig`);
|
2021-12-08 10:50:14 -08:00
|
|
|
});
|
|
|
|
|
|
2024-02-28 10:41:33 +05:30
|
|
|
it.each([
|
|
|
|
|
['amd64', 'x64'],
|
|
|
|
|
['arm64', 'aarch64']
|
|
|
|
|
])(
|
|
|
|
|
'defaults to os.arch(): %s mapped to distro arch: %s',
|
|
|
|
|
async (osArch: string, distroArch: string) => {
|
2025-08-20 20:07:47 +01:00
|
|
|
jest
|
|
|
|
|
.spyOn(os, 'arch')
|
|
|
|
|
.mockReturnValue(osArch as ReturnType<typeof os.arch>);
|
2024-02-28 10:41:33 +05:30
|
|
|
jest.spyOn(os, 'platform').mockReturnValue('darwin');
|
|
|
|
|
|
|
|
|
|
const version = '17';
|
|
|
|
|
const distro = new MicrosoftDistributions({
|
|
|
|
|
version,
|
|
|
|
|
architecture: '', // to get default value
|
|
|
|
|
packageType: 'jdk',
|
|
|
|
|
checkLatest: false
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const result = await distro['findPackageForDownload'](version);
|
2026-06-22 18:56:08 +03:00
|
|
|
const expectedUrl = `https://aka.ms/download-jdk/microsoft-jdk-17.0.18-macos-${distroArch}.tar.gz`;
|
2024-02-28 10:41:33 +05:30
|
|
|
|
|
|
|
|
expect(result.url).toBe(expectedUrl);
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2022-10-10 17:47:17 -06:00
|
|
|
it.each([
|
|
|
|
|
['amd64', 'x64'],
|
|
|
|
|
['arm64', 'aarch64']
|
|
|
|
|
])(
|
|
|
|
|
'defaults to os.arch(): %s mapped to distro arch: %s',
|
|
|
|
|
async (osArch: string, distroArch: string) => {
|
2025-08-20 20:07:47 +01:00
|
|
|
jest
|
|
|
|
|
.spyOn(os, 'arch')
|
|
|
|
|
.mockReturnValue(osArch as ReturnType<typeof os.arch>);
|
2022-10-10 17:47:17 -06:00
|
|
|
jest.spyOn(os, 'platform').mockReturnValue('linux');
|
|
|
|
|
|
|
|
|
|
const version = '17';
|
|
|
|
|
const distro = new MicrosoftDistributions({
|
|
|
|
|
version,
|
|
|
|
|
architecture: '', // to get default value
|
|
|
|
|
packageType: 'jdk',
|
|
|
|
|
checkLatest: false
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const result = await distro['findPackageForDownload'](version);
|
2026-06-22 18:56:08 +03:00
|
|
|
const expectedUrl = `https://aka.ms/download-jdk/microsoft-jdk-17.0.18-linux-${distroArch}.tar.gz`;
|
2022-10-10 17:47:17 -06:00
|
|
|
|
|
|
|
|
expect(result.url).toBe(expectedUrl);
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2024-02-28 10:41:33 +05:30
|
|
|
it.each([
|
|
|
|
|
['amd64', 'x64'],
|
|
|
|
|
['arm64', 'aarch64']
|
|
|
|
|
])(
|
|
|
|
|
'defaults to os.arch(): %s mapped to distro arch: %s',
|
|
|
|
|
async (osArch: string, distroArch: string) => {
|
2025-08-20 20:07:47 +01:00
|
|
|
jest
|
|
|
|
|
.spyOn(os, 'arch')
|
|
|
|
|
.mockReturnValue(osArch as ReturnType<typeof os.arch>);
|
2024-02-28 10:41:33 +05:30
|
|
|
jest.spyOn(os, 'platform').mockReturnValue('win32');
|
|
|
|
|
|
|
|
|
|
const version = '17';
|
|
|
|
|
const distro = new MicrosoftDistributions({
|
|
|
|
|
version,
|
|
|
|
|
architecture: '', // to get default value
|
|
|
|
|
packageType: 'jdk',
|
|
|
|
|
checkLatest: false
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const result = await distro['findPackageForDownload'](version);
|
2026-06-22 18:56:08 +03:00
|
|
|
const expectedUrl = `https://aka.ms/download-jdk/microsoft-jdk-17.0.18-windows-${distroArch}.zip`;
|
2024-02-28 10:41:33 +05:30
|
|
|
|
|
|
|
|
expect(result.url).toBe(expectedUrl);
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2021-12-08 10:50:14 -08:00
|
|
|
it('should throw an error', async () => {
|
|
|
|
|
await expect(distribution['findPackageForDownload']('8')).rejects.toThrow(
|
2026-04-13 23:14:45 +05:30
|
|
|
/No matching version found for SemVer */
|
2021-12-08 10:50:14 -08:00
|
|
|
);
|
|
|
|
|
});
|
2026-06-29 13:19:49 +01:00
|
|
|
|
|
|
|
|
it('uses manifest-provided signature URL when available', async () => {
|
|
|
|
|
spyGetManifestFromRepo.mockReturnValue({
|
|
|
|
|
result: [
|
|
|
|
|
{
|
|
|
|
|
version: '17.0.10',
|
|
|
|
|
stable: true,
|
|
|
|
|
release_url: 'https://example.test',
|
|
|
|
|
files: [
|
|
|
|
|
{
|
|
|
|
|
filename: 'microsoft-jdk-17.0.10-linux-x64.tar.gz',
|
|
|
|
|
arch: 'x64',
|
|
|
|
|
platform: 'linux',
|
|
|
|
|
download_url: 'https://example.test/jdk.tar.gz',
|
|
|
|
|
signature_url: 'https://example.test/jdk.tar.gz.custom.sig'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
statusCode: 200,
|
|
|
|
|
headers: {}
|
|
|
|
|
});
|
|
|
|
|
jest.spyOn(os, 'platform').mockReturnValue('linux');
|
|
|
|
|
|
|
|
|
|
const result = await distribution['findPackageForDownload']('17.0.10');
|
|
|
|
|
|
|
|
|
|
expect(result.signatureUrl).toBe(
|
|
|
|
|
'https://example.test/jdk.tar.gz.custom.sig'
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('downloadTool', () => {
|
|
|
|
|
let spyDownloadTool: jest.SpyInstance;
|
|
|
|
|
let spyExtractJdkFile: jest.SpyInstance;
|
|
|
|
|
let spyCacheDir: jest.SpyInstance;
|
|
|
|
|
let spyVerifySignature: jest.SpyInstance;
|
|
|
|
|
let distribution: MicrosoftDistributions;
|
|
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
jest
|
|
|
|
|
.spyOn(os, 'platform')
|
|
|
|
|
.mockReturnValue(process.platform as ReturnType<typeof os.platform>);
|
|
|
|
|
|
|
|
|
|
distribution = new MicrosoftDistributions({
|
|
|
|
|
version: '17',
|
|
|
|
|
architecture: 'x64',
|
|
|
|
|
packageType: 'jdk',
|
|
|
|
|
checkLatest: false
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
spyDownloadTool = jest.spyOn(tc, 'downloadTool');
|
|
|
|
|
spyDownloadTool.mockImplementation(async () => {
|
|
|
|
|
return '/tmp/jdk.tar.gz';
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
spyExtractJdkFile = jest.spyOn(util, 'extractJdkFile');
|
|
|
|
|
spyExtractJdkFile.mockImplementation(async () => {
|
|
|
|
|
return '/tmp/unpacked';
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
jest.spyOn(fs, 'readdirSync').mockReturnValue(['jdk'] as any);
|
|
|
|
|
spyCacheDir = jest.spyOn(tc, 'cacheDir');
|
|
|
|
|
spyCacheDir.mockImplementation(async () => {
|
|
|
|
|
return '/tmp/cached';
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
jest
|
|
|
|
|
.spyOn(util, 'renameWinArchive')
|
|
|
|
|
.mockImplementation((archivePath: string) => `${archivePath}.zip`);
|
|
|
|
|
|
|
|
|
|
spyVerifySignature = jest.spyOn(gpg, 'verifyPackageSignature');
|
|
|
|
|
spyVerifySignature.mockImplementation(async () => {});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
|
jest.restoreAllMocks();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('verifies signature when enabled', async () => {
|
|
|
|
|
const signedDistribution = new MicrosoftDistributions({
|
|
|
|
|
version: '17',
|
|
|
|
|
architecture: 'x64',
|
|
|
|
|
packageType: 'jdk',
|
|
|
|
|
checkLatest: false,
|
|
|
|
|
verifySignature: true
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
await signedDistribution['downloadTool']({
|
|
|
|
|
version: '17.0.14+7',
|
|
|
|
|
url: 'https://example.com/jdk.tar.gz',
|
|
|
|
|
signatureUrl: 'https://example.com/jdk.tar.gz.sig'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(spyVerifySignature).toHaveBeenCalledWith(
|
|
|
|
|
'/tmp/jdk.tar.gz',
|
|
|
|
|
'https://example.com/jdk.tar.gz.sig',
|
|
|
|
|
MICROSOFT_PUBLIC_KEY
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('uses custom public key when verifySignaturePublicKey is provided', async () => {
|
|
|
|
|
const customKey =
|
|
|
|
|
'-----BEGIN PGP PUBLIC KEY BLOCK-----\ncustom\n-----END PGP PUBLIC KEY BLOCK-----';
|
|
|
|
|
const signedDistribution = new MicrosoftDistributions({
|
|
|
|
|
version: '17',
|
|
|
|
|
architecture: 'x64',
|
|
|
|
|
packageType: 'jdk',
|
|
|
|
|
checkLatest: false,
|
|
|
|
|
verifySignature: true,
|
|
|
|
|
verifySignaturePublicKey: customKey
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
await signedDistribution['downloadTool']({
|
|
|
|
|
version: '17.0.14+7',
|
|
|
|
|
url: 'https://example.com/jdk.tar.gz',
|
|
|
|
|
signatureUrl: 'https://example.com/jdk.tar.gz.sig'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(spyVerifySignature).toHaveBeenCalledWith(
|
|
|
|
|
'/tmp/jdk.tar.gz',
|
|
|
|
|
'https://example.com/jdk.tar.gz.sig',
|
|
|
|
|
customKey
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('fails when signature is missing and verification is enabled', async () => {
|
|
|
|
|
const signedDistribution = new MicrosoftDistributions({
|
|
|
|
|
version: '17',
|
|
|
|
|
architecture: 'x64',
|
|
|
|
|
packageType: 'jdk',
|
|
|
|
|
checkLatest: false,
|
|
|
|
|
verifySignature: true
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
await expect(
|
|
|
|
|
signedDistribution['downloadTool']({
|
|
|
|
|
version: '17.0.14+7',
|
|
|
|
|
url: 'https://example.com/jdk.tar.gz'
|
|
|
|
|
})
|
|
|
|
|
).rejects.toThrow(
|
|
|
|
|
"Input 'verify-signature' is enabled, but no signature URL was found for Microsoft Build of OpenJDK version 17.0.14+7."
|
|
|
|
|
);
|
|
|
|
|
expect(spyVerifySignature).not.toHaveBeenCalled();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('supports signature verification', () => {
|
|
|
|
|
expect(distribution['supportsSignatureVerification']()).toBe(true);
|
|
|
|
|
});
|
2021-12-08 10:50:14 -08:00
|
|
|
});
|