2022-03-21 12:43:41 +00:00
|
|
|
import {describe, expect, it, jest, test} from '@jest/globals';
|
2021-07-02 05:02:22 +00:00
|
|
|
import * as fs from 'fs';
|
2020-08-18 15:40:31 +00:00
|
|
|
import * as os from 'os';
|
2021-07-02 05:02:22 +00:00
|
|
|
import * as path from 'path';
|
|
|
|
import * as buildx from '../src/buildx';
|
|
|
|
import * as context from '../src/context';
|
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-09-03 20:21:20 +00:00
|
|
|
const tmpNameSync = path.join('/tmp/.docker-setup-buildx-jest', '.tmpname-jest').split(path.sep).join(path.posix.sep);
|
|
|
|
|
2021-07-02 05:02:22 +00:00
|
|
|
jest.spyOn(context, 'tmpDir').mockImplementation((): string => {
|
|
|
|
const tmpDir = path.join('/tmp/.docker-setup-buildx-jest').split(path.sep).join(path.posix.sep);
|
|
|
|
if (!fs.existsSync(tmpDir)) {
|
|
|
|
fs.mkdirSync(tmpDir, {recursive: true});
|
|
|
|
}
|
|
|
|
return tmpDir;
|
|
|
|
});
|
|
|
|
|
2021-09-03 20:21:20 +00:00
|
|
|
jest.spyOn(context, 'tmpNameSync').mockImplementation((): string => {
|
|
|
|
return tmpNameSync;
|
|
|
|
});
|
|
|
|
|
2021-06-23 14:11:52 +00:00
|
|
|
describe('isAvailable', () => {
|
2022-03-21 12:43:41 +00:00
|
|
|
const execSpy = jest.spyOn(exec, 'getExecOutput');
|
2021-06-23 14:11:52 +00:00
|
|
|
buildx.isAvailable();
|
|
|
|
|
2022-03-21 12:43:41 +00:00
|
|
|
// eslint-disable-next-line jest/no-standalone-expect
|
2021-06-23 14:11:52 +00:00
|
|
|
expect(execSpy).toHaveBeenCalledWith(`docker`, ['buildx'], {
|
|
|
|
silent: true,
|
|
|
|
ignoreReturnCode: true
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-04-17 15:22:03 +00:00
|
|
|
describe('isAvailable standalone', () => {
|
|
|
|
const execSpy = jest.spyOn(exec, 'getExecOutput');
|
|
|
|
buildx.isAvailable(true);
|
|
|
|
|
|
|
|
// eslint-disable-next-line jest/no-standalone-expect
|
|
|
|
expect(execSpy).toHaveBeenCalledWith(`buildx`, [], {
|
|
|
|
silent: true,
|
|
|
|
ignoreReturnCode: true
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-09-03 19:02:36 +00:00
|
|
|
describe('getVersion', () => {
|
2022-03-21 12:43:41 +00:00
|
|
|
it('valid', async () => {
|
|
|
|
const version = await buildx.getVersion();
|
|
|
|
expect(semver.valid(version)).not.toBeNull();
|
|
|
|
});
|
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'],
|
2021-07-02 05:02:22 +00:00
|
|
|
['github.com/docker/buildx v0.4.2 fb7b670b764764dc4716df3eba07ffdae4cc47b2', '0.4.2'],
|
|
|
|
['github.com/docker/buildx f117971 f11797113e5a9b86bd976329c5dbb8a8bfdfadfa', 'f117971']
|
2020-09-03 19:02:36 +00:00
|
|
|
])('given %p', async (stdout, expected) => {
|
2021-07-02 05:02:22 +00:00
|
|
|
expect(buildx.parseVersion(stdout)).toEqual(expected);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('satisfies', () => {
|
|
|
|
test.each([
|
|
|
|
['0.4.1', '>=0.3.2', true],
|
|
|
|
['bda4882a65349ca359216b135896bddc1d92461c', '>0.1.0', false],
|
|
|
|
['f117971', '>0.6.0', true]
|
|
|
|
])('given %p', async (version, range, expected) => {
|
|
|
|
expect(buildx.satisfies(version, range)).toBe(expected);
|
2020-09-03 19:02:36 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-04-23 16:14:38 +00:00
|
|
|
describe('inspect', () => {
|
2022-03-21 12:43:41 +00:00
|
|
|
it('valid', async () => {
|
|
|
|
const builder = await buildx.inspect('');
|
|
|
|
expect(builder).not.toBeUndefined();
|
|
|
|
expect(builder.name).not.toEqual('');
|
|
|
|
expect(builder.driver).not.toEqual('');
|
|
|
|
expect(builder.node_platforms).not.toEqual('');
|
|
|
|
}, 100000);
|
2020-09-03 19:02:36 +00:00
|
|
|
});
|
|
|
|
|
2021-07-02 05:02:22 +00:00
|
|
|
describe('build', () => {
|
2021-07-11 20:42:19 +00:00
|
|
|
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'setup-buildx-'));
|
2022-03-21 12:43:41 +00:00
|
|
|
|
|
|
|
// eslint-disable-next-line jest/no-disabled-tests
|
2021-07-11 20:42:19 +00:00
|
|
|
it.skip('builds refs/pull/648/head', async () => {
|
2022-04-17 15:22:03 +00:00
|
|
|
const buildxBin = await buildx.build('https://github.com/docker/buildx.git#refs/pull/648/head', tmpDir, false);
|
2021-07-02 05:02:22 +00:00
|
|
|
expect(fs.existsSync(buildxBin)).toBe(true);
|
|
|
|
}, 100000);
|
2022-03-21 12:43:41 +00:00
|
|
|
|
|
|
|
// eslint-disable-next-line jest/no-disabled-tests
|
2021-07-11 20:42:19 +00:00
|
|
|
it.skip('builds 67bd6f4dc82a9cd96f34133dab3f6f7af803bb14', async () => {
|
2022-04-17 15:22:03 +00:00
|
|
|
const buildxBin = await buildx.build('https://github.com/docker/buildx.git#67bd6f4dc82a9cd96f34133dab3f6f7af803bb14', tmpDir, false);
|
2021-07-11 20:42:19 +00:00
|
|
|
expect(fs.existsSync(buildxBin)).toBe(true);
|
|
|
|
}, 100000);
|
2021-07-02 05:02:22 +00:00
|
|
|
});
|
|
|
|
|
2020-09-03 19:02:36 +00:00
|
|
|
describe('install', () => {
|
|
|
|
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'setup-buildx-'));
|
2022-04-17 15:22:03 +00:00
|
|
|
test.each([
|
|
|
|
['v0.4.1', false],
|
|
|
|
['latest', false],
|
|
|
|
['v0.4.1', true],
|
|
|
|
['latest', true]
|
|
|
|
])(
|
|
|
|
'acquires %p of buildx (standalone: %p)',
|
|
|
|
async (version, standalone) => {
|
|
|
|
const buildxBin = await buildx.install(version, tmpDir, standalone);
|
|
|
|
expect(fs.existsSync(buildxBin)).toBe(true);
|
|
|
|
},
|
|
|
|
100000
|
|
|
|
);
|
2020-08-18 15:40:31 +00:00
|
|
|
});
|
2021-09-03 20:21:20 +00:00
|
|
|
|
|
|
|
describe('getConfig', () => {
|
|
|
|
test.each([
|
|
|
|
['debug = true', false, 'debug = true', false],
|
|
|
|
[`notfound.toml`, true, '', true],
|
|
|
|
[
|
|
|
|
`${path.join(__dirname, 'fixtures', 'buildkitd.toml').split(path.sep).join(path.posix.sep)}`,
|
|
|
|
true,
|
|
|
|
`debug = true
|
|
|
|
[registry."docker.io"]
|
|
|
|
mirrors = ["mirror.gcr.io"]
|
|
|
|
`,
|
|
|
|
false
|
|
|
|
]
|
|
|
|
])('given %p config', async (val, file, exValue, invalid) => {
|
|
|
|
try {
|
|
|
|
let config: string;
|
|
|
|
if (file) {
|
|
|
|
config = await buildx.getConfigFile(val);
|
|
|
|
} else {
|
|
|
|
config = await buildx.getConfigInline(val);
|
|
|
|
}
|
|
|
|
expect(true).toBe(!invalid);
|
|
|
|
expect(config).toEqual(`${tmpNameSync}`);
|
2022-03-21 12:43:41 +00:00
|
|
|
const configValue = fs.readFileSync(tmpNameSync, 'utf-8');
|
2021-09-03 20:21:20 +00:00
|
|
|
expect(configValue).toEqual(exValue);
|
|
|
|
} catch (err) {
|
2022-03-21 12:43:41 +00:00
|
|
|
// eslint-disable-next-line jest/no-conditional-expect
|
2021-09-03 20:21:20 +00:00
|
|
|
expect(true).toBe(invalid);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|