2020-08-18 15:40:31 +00:00
|
|
|
import fs = require('fs');
|
|
|
|
import * as buildx from '../src/buildx';
|
|
|
|
import * as path from 'path';
|
|
|
|
import * as os from 'os';
|
2020-09-03 19:02:36 +00:00
|
|
|
import * as semver from 'semver';
|
|
|
|
import * as exec from '@actions/exec';
|
2020-08-18 15:40:31 +00:00
|
|
|
|
2021-06-23 14:11:52 +00:00
|
|
|
describe('isAvailable', () => {
|
|
|
|
const execSpy: jest.SpyInstance = jest.spyOn(exec, 'getExecOutput');
|
|
|
|
buildx.isAvailable();
|
|
|
|
|
|
|
|
expect(execSpy).toHaveBeenCalledWith(`docker`, ['buildx'], {
|
|
|
|
silent: true,
|
|
|
|
ignoreReturnCode: true
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-09-03 19:02:36 +00:00
|
|
|
describe('getVersion', () => {
|
2021-06-23 14:11:52 +00:00
|
|
|
async function isDaemonRunning() {
|
|
|
|
return await exec
|
|
|
|
.getExecOutput(`docker`, ['version', '--format', '{{.Server.Os}}'], {
|
|
|
|
ignoreReturnCode: true,
|
|
|
|
silent: true
|
|
|
|
})
|
|
|
|
.then(res => {
|
2021-06-29 12:02:42 +00:00
|
|
|
return !res.stdout.trim().includes(' ') && res.exitCode == 0;
|
2021-06-23 14:11:52 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
(isDaemonRunning() ? it : it.skip)(
|
|
|
|
'valid',
|
|
|
|
async () => {
|
|
|
|
const version = await buildx.getVersion();
|
|
|
|
console.log(`version: ${version}`);
|
|
|
|
expect(semver.valid(version)).not.toBeNull();
|
|
|
|
},
|
|
|
|
100000
|
|
|
|
);
|
2020-09-03 19:02:36 +00:00
|
|
|
});
|
2020-08-18 15:40:31 +00:00
|
|
|
|
2020-09-03 19:02:36 +00:00
|
|
|
describe('parseVersion', () => {
|
|
|
|
test.each([
|
|
|
|
['github.com/docker/buildx 0.4.1+azure bda4882a65349ca359216b135896bddc1d92461c', '0.4.1'],
|
|
|
|
['github.com/docker/buildx v0.4.1 bda4882a65349ca359216b135896bddc1d92461c', '0.4.1'],
|
|
|
|
['github.com/docker/buildx v0.4.2 fb7b670b764764dc4716df3eba07ffdae4cc47b2', '0.4.2']
|
|
|
|
])('given %p', async (stdout, expected) => {
|
|
|
|
expect(await buildx.parseVersion(stdout)).toEqual(expected);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-04-23 16:14:38 +00:00
|
|
|
describe('inspect', () => {
|
2020-08-26 23:48:38 +00:00
|
|
|
async function isDaemonRunning() {
|
2021-06-23 14:11:52 +00:00
|
|
|
return await exec
|
|
|
|
.getExecOutput(`docker`, ['version', '--format', '{{.Server.Os}}'], {
|
|
|
|
ignoreReturnCode: true,
|
|
|
|
silent: true
|
|
|
|
})
|
|
|
|
.then(res => {
|
2021-06-29 12:02:42 +00:00
|
|
|
return !res.stdout.trim().includes(' ') && res.exitCode == 0;
|
2021-06-23 14:11:52 +00:00
|
|
|
});
|
2020-08-26 23:48:38 +00:00
|
|
|
}
|
|
|
|
(isDaemonRunning() ? it : it.skip)(
|
2020-09-03 19:02:36 +00:00
|
|
|
'valid',
|
2020-08-26 23:48:38 +00:00
|
|
|
async () => {
|
2021-04-23 16:14:38 +00:00
|
|
|
const builder = await buildx.inspect('');
|
|
|
|
console.log('builder', builder);
|
|
|
|
expect(builder).not.toBeUndefined();
|
|
|
|
expect(builder.name).not.toEqual('');
|
|
|
|
expect(builder.driver).not.toEqual('');
|
|
|
|
expect(builder.node_platforms).not.toEqual('');
|
2020-08-26 23:48:38 +00:00
|
|
|
},
|
|
|
|
100000
|
|
|
|
);
|
2020-09-03 19:02:36 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('install', () => {
|
|
|
|
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'setup-buildx-'));
|
2021-01-04 18:03:58 +00:00
|
|
|
it('acquires v0.4.1 version of buildx', async () => {
|
|
|
|
const buildxBin = await buildx.install('v0.4.1', tmpDir);
|
2020-08-18 15:40:31 +00:00
|
|
|
console.log(buildxBin);
|
|
|
|
expect(fs.existsSync(buildxBin)).toBe(true);
|
|
|
|
}, 100000);
|
|
|
|
it('acquires latest version of buildx', async () => {
|
|
|
|
const buildxBin = await buildx.install('latest', tmpDir);
|
|
|
|
console.log(buildxBin);
|
|
|
|
expect(fs.existsSync(buildxBin)).toBe(true);
|
|
|
|
}, 100000);
|
|
|
|
});
|