2021-06-16 07:52:44 +01:00
|
|
|
import * as core from '@actions/core';
|
|
|
|
import path from 'path';
|
|
|
|
import * as utils from '../src/cache-utils';
|
2021-06-29 11:34:35 +01:00
|
|
|
import {PackageManagerInfo} from '../src/cache-utils';
|
2021-06-16 07:52:44 +01:00
|
|
|
|
|
|
|
describe('cache-utils', () => {
|
|
|
|
const commonPath = '/some/random/path';
|
|
|
|
const versionYarn1 = '1.2.3';
|
|
|
|
const versionYarn2 = '2.3.4';
|
|
|
|
|
|
|
|
let debugSpy: jest.SpyInstance;
|
|
|
|
let getCommandOutputSpy: jest.SpyInstance;
|
|
|
|
|
|
|
|
function getPackagePath(name: string) {
|
|
|
|
if (name === utils.supportedPackageManagers.npm.getCacheFolderCommand) {
|
|
|
|
return `${commonPath}/npm`;
|
2021-06-30 16:44:51 +01:00
|
|
|
} else if (
|
|
|
|
name === utils.supportedPackageManagers.pnpm.getCacheFolderCommand
|
|
|
|
) {
|
|
|
|
return `${commonPath}/pnpm`;
|
2021-06-16 07:52:44 +01:00
|
|
|
} else {
|
|
|
|
if (name === utils.supportedPackageManagers.yarn1.getCacheFolderCommand) {
|
|
|
|
return `${commonPath}/yarn1`;
|
|
|
|
} else {
|
|
|
|
return `${commonPath}/yarn2`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
process.env['GITHUB_WORKSPACE'] = path.join(__dirname, 'data');
|
|
|
|
debugSpy = jest.spyOn(core, 'debug');
|
|
|
|
debugSpy.mockImplementation(msg => {});
|
|
|
|
|
|
|
|
getCommandOutputSpy = jest.spyOn(utils, 'getCommandOutput');
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('getPackageManagerInfo', () => {
|
2021-06-29 11:34:35 +01:00
|
|
|
it.each<[string, PackageManagerInfo | null]>([
|
2021-06-16 07:52:44 +01:00
|
|
|
['npm', utils.supportedPackageManagers.npm],
|
2021-06-30 16:44:51 +01:00
|
|
|
['pnpm', utils.supportedPackageManagers.pnpm],
|
2021-06-16 07:52:44 +01:00
|
|
|
['yarn', utils.supportedPackageManagers.yarn1],
|
|
|
|
['yarn1', null],
|
|
|
|
['yarn2', null],
|
|
|
|
['npm7', null]
|
|
|
|
])('getPackageManagerInfo for %s is %o', async (packageManager, result) => {
|
|
|
|
getCommandOutputSpy.mockImplementationOnce(() => versionYarn1);
|
|
|
|
await expect(utils.getPackageManagerInfo(packageManager)).resolves.toBe(
|
|
|
|
result
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
jest.resetAllMocks();
|
|
|
|
jest.clearAllMocks();
|
|
|
|
});
|
|
|
|
});
|