mirror of
https://github.com/docker/actions-toolkit.git
synced 2024-11-23 11:36:10 +08:00
595e2417e8
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
35 lines
892 B
TypeScript
35 lines
892 B
TypeScript
import {describe, expect, it, jest} from '@jest/globals';
|
|
import * as exec from '@actions/exec';
|
|
|
|
import {Docker} from '../src/docker';
|
|
|
|
describe('isAvailable', () => {
|
|
it('cli', () => {
|
|
const execSpy = jest.spyOn(exec, 'getExecOutput');
|
|
Docker.isAvailable();
|
|
|
|
// eslint-disable-next-line jest/no-standalone-expect
|
|
expect(execSpy).toHaveBeenCalledWith(`docker`, undefined, {
|
|
silent: true,
|
|
ignoreReturnCode: true
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('info', () => {
|
|
it('standard', () => {
|
|
const execSpy = jest.spyOn(exec, 'exec');
|
|
Docker.info();
|
|
expect(execSpy).toHaveBeenCalledWith(`docker`, ['version'], {
|
|
failOnStdErr: false
|
|
});
|
|
});
|
|
it('standalone', () => {
|
|
const execSpy = jest.spyOn(exec, 'exec');
|
|
Docker.info(true);
|
|
expect(execSpy).not.toHaveBeenCalledWith(`docker`, ['version'], {
|
|
failOnStdErr: false
|
|
});
|
|
});
|
|
});
|