mirror of
https://github.com/docker/actions-toolkit.git
synced 2024-11-23 19:56:09 +08:00
fdc8b5d37b
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
35 lines
897 B
TypeScript
35 lines
897 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(false);
|
|
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
|
|
});
|
|
});
|
|
});
|