mirror of
https://gitea.com/docker/setup-qemu-action.git
synced 2024-11-22 17:39:31 +01:00
25 lines
712 B
TypeScript
25 lines
712 B
TypeScript
|
import {describe, expect, jest, it} from '@jest/globals';
|
||
|
import * as io from '@actions/io';
|
||
|
import {Exec} from '@docker/actions-toolkit/lib/exec';
|
||
|
|
||
|
import * as qemu from '../src/qemu';
|
||
|
|
||
|
describe('isInstalled', () => {
|
||
|
it('bin', async () => {
|
||
|
const ioWhichSpy = jest.spyOn(io, 'which');
|
||
|
await qemu.isInstalled();
|
||
|
expect(ioWhichSpy).toHaveBeenCalledTimes(1);
|
||
|
expect(ioWhichSpy).toHaveBeenCalledWith(qemu.bin(), true);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe('printVersion', () => {
|
||
|
it('call qemu --version', async () => {
|
||
|
const execSpy = jest.spyOn(Exec, 'exec');
|
||
|
await qemu.printVersion().catch(() => {
|
||
|
// noop
|
||
|
});
|
||
|
expect(execSpy).toHaveBeenCalledWith(qemu.bin(), ['--version']);
|
||
|
});
|
||
|
});
|