setup-java/__tests__/distributors/jetbrains-installer.test.ts
copilot-swe-agent[bot] 3ffaf5bec1
Add JetBrains fallback tests and tighten URL assertions
Agent-Logs-Url: https://github.com/AKB0700/setup-java/sessions/b5ff7a8f-7d53-4825-9148-a3d7b9163aac

Co-authored-by: AKB0700 <157992575+AKB0700@users.noreply.github.com>
2026-04-20 14:59:12 +00:00

178 lines
5.4 KiB
TypeScript

import {HttpClient} from '@actions/http-client';
import {JetBrainsDistribution} from '../../src/distributions/jetbrains/installer';
import manifestData from '../data/jetbrains.json';
import os from 'os';
import * as core from '@actions/core';
describe('getAvailableVersions', () => {
let spyHttpClient: jest.SpyInstance;
let spyCoreError: jest.SpyInstance;
beforeEach(() => {
spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson');
spyHttpClient.mockReturnValue({
statusCode: 200,
headers: {},
result: []
});
jest.spyOn(HttpClient.prototype, 'head').mockResolvedValue({
message: {
statusCode: 200
}
} as any);
// Mock core.error to suppress error logs
spyCoreError = jest.spyOn(core, 'error');
spyCoreError.mockImplementation(() => {});
});
afterEach(() => {
jest.resetAllMocks();
jest.clearAllMocks();
jest.restoreAllMocks();
});
it('load available versions', async () => {
spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson');
spyHttpClient.mockReturnValueOnce({
statusCode: 200,
headers: {},
result: manifestData as any
});
const distribution = new JetBrainsDistribution({
version: '17',
architecture: 'x64',
packageType: 'jdk',
checkLatest: false
});
const availableVersions = await distribution['getAvailableVersions']();
expect(availableVersions).not.toBeNull();
const length =
os.platform() === 'win32' ? manifestData.length : manifestData.length + 2;
expect(availableVersions.length).toBe(length);
}, 10_000);
it('uses _nomod package URL when base package is unavailable', async () => {
spyHttpClient.mockReturnValueOnce({
statusCode: 200,
headers: {},
result: [{tag_name: 'jbr-release-21.0.3b465.3', prerelease: true}] as any
});
spyHttpClient.mockReturnValueOnce({
statusCode: 200,
headers: {},
result: []
});
jest
.spyOn(HttpClient.prototype, 'head')
.mockResolvedValueOnce({message: {statusCode: 404}} as any)
.mockResolvedValueOnce({message: {statusCode: 200}} as any);
const distribution = new JetBrainsDistribution({
version: '21-ea',
architecture: 'x64',
packageType: 'jdk',
checkLatest: false
});
const availableVersions = await distribution['getAvailableVersions']();
expect(availableVersions).toHaveLength(1);
expect(availableVersions[0].url).toContain('_nomod-21.0.3-linux-x64-b465.3');
});
it('filters out versions when both package URLs are unavailable', async () => {
spyHttpClient.mockReturnValueOnce({
statusCode: 200,
headers: {},
result: [{tag_name: 'jbr-release-21.0.3b465.3', prerelease: true}] as any
});
spyHttpClient.mockReturnValueOnce({
statusCode: 200,
headers: {},
result: []
});
jest
.spyOn(HttpClient.prototype, 'head')
.mockResolvedValueOnce({message: {statusCode: 404}} as any)
.mockResolvedValueOnce({message: {statusCode: 404}} as any);
const distribution = new JetBrainsDistribution({
version: '21-ea',
architecture: 'x64',
packageType: 'jdk',
checkLatest: false
});
const availableVersions = await distribution['getAvailableVersions']();
expect(availableVersions).toHaveLength(0);
});
});
describe('findPackageForDownload', () => {
it.each([
['17', '17.0.11+1207.24'],
['11.0', '11.0.16+2043.64'],
['11.0.11', '11.0.11+1542.1'],
['21.0.2', '21.0.2+375.1'],
['21', '21.0.3+465.3'],
['x', '21.0.3+465.3']
])('version is resolved correctly %s -> %s', async (input, expected) => {
const distribution = new JetBrainsDistribution({
version: input,
architecture: 'x64',
packageType: 'jdk',
checkLatest: false
});
distribution['getAvailableVersions'] = async () => manifestData as any;
const resolvedVersion = await distribution['findPackageForDownload'](input);
expect(resolvedVersion.version).toBe(expected);
});
it.each(['17', '11.0', '11.0.11', '21.0.2', '21'])(
'version %s can be downloaded',
async input => {
const distribution = new JetBrainsDistribution({
version: input,
architecture: 'x64',
packageType: 'jdk',
checkLatest: false
});
distribution['getAvailableVersions'] = async () => manifestData as any;
const resolvedVersion =
await distribution['findPackageForDownload'](input);
expect(resolvedVersion.url).toMatch(
/^https:\/\/cache-redirector\.jetbrains\.com\/intellij-jbr\/.+-b\d+(\.\d+)?\.tar\.gz$/
);
}
);
it('version is not found', async () => {
const distribution = new JetBrainsDistribution({
version: '8.0.452',
architecture: 'x64',
packageType: 'jdk',
checkLatest: false
});
distribution['getAvailableVersions'] = async () => manifestData as any;
await expect(distribution['findPackageForDownload']('8.x')).rejects.toThrow(
/No matching version found for SemVer */
);
});
it('version list is empty', async () => {
const distribution = new JetBrainsDistribution({
version: '8',
architecture: 'x64',
packageType: 'jdk',
checkLatest: false
});
distribution['getAvailableVersions'] = async () => [];
await expect(distribution['findPackageForDownload']('8')).rejects.toThrow(
/No matching version found for SemVer */
);
});
});