mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-16 16:01:44 +00:00
test: versionInfo
Add full test coverage resolving the `versionInfo`
This commit is contained in:
parent
9e145151be
commit
51e4bb0297
1 changed files with 63 additions and 0 deletions
63
src/version.test.ts
Normal file
63
src/version.test.ts
Normal file
|
|
@ -0,0 +1,63 @@
|
||||||
|
import * as core from '@actions/core';
|
||||||
|
import {Agent, MockAgent, setGlobalDispatcher} from 'undici';
|
||||||
|
import versionInfo from './version';
|
||||||
|
|
||||||
|
const mockAgent = new MockAgent();
|
||||||
|
|
||||||
|
beforeAll(() => {
|
||||||
|
setGlobalDispatcher(mockAgent);
|
||||||
|
mockAgent.disableNetConnect();
|
||||||
|
});
|
||||||
|
|
||||||
|
afterEach(() => {
|
||||||
|
jest.clearAllMocks();
|
||||||
|
});
|
||||||
|
|
||||||
|
afterAll(async () => {
|
||||||
|
await mockAgent.close();
|
||||||
|
setGlobalDispatcher(new Agent());
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('versionInfo', () => {
|
||||||
|
const platform = 'linux';
|
||||||
|
|
||||||
|
test('should resolve requested version info', async () => {
|
||||||
|
const version = 'latest';
|
||||||
|
const coreInfoSpy = jest.spyOn(core, 'info');
|
||||||
|
|
||||||
|
mockAgent
|
||||||
|
.get('https://cli.codecov.io')
|
||||||
|
.intercept({
|
||||||
|
path: `/${platform}/${version}`,
|
||||||
|
})
|
||||||
|
.reply(200, {
|
||||||
|
version: 'v0.5.2',
|
||||||
|
});
|
||||||
|
|
||||||
|
await versionInfo(platform, version);
|
||||||
|
|
||||||
|
expect(coreInfoSpy).toHaveBeenCalledTimes(2);
|
||||||
|
expect(coreInfoSpy).toHaveBeenCalledWith('==> Running version latest');
|
||||||
|
expect(coreInfoSpy).toHaveBeenCalledWith('==> Running version v0.5.2');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('should handle unsupported version', async () => {
|
||||||
|
const version = 'unsupported';
|
||||||
|
const coreInfoSpy = jest.spyOn(core, 'info');
|
||||||
|
|
||||||
|
mockAgent
|
||||||
|
.get('https://cli.codecov.io')
|
||||||
|
.intercept({
|
||||||
|
path: `/${platform}/${version}`,
|
||||||
|
})
|
||||||
|
.reply(404, 'MESSAGE');
|
||||||
|
|
||||||
|
await versionInfo(platform, version);
|
||||||
|
|
||||||
|
expect(coreInfoSpy).toHaveBeenCalledTimes(2);
|
||||||
|
expect(coreInfoSpy).toHaveBeenCalledWith('==> Running version unsupported');
|
||||||
|
expect(coreInfoSpy).toHaveBeenCalledWith(
|
||||||
|
'Could not pull latest version information: SyntaxError: Unexpected token \'M\', "MESSAGE" is not valid JSON',
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
Loading…
Reference in a new issue