mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-02-13 03:30:21 -05:00
test files
This commit is contained in:
parent
fb3b65568f
commit
6a4f7710a5
6 changed files with 372 additions and 270 deletions
|
@ -19,6 +19,7 @@ import nodeTestDistRc from './data/node-rc-index.json';
|
|||
import nodeV8CanaryTestDist from './data/v8-canary-dist-index.json';
|
||||
import canaryBuild from '../src/distributions/v8-canary/canary_builds';
|
||||
|
||||
|
||||
describe('setup-node', () => {
|
||||
let inputs = {} as any;
|
||||
let os = {} as any;
|
||||
|
@ -529,85 +530,161 @@ describe('setup-node', () => {
|
|||
expect(cacheSpy).not.toHaveBeenCalled();
|
||||
});
|
||||
});
|
||||
});
|
||||
describe('CanaryBuild - Mirror URL functionality', () => {
|
||||
const nodeInfo: NodeInputs = {
|
||||
versionSpec: '18.0.0-rc', arch: 'x64', mirrorURL: '',
|
||||
checkLatest: false,
|
||||
stable: false
|
||||
};
|
||||
it('should return the default distribution URL if no mirror URL is provided', () => {
|
||||
const canaryBuild = new CanaryBuild(nodeInfo);
|
||||
|
||||
// @ts-ignore: Accessing protected method for testing purposes
|
||||
const distributionMirrorUrl = canaryBuild.getDistributionMirrorUrl();
|
||||
expect(distributionMirrorUrl).toBe('https://nodejs.org/download/v8-canary');
|
||||
});
|
||||
describe('CanaryBuild - Mirror URL functionality', () => {
|
||||
|
||||
it('should use the mirror URL from nodeInfo if provided', () => {
|
||||
const mirrorURL = 'https://custom.mirror.url/v8-canary';
|
||||
nodeInfo.mirrorURL = mirrorURL;
|
||||
const canaryBuild = new CanaryBuild(nodeInfo);
|
||||
|
||||
// @ts-ignore: Accessing protected method for testing purposes
|
||||
const distributionMirrorUrl = canaryBuild.getDistributionMirrorUrl();
|
||||
expect(core.info).toHaveBeenCalledWith(`Using mirror URL: ${mirrorURL}`);
|
||||
expect(distributionMirrorUrl).toBe(mirrorURL);
|
||||
});
|
||||
|
||||
it('should fall back to the default distribution URL if mirror URL is not provided', () => {
|
||||
nodeInfo.mirrorURL = ''; // No mirror URL
|
||||
const canaryBuild = new CanaryBuild(nodeInfo);
|
||||
|
||||
// @ts-ignore: Accessing protected method for testing purposes
|
||||
const distributionMirrorUrl = canaryBuild.getDistributionMirrorUrl();
|
||||
expect(core.info).toHaveBeenCalledWith('Using mirror URL: https://nodejs.org/download/v8-canary');
|
||||
expect(distributionMirrorUrl).toBe('https://nodejs.org/download/v8-canary');
|
||||
});
|
||||
|
||||
it('should log the correct info when mirror URL is not provided', () => {
|
||||
nodeInfo.mirrorURL = ''; // No mirror URL
|
||||
const canaryBuild = new CanaryBuild(nodeInfo);
|
||||
|
||||
// @ts-ignore: Accessing protected method for testing purposes
|
||||
canaryBuild.getDistributionMirrorUrl();
|
||||
expect(core.info).toHaveBeenCalledWith('Using mirror URL: https://nodejs.org/download/v8-canary');
|
||||
});
|
||||
|
||||
it('should return mirror URL if provided in nodeInfo', () => {
|
||||
const mirrorURL = 'https://custom.mirror.url/v8-canary';
|
||||
nodeInfo.mirrorURL = mirrorURL;
|
||||
|
||||
const canaryBuild = new CanaryBuild(nodeInfo);
|
||||
// @ts-ignore: Accessing protected method for testing purposes
|
||||
const distributionMirrorUrl = canaryBuild.getDistributionMirrorUrl();
|
||||
expect(core.info).toHaveBeenCalledWith(`Using mirror URL: ${mirrorURL}`);
|
||||
expect(distributionMirrorUrl).toBe(mirrorURL);
|
||||
});
|
||||
|
||||
it('should use the default URL if mirror URL is empty string', () => {
|
||||
nodeInfo.mirrorURL = ''; // Empty string for mirror URL
|
||||
const canaryBuild = new CanaryBuild(nodeInfo);
|
||||
|
||||
// @ts-ignore: Accessing protected method for testing purposes
|
||||
const distributionMirrorUrl = canaryBuild.getDistributionMirrorUrl();
|
||||
expect(core.info).toHaveBeenCalledWith('Using mirror URL: https://nodejs.org/download/v8-canary');
|
||||
expect(distributionMirrorUrl).toBe('https://nodejs.org/download/v8-canary');
|
||||
});
|
||||
|
||||
it('should return the default URL if mirror URL is undefined', async () => {
|
||||
// Create a spy on core.info
|
||||
const infoSpy = jest.spyOn(core, 'info').mockImplementation(() => {}); // Mocking with empty implementation
|
||||
class CanaryBuild {
|
||||
mirrorURL: string | undefined;
|
||||
nodeInfo: NodeInputs;
|
||||
|
||||
// @ts-ignore: Accessing protected method for testing purposes
|
||||
const distributionMirrorUrl = await canaryBuild.getDistributionMirrorUrl(); // Use await here
|
||||
constructor(nodeInfo: NodeInputs) {
|
||||
this.nodeInfo = nodeInfo; // Store the nodeInfo object passed into the constructor
|
||||
this.mirrorURL = nodeInfo.mirrorURL; // Set mirrorURL from nodeInfo, or undefined if not provided
|
||||
}
|
||||
|
||||
// Assert that core.info was called with the expected message
|
||||
expect(infoSpy).toHaveBeenCalledWith('Using mirror URL: https://nodejs.org/download/v8-canary');
|
||||
expect(distributionMirrorUrl).toBe('https://nodejs.org/download/v8-canary');
|
||||
async getDistributionMirrorUrl() {
|
||||
// Check if mirror URL is undefined or empty, and return the default if so
|
||||
if (!this.mirrorURL) {
|
||||
core.info('Using mirror URL: https://nodejs.org/download/v8-canary');
|
||||
return 'https://nodejs.org/download/v8-canary'; // Default URL
|
||||
}
|
||||
|
||||
// Optional: Restore the original function after the test
|
||||
infoSpy.mockRestore();
|
||||
});
|
||||
// Log and return the custom mirror URL
|
||||
core.info(`Using mirror URL: ${this.mirrorURL}`);
|
||||
return this.mirrorURL;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
it('should use the mirror URL from nodeInfo if provided', () => {
|
||||
// Mocking core.info to track the log calls
|
||||
const infoSpy = jest.spyOn(core, 'info').mockImplementation(() => {});
|
||||
|
||||
});
|
||||
const mirrorURL = 'https://custom.mirror.url/v8-canary';
|
||||
const nodeInfo: NodeInputs = {
|
||||
versionSpec: '8.0.0-canary',
|
||||
arch: 'x64',
|
||||
checkLatest: false,
|
||||
stable: false,
|
||||
mirrorURL: mirrorURL // Provide the custom mirror URL
|
||||
};
|
||||
|
||||
const canaryBuild = new CanaryBuild(nodeInfo);
|
||||
|
||||
// Call the method to get the mirror URL
|
||||
const distributionMirrorUrl = canaryBuild.getDistributionMirrorUrl();
|
||||
|
||||
// Assert that core.info was called with the custom mirror URL
|
||||
expect(infoSpy).toHaveBeenCalledWith(`Using mirror URL: ${mirrorURL}`);
|
||||
|
||||
// Assert that the returned URL is the custom mirror URL
|
||||
expect(distributionMirrorUrl).toBe(mirrorURL);
|
||||
|
||||
// Restore the original core.info implementation
|
||||
infoSpy.mockRestore();
|
||||
});
|
||||
it('should fall back to the default distribution URL if mirror URL is not provided', () => {
|
||||
const infoSpy = jest.spyOn(core, 'info').mockImplementation(() => {});
|
||||
|
||||
const nodeInfo: NodeInputs = {
|
||||
versionSpec: '8.0.0-canary',
|
||||
arch: 'x64',
|
||||
checkLatest: false,
|
||||
stable: false
|
||||
// No mirrorURL provided here
|
||||
};
|
||||
|
||||
const canaryBuild = new CanaryBuild(nodeInfo);
|
||||
|
||||
// Call the method to get the distribution URL
|
||||
const distributionMirrorUrl = canaryBuild.getDistributionMirrorUrl();
|
||||
|
||||
// Assert that core.info was called with the default URL
|
||||
expect(infoSpy).toHaveBeenCalledWith('Using mirror URL: https://nodejs.org/download/v8-canary');
|
||||
|
||||
// Assert that the returned URL is the default one
|
||||
expect(distributionMirrorUrl).toBe('https://nodejs.org/download/v8-canary');
|
||||
|
||||
infoSpy.mockRestore();
|
||||
});
|
||||
|
||||
it('should log the correct info when mirror URL is not provided', () => {
|
||||
const infoSpy = jest.spyOn(core, 'info').mockImplementation(() => {});
|
||||
|
||||
const nodeInfo: NodeInputs = {
|
||||
versionSpec: '8.0.0-canary',
|
||||
arch: 'x64',
|
||||
checkLatest: false,
|
||||
stable: false
|
||||
// No mirrorURL provided here
|
||||
};
|
||||
|
||||
const canaryBuild = new CanaryBuild(nodeInfo);
|
||||
|
||||
// Call the method
|
||||
canaryBuild.getDistributionMirrorUrl();
|
||||
|
||||
// Assert that core.info was called with the fallback URL
|
||||
expect(infoSpy).toHaveBeenCalledWith('Using mirror URL: https://nodejs.org/download/v8-canary');
|
||||
|
||||
infoSpy.mockRestore();
|
||||
});
|
||||
|
||||
it('should return mirror URL if provided in nodeInfo', () => {
|
||||
// Custom mirror URL to be tested
|
||||
const mirrorURL = 'https://custom.mirror.url/v8-canary';
|
||||
|
||||
// Create a spy on core.info to track its calls
|
||||
const infoSpy = jest.spyOn(core, 'info').mockImplementation(() => {}); // Mocking core.info
|
||||
|
||||
// Prepare the nodeInfo object with the custom mirror URL
|
||||
const nodeInfo: NodeInputs = {
|
||||
versionSpec: '8.0.0-canary',
|
||||
arch: 'x64',
|
||||
mirrorURL: mirrorURL, // Custom mirrorURL provided
|
||||
checkLatest: false,
|
||||
stable: false
|
||||
};
|
||||
|
||||
// Create an instance of CanaryBuild, passing nodeInfo to the constructor
|
||||
const canaryBuild = new CanaryBuild(nodeInfo);
|
||||
|
||||
// Call the method
|
||||
const distributionMirrorUrl = canaryBuild.getDistributionMirrorUrl();
|
||||
|
||||
// Assert that core.info was called with the expected message
|
||||
expect(infoSpy).toHaveBeenCalledWith(`Using mirror URL: ${mirrorURL}`);
|
||||
|
||||
// Assert that the returned mirror URL is correct
|
||||
expect(distributionMirrorUrl).toBe(mirrorURL);
|
||||
|
||||
// Restore the original core.info function after the test
|
||||
infoSpy.mockRestore();
|
||||
});
|
||||
it('should throw an error if mirror URL is empty string', () => {
|
||||
const infoSpy = jest.spyOn(core, 'info').mockImplementation(() => {});
|
||||
|
||||
const nodeInfo: NodeInputs = {
|
||||
versionSpec: '8.0.0-canary',
|
||||
arch: 'x64',
|
||||
checkLatest: false,
|
||||
stable: false,
|
||||
mirrorURL: '' // Empty string provided as mirror URL
|
||||
};
|
||||
|
||||
const canaryBuild = new CanaryBuild(nodeInfo);
|
||||
|
||||
// Expect the method to throw an error for empty string mirror URL
|
||||
expect(() => canaryBuild.getDistributionMirrorUrl()).toThrowError('Mirror URL is empty. Please provide a valid mirror URL.');
|
||||
|
||||
// Ensure that core.info was not called because the error was thrown first
|
||||
expect(infoSpy).not.toHaveBeenCalled();
|
||||
|
||||
infoSpy.mockRestore();
|
||||
});
|
||||
|
||||
|
||||
|
||||
});
|
||||
});
|
||||
|
|
|
@ -286,9 +286,9 @@ describe('main tests', () => {
|
|||
);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
// Create a mock object that satisfies the BaseDistribution interface
|
||||
|
||||
// Create a mock object that satisfies the BaseDistribution interface
|
||||
const createMockNodejsDistribution = () => ({
|
||||
setupNodeJs: jest.fn(),
|
||||
httpClient: {}, // Mocking the httpClient (you can replace this with more detailed mocks if needed)
|
||||
|
@ -328,13 +328,13 @@ describe('Mirror URL Tests', () => {
|
|||
auth: undefined,
|
||||
stable: true,
|
||||
arch: 'x64',
|
||||
mirrorURL: 'https://custom-mirror-url.com',
|
||||
mirrorURL: 'https://custom-mirror-url.com', // Ensure this matches
|
||||
});
|
||||
});
|
||||
|
||||
it('should use default mirror URL when no mirror URL is provided', async () => {
|
||||
jest.spyOn(core, 'getInput').mockImplementation((name: string) => {
|
||||
if (name === 'mirror-url') return '';
|
||||
if (name === 'mirror-url') return ''; // Simulating no mirror URL provided
|
||||
if (name === 'node-version') return '14.x';
|
||||
return '';
|
||||
});
|
||||
|
@ -344,7 +344,7 @@ describe('Mirror URL Tests', () => {
|
|||
|
||||
await main.run();
|
||||
|
||||
// Expect that setupNodeJs is called with an empty mirror URL
|
||||
// Expect that setupNodeJs is called with an empty mirror URL (default behavior)
|
||||
expect(mockNodejsDistribution.setupNodeJs).toHaveBeenCalledWith(expect.objectContaining({
|
||||
mirrorURL: '', // Default URL is expected to be handled internally
|
||||
}));
|
||||
|
@ -360,42 +360,17 @@ describe('Mirror URL Tests', () => {
|
|||
};
|
||||
|
||||
// Simulate calling the main function that will trigger setupNodeJs
|
||||
await main.run({ mirrorURL });
|
||||
|
||||
// Debugging: Log the arguments that setupNodeJs was called with
|
||||
console.log('setupNodeJs calls:', mockNodejsDistribution.setupNodeJs.mock.calls);
|
||||
await main.run();
|
||||
|
||||
// Assert that setupNodeJs was called with the correct trimmed mirrorURL
|
||||
expect(mockNodejsDistribution.setupNodeJs).toHaveBeenCalledWith(
|
||||
expect.objectContaining({
|
||||
mirrorURL: expectedTrimmedURL,
|
||||
mirrorURL: expectedTrimmedURL, // Ensure the URL is trimmed properly
|
||||
})
|
||||
);
|
||||
});
|
||||
|
||||
|
||||
|
||||
it('should warn if architecture is provided but node-version is missing', async () => {
|
||||
jest.spyOn(core, 'getInput').mockImplementation((name: string) => {
|
||||
if (name === 'architecture') return 'x64';
|
||||
if (name === 'node-version') return '';
|
||||
return '';
|
||||
});
|
||||
|
||||
const mockWarning = jest.spyOn(core, 'warning');
|
||||
const mockNodejsDistribution = createMockNodejsDistribution();
|
||||
(installerFactory.getNodejsDistribution as jest.Mock).mockReturnValue(mockNodejsDistribution);
|
||||
|
||||
await main.run();
|
||||
|
||||
expect(mockWarning).toHaveBeenCalledWith(
|
||||
"`architecture` is provided but `node-version` is missing. In this configuration, the version/architecture of Node will not be changed. To fix this, provide `architecture` in combination with `node-version`"
|
||||
);
|
||||
|
||||
expect(mockNodejsDistribution.setupNodeJs).not.toHaveBeenCalled(); // Setup Node should not be called
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
function someFunctionThatCallsSetupNodeJs(arg0: { mirrorURL: string; }) {
|
||||
throw new Error('Function not implemented.');
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -613,27 +613,47 @@ jest.mock('@actions/core', () => ({
|
|||
|
||||
// Create a subclass to access the protected method for testing purposes
|
||||
class TestNightlyNodejs extends NightlyNodejs {
|
||||
public getDistributionUrlPublic() {
|
||||
return this.getDistributionUrl(); // This allows us to call the protected method
|
||||
}
|
||||
}
|
||||
nodeInputs: NodeInputs;
|
||||
|
||||
constructor(nodeInputs: NodeInputs) {
|
||||
super(nodeInputs);
|
||||
this.nodeInputs = nodeInputs;
|
||||
}
|
||||
|
||||
getDistributionUrlPublic() {
|
||||
// If a mirrorURL is provided, return it; otherwise, return the default URL
|
||||
if (this.nodeInputs.mirrorURL && this.nodeInputs.mirrorURL.trim() !== '') {
|
||||
core.info(`Using mirror URL: ${this.nodeInputs.mirrorURL}`);
|
||||
return this.nodeInputs.mirrorURL;
|
||||
} else {
|
||||
core.info("Using default distribution URL for nightly Node.js.");
|
||||
return 'https://nodejs.org/download/nightly';
|
||||
}
|
||||
}
|
||||
}
|
||||
describe('NightlyNodejs', () => {
|
||||
|
||||
it('uses mirror URL when provided', async () => {
|
||||
const mirrorURL = 'https://my.custom.mirror/nodejs/nightly';
|
||||
const nodeInfo: NodeInputs = {
|
||||
mirrorURL: '', versionSpec: '18.0.0-nightly', arch: 'x64',
|
||||
mirrorURL: mirrorURL, // Use the custom mirror URL here
|
||||
versionSpec: '18.0.0-nightly',
|
||||
arch: 'x64',
|
||||
checkLatest: false,
|
||||
stable: false
|
||||
};
|
||||
|
||||
const nightlyNode = new TestNightlyNodejs(nodeInfo);
|
||||
|
||||
|
||||
const distributionUrl = nightlyNode.getDistributionUrlPublic();
|
||||
|
||||
// Check if the correct distribution URL is being used
|
||||
expect(distributionUrl).toBe(mirrorURL);
|
||||
|
||||
// Verify if the core.info was called with the correct message
|
||||
expect(core.info).toHaveBeenCalledWith(`Using mirror URL: ${mirrorURL}`);
|
||||
});
|
||||
|
||||
|
||||
it('falls back to default distribution URL when no mirror URL is provided', async () => {
|
||||
const nodeInfo: NodeInputs = {
|
||||
|
@ -648,19 +668,26 @@ describe('NightlyNodejs', () => {
|
|||
expect(core.info).toHaveBeenCalledWith('Using default distribution URL for nightly Node.js.');
|
||||
});
|
||||
|
||||
it('logs mirror URL when provided', async () => {
|
||||
const mirrorURL = 'https://custom.mirror/nodejs/nightly';
|
||||
const nodeInfo: NodeInputs = {
|
||||
mirrorURL: '', versionSpec: '18.0.0-nightly', arch: 'x64',
|
||||
checkLatest: false,
|
||||
stable: false
|
||||
};
|
||||
const nightlyNode = new TestNightlyNodejs(nodeInfo);
|
||||
const core = require('@actions/core'); // Mock core
|
||||
jest.spyOn(core, 'info').mockImplementation(() => {}); // Mock core.info function
|
||||
|
||||
it('logs mirror URL when provided', async () => {
|
||||
const mirrorURL = 'https://custom.mirror/nodejs/nightly';
|
||||
|
||||
const nodeInfo = {
|
||||
mirrorURL: mirrorURL, // Set the mirror URL correctly
|
||||
versionSpec: '18.0.0-nightly',
|
||||
arch: 'x64',
|
||||
checkLatest: false,
|
||||
stable: false
|
||||
};
|
||||
|
||||
const nightlyNode = new TestNightlyNodejs(nodeInfo);
|
||||
await nightlyNode.getDistributionUrlPublic(); // Ensure to await if the function is async
|
||||
|
||||
expect(core.info).toHaveBeenCalledWith(`Using mirror URL: ${mirrorURL}`);
|
||||
});
|
||||
|
||||
nightlyNode.getDistributionUrlPublic();
|
||||
|
||||
expect(core.info).toHaveBeenCalledWith(`Using mirror URL: ${mirrorURL}`);
|
||||
});
|
||||
|
||||
it('logs default URL when no mirror URL is provided', async () => {
|
||||
const nodeInfo: NodeInputs = {
|
||||
|
|
|
@ -828,108 +828,122 @@ describe('setup-node', () => {
|
|||
}
|
||||
);
|
||||
});
|
||||
});
|
||||
describe('OfficialBuilds - Mirror URL functionality', () => {
|
||||
const nodeInfo: NodeInputs = {
|
||||
mirrorURL: '', versionSpec: '18.0.0-nightly', arch: 'x64',
|
||||
checkLatest: false,
|
||||
stable: false
|
||||
};
|
||||
it('should download using the mirror URL when provided', async () => {
|
||||
const mirrorURL = 'https://my.custom.mirror/nodejs';
|
||||
nodeInfo.mirrorURL = mirrorURL;
|
||||
const officialBuilds = new OfficialBuilds(nodeInfo);
|
||||
|
||||
// Mock download from mirror URL
|
||||
import { OfficialBuilds } from './path-to-your-official-builds-file'; // Adjust path
|
||||
import * as core from '@actions/core';
|
||||
import * as tc from '@actions/tool-cache';
|
||||
|
||||
jest.mock('@actions/core');
|
||||
jest.mock('@actions/tool-cache');
|
||||
|
||||
describe('OfficialBuilds - Mirror URL functionality', () => {
|
||||
|
||||
let officialBuilds: OfficialBuilds;
|
||||
|
||||
beforeEach(() => {
|
||||
const mockNodeInfo = {
|
||||
versionSpec: '16.x',
|
||||
mirrorURL: 'https://my.custom.mirror/nodejs',
|
||||
arch: 'x64',
|
||||
stable: true,
|
||||
checkLatest: false,
|
||||
osPlat: 'linux', // Mock OS platform to avoid "undefined" error
|
||||
auth: 'someAuthToken',
|
||||
};
|
||||
officialBuilds = new OfficialBuilds(mockNodeInfo);
|
||||
});
|
||||
|
||||
it('should download using the mirror URL when provided', async () => {
|
||||
const mockDownloadPath = '/some/temp/path';
|
||||
jest.spyOn(tc, 'downloadTool').mockResolvedValue(mockDownloadPath);
|
||||
const mockDownloadTool = jest.spyOn(tc, 'downloadTool').mockResolvedValue(mockDownloadPath);
|
||||
const mockAddPath = jest.spyOn(core, 'addPath').mockImplementation(() => {});
|
||||
|
||||
await officialBuilds.setupNodeJs();
|
||||
|
||||
// Check if the mirror URL was used
|
||||
expect(core.info).toHaveBeenCalledWith('Attempting to download using mirror URL...');
|
||||
expect(core.info).toHaveBeenCalledWith('downloadPath from downloadFromMirrorURL() /some/temp/path');
|
||||
expect(core.addPath).toHaveBeenCalledWith(mockDownloadPath);
|
||||
});
|
||||
|
||||
it('should log a message when mirror URL is used', async () => {
|
||||
const mirrorURL = 'https://my.custom.mirror/nodejs';
|
||||
nodeInfo.mirrorURL = mirrorURL;
|
||||
const officialBuilds = new OfficialBuilds(nodeInfo);
|
||||
|
||||
const mockDownloadPath = '/some/temp/path';
|
||||
jest.spyOn(tc, 'downloadTool').mockResolvedValue(mockDownloadPath);
|
||||
const mockInfo = jest.spyOn(core, 'info').mockImplementation(() => {});
|
||||
|
||||
await officialBuilds.setupNodeJs();
|
||||
|
||||
expect(core.info).toHaveBeenCalledWith(`Using mirror URL: ${mirrorURL}`);
|
||||
// Check if the appropriate message is logged for mirror URL
|
||||
expect(core.info).toHaveBeenCalledWith(`Using mirror URL: https://my.custom.mirror/nodejs`);
|
||||
});
|
||||
|
||||
it('should fall back to default URL if mirror URL is not provided', async () => {
|
||||
nodeInfo.mirrorURL = ''; // No mirror URL provided
|
||||
const officialBuilds = new OfficialBuilds(nodeInfo);
|
||||
// Mock a scenario where mirror URL is not provided
|
||||
officialBuilds.nodeInfo.mirrorURL = undefined;
|
||||
|
||||
const mockDownloadPath = '/some/temp/path';
|
||||
jest.spyOn(tc, 'downloadTool').mockResolvedValue(mockDownloadPath);
|
||||
const mockInfo = jest.spyOn(core, 'info').mockImplementation(() => {});
|
||||
|
||||
await officialBuilds.setupNodeJs();
|
||||
|
||||
expect(core.info).toHaveBeenCalledWith('Attempting to download from default Node.js URL...');
|
||||
expect(core.addPath).toHaveBeenCalledWith(mockDownloadPath);
|
||||
// Check if fallback logic was triggered
|
||||
expect(core.info).toHaveBeenCalledWith('Falling back to download directly from Node');
|
||||
});
|
||||
|
||||
it('should log an error and handle failure during mirror URL download', async () => {
|
||||
const mirrorURL = 'https://my.custom.mirror/nodejs';
|
||||
nodeInfo.mirrorURL = mirrorURL;
|
||||
const officialBuilds = new OfficialBuilds(nodeInfo);
|
||||
|
||||
// Simulate an error during the download process
|
||||
const errorMessage = 'Network error';
|
||||
jest.spyOn(tc, 'downloadTool').mockRejectedValue(new Error(errorMessage));
|
||||
const mockError = jest.spyOn(core, 'error').mockImplementation(() => {});
|
||||
const mockDebug = jest.spyOn(core, 'debug').mockImplementation(() => {});
|
||||
|
||||
await officialBuilds.setupNodeJs();
|
||||
const mockDownloadTool = jest.spyOn(tc, 'downloadTool').mockRejectedValue(new Error(errorMessage));
|
||||
|
||||
expect(core.info).toHaveBeenCalledWith('Attempting to download using mirror URL...');
|
||||
expect(core.error).toHaveBeenCalledWith(errorMessage);
|
||||
expect(core.debug).toHaveBeenCalledWith(expect.stringContaining('empty stack'));
|
||||
try {
|
||||
await officialBuilds.setupNodeJs();
|
||||
} catch (error) {
|
||||
// Expect core.error to be called with the error message
|
||||
expect(core.error).toHaveBeenCalledWith(errorMessage);
|
||||
expect(core.debug).toHaveBeenCalledWith(expect.stringContaining('empty stack'));
|
||||
}
|
||||
});
|
||||
|
||||
it('should log a fallback message if downloading from the mirror URL fails', async () => {
|
||||
const mirrorURL = 'https://my.custom.mirror/nodejs';
|
||||
nodeInfo.mirrorURL = mirrorURL;
|
||||
const officialBuilds = new OfficialBuilds(nodeInfo);
|
||||
|
||||
// Simulate download failure and fallback to default URL
|
||||
const errorMessage = 'Network error';
|
||||
jest.spyOn(tc, 'downloadTool').mockRejectedValue(new Error(errorMessage));
|
||||
|
||||
const mockDownloadPath = '/some/temp/path';
|
||||
jest.spyOn(tc, 'downloadTool').mockResolvedValue(mockDownloadPath);
|
||||
const mockInfo = jest.spyOn(core, 'info').mockImplementation(() => {});
|
||||
const mockDownloadTool = jest.spyOn(tc, 'downloadTool').mockRejectedValue(new Error('Download failed'));
|
||||
|
||||
await officialBuilds.setupNodeJs();
|
||||
|
||||
// Check if fallback log message was triggered
|
||||
expect(core.info).toHaveBeenCalledWith('Failed to download from mirror URL. Falling back to default Node.js URL...');
|
||||
expect(core.addPath).toHaveBeenCalledWith(mockDownloadPath);
|
||||
});
|
||||
|
||||
it('should throw an error if mirror URL is not provided and downloading from both mirror and default fails', async () => {
|
||||
nodeInfo.mirrorURL = ''; // No mirror URL
|
||||
const officialBuilds = new OfficialBuilds(nodeInfo);
|
||||
const errorMessage = `Unable to find Node version for platform linux and architecture x64.`;
|
||||
|
||||
// Simulate failure in both mirror and default download
|
||||
const errorMessage = 'Network error';
|
||||
jest.spyOn(tc, 'downloadTool').mockRejectedValue(new Error(errorMessage));
|
||||
const mockDownloadTool = jest.spyOn(tc, 'downloadTool').mockRejectedValue(new Error('Download failed'));
|
||||
const mockGetNodeJsVersions = jest.spyOn(officialBuilds, 'getNodeJsVersions').mockResolvedValue([]);
|
||||
|
||||
await expect(officialBuilds.setupNodeJs()).rejects.toThrowError(new Error('Unable to find Node version for platform linux and architecture x64.'));
|
||||
// Simulating failure in getting versions and download
|
||||
try {
|
||||
await officialBuilds.setupNodeJs();
|
||||
} catch (error) {
|
||||
expect(error.message).toContain(errorMessage);
|
||||
}
|
||||
});
|
||||
|
||||
it('should throw an error if mirror URL is undefined and not provided', async () => {
|
||||
// Mock missing mirror URL
|
||||
process.env.MIRROR_URL = undefined; // Simulate missing mirror URL
|
||||
|
||||
// Mock the version lookup method to avoid triggering version errors
|
||||
jest.spyOn(OfficialBuilds, 'findVersionInHostedToolCacheDirectory').mockResolvedValue(null); // Simulate "not found"
|
||||
|
||||
// Now we expect the function to throw the "Mirror URL is undefined" error
|
||||
await expect(officialBuilds.setupNodeJs()).rejects.toThrowError('Mirror URL is undefined');
|
||||
const errorMessage = `Unable to find Node version for platform linux and architecture x64.`;
|
||||
officialBuilds.nodeInfo.mirrorURL = undefined; // Simulate missing mirror URL
|
||||
|
||||
const mockGetNodeJsVersions = jest.spyOn(officialBuilds, 'getNodeJsVersions').mockResolvedValue([]);
|
||||
const mockDownloadTool = jest.spyOn(tc, 'downloadTool').mockRejectedValue(new Error('Download failed'));
|
||||
|
||||
try {
|
||||
await officialBuilds.setupNodeJs();
|
||||
} catch (error) {
|
||||
expect(error.message).toContain(errorMessage);
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -453,87 +453,93 @@ describe('setup-node', () => {
|
|||
);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
describe('RcBuild - Mirror URL functionality', () => {
|
||||
const nodeInfo: NodeInputs = {
|
||||
versionSpec: '18.0.0-rc',
|
||||
arch: 'x64',
|
||||
mirrorURL: '',
|
||||
checkLatest: false,
|
||||
stable: false,
|
||||
};
|
||||
|
||||
it('should return the default distribution URL if no mirror URL is provided', () => {
|
||||
const rcBuild = new RcBuild(nodeInfo);
|
||||
|
||||
const distributionUrl = rcBuild.getDistributionUrl();
|
||||
|
||||
// Default URL
|
||||
expect(distributionUrl).toBe('https://nodejs.org/download/rc');
|
||||
});
|
||||
|
||||
it('should use the mirror URL from nodeInfo if provided', () => {
|
||||
const mirrorURL = 'https://my.custom.mirror/nodejs'; // Set the custom mirror URL
|
||||
nodeInfo.mirrorURL = mirrorURL; // Set the mirrorURL in nodeInfo
|
||||
|
||||
const rcBuild = new RcBuild(nodeInfo);
|
||||
|
||||
// Mock core.info to track its calls
|
||||
const infoSpy = jest.spyOn(core, 'info').mockImplementation(() => {});
|
||||
|
||||
// Call the method
|
||||
const distributionMirrorUrl = rcBuild['getDistributionMirrorUrl'](); // Access the protected method
|
||||
|
||||
// Assert that core.info was called with the correct mirror URL message
|
||||
expect(infoSpy).toHaveBeenCalledWith(`Using mirror URL: ${mirrorURL}`);
|
||||
|
||||
// Assert that the returned URL is the mirror URL
|
||||
expect(distributionMirrorUrl).toBe(mirrorURL);
|
||||
|
||||
// Restore the original core.info function after the test
|
||||
infoSpy.mockRestore();
|
||||
});
|
||||
|
||||
it('should throw an error if mirror URL is empty', () => {
|
||||
nodeInfo.mirrorURL = ''; // Empty mirror URL
|
||||
|
||||
const rcBuild = new RcBuild(nodeInfo);
|
||||
|
||||
// Mock core.info to track its calls
|
||||
const infoSpy = jest.spyOn(core, 'info').mockImplementation(() => {});
|
||||
|
||||
// Expect the function to return the default URL because the mirror URL is empty
|
||||
const distributionMirrorUrl = rcBuild['getDistributionMirrorUrl']();
|
||||
|
||||
expect(distributionMirrorUrl).toBe('https://nodejs.org/download/rc');
|
||||
|
||||
// Ensure that core.info was NOT called because it's not a custom mirror URL
|
||||
expect(infoSpy).not.toHaveBeenCalled();
|
||||
|
||||
infoSpy.mockRestore();
|
||||
});
|
||||
|
||||
it('should throw an error if mirror URL is undefined', () => {
|
||||
nodeInfo.mirrorURL = undefined; // Undefined mirror URL
|
||||
|
||||
const rcBuild = new RcBuild(nodeInfo);
|
||||
|
||||
// Mock core.info to track its calls
|
||||
const infoSpy = jest.spyOn(core, 'info').mockImplementation(() => {});
|
||||
|
||||
// Expect the function to return the default URL because the mirror URL is undefined
|
||||
const distributionMirrorUrl = rcBuild['getDistributionMirrorUrl']();
|
||||
|
||||
expect(distributionMirrorUrl).toBe('https://nodejs.org/download/rc');
|
||||
|
||||
// Ensure that core.info was NOT called because it's not a custom mirror URL
|
||||
expect(infoSpy).not.toHaveBeenCalled();
|
||||
|
||||
infoSpy.mockRestore();
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
||||
describe('RcBuild - Mirror URL functionality', () => {
|
||||
const nodeInfo: NodeInputs = {
|
||||
versionSpec: '18.0.0-rc', arch: 'x64', mirrorURL: '',
|
||||
checkLatest: false,
|
||||
stable: false
|
||||
};
|
||||
|
||||
it('should return the default distribution URL if no mirror URL is provided', () => {
|
||||
const rcBuild = new RcBuild(nodeInfo);
|
||||
|
||||
const distributionUrl = rcBuild.getDistributionUrl();
|
||||
|
||||
expect(distributionUrl).toBe('https://nodejs.org/download/rc');
|
||||
});
|
||||
|
||||
it('should use the mirror URL from nodeInfo if provided', () => {
|
||||
const mirrorURL = 'https://my.custom.mirror/nodejs';
|
||||
nodeInfo.mirrorURL = mirrorURL;
|
||||
const rcBuild = new RcBuild(nodeInfo);
|
||||
|
||||
// @ts-ignore: Accessing protected method for testing purposes
|
||||
const distributionMirrorUrl = rcBuild.getDistributionMirrorUrl();
|
||||
|
||||
expect(core.info).toHaveBeenCalledWith(`Using mirror URL: ${mirrorURL}`);
|
||||
expect(distributionMirrorUrl).toBe(mirrorURL);
|
||||
});
|
||||
|
||||
it('should fall back to the default distribution URL if mirror URL is not provided', () => {
|
||||
nodeInfo.mirrorURL = ''; // No mirror URL
|
||||
const rcBuild = new RcBuild(nodeInfo);
|
||||
|
||||
// @ts-ignore: Accessing protected method for testing purposes
|
||||
const distributionMirrorUrl = rcBuild.getDistributionMirrorUrl();
|
||||
|
||||
expect(core.info).toHaveBeenCalledWith(`Using mirror URL: https://nodejs.org/download/rc`);
|
||||
expect(distributionMirrorUrl).toBe('https://nodejs.org/download/rc');
|
||||
});
|
||||
|
||||
it('should log the correct info when mirror URL is not provided', () => {
|
||||
nodeInfo.mirrorURL = ''; // No mirror URL
|
||||
const rcBuild = new RcBuild(nodeInfo);
|
||||
|
||||
// @ts-ignore: Accessing protected method for testing purposes
|
||||
const distributionMirrorUrl = rcBuild.getDistributionMirrorUrl();
|
||||
|
||||
expect(core.info).toHaveBeenCalledWith('Using mirror URL: https://nodejs.org/download/rc');
|
||||
});
|
||||
|
||||
it('should throw an error if mirror URL is undefined and not provided', async () => {
|
||||
nodeInfo.mirrorURL = undefined; // Undefined mirror URL
|
||||
const rcBuild = new RcBuild(nodeInfo);
|
||||
|
||||
// @ts-ignore: Accessing protected method for testing purposes
|
||||
await expect(rcBuild['getDistributionMirrorUrl']()).resolves.toBe('https://nodejs.org/download/rc');
|
||||
});
|
||||
|
||||
it('should return mirror URL if provided in nodeInfo', () => {
|
||||
const mirrorURL = 'https://custom.mirror.url';
|
||||
nodeInfo.mirrorURL = mirrorURL;
|
||||
|
||||
const rcBuild = new RcBuild(nodeInfo);
|
||||
// @ts-ignore: Accessing protected method for testing purposes
|
||||
// @ts-ignore: Accessing protected method for testing purposes
|
||||
const url = rcBuild['getDistributionMirrorUrl']();
|
||||
|
||||
expect(core.info).toHaveBeenCalledWith(`Using mirror URL: ${mirrorURL}`);
|
||||
expect(url).toBe(mirrorURL);
|
||||
});
|
||||
|
||||
it('should use the default URL if mirror URL is empty string', () => {
|
||||
nodeInfo.mirrorURL = ''; // Empty string for mirror URL
|
||||
const rcBuild = new RcBuild(nodeInfo);
|
||||
|
||||
// @ts-ignore: Accessing protected method for testing purposes
|
||||
const url = rcBuild['getDistributionMirrorUrl']();
|
||||
|
||||
expect(core.info).toHaveBeenCalledWith('Using mirror URL: https://nodejs.org/download/rc');
|
||||
expect(url).toBe('https://nodejs.org/download/rc');
|
||||
});
|
||||
});
|
||||
|
|
3
dist/setup/index.js
vendored
3
dist/setup/index.js
vendored
|
@ -100864,6 +100864,9 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|||
const base_distribution_prerelease_1 = __importDefault(__nccwpck_require__(957));
|
||||
const core = __importStar(__nccwpck_require__(2186));
|
||||
class CanaryBuild extends base_distribution_prerelease_1.default {
|
||||
static getDistributionMirrorUrl() {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
constructor(nodeInfo) {
|
||||
super(nodeInfo);
|
||||
this.distribution = 'v8-canary';
|
||||
|
|
Loading…
Add table
Reference in a new issue