mirror of
https://github.com/docker/login-action.git
synced 2024-11-09 23:33:24 +01:00
4b59a429db
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
import {expect, jest, test} from '@jest/globals';
|
|
import {loginStandard, logout} from '../src/docker';
|
|
import * as path from 'path';
|
|
import * as exec from '@actions/exec';
|
|
|
|
process.env['RUNNER_TEMP'] = path.join(__dirname, 'runner');
|
|
|
|
test('loginStandard calls exec', async () => {
|
|
// @ts-ignore
|
|
const execSpy = jest.spyOn(exec, 'getExecOutput').mockImplementation(async () => {
|
|
return {
|
|
exitCode: expect.any(Number),
|
|
stdout: expect.any(Function),
|
|
stderr: expect.any(Function)
|
|
};
|
|
});
|
|
|
|
const username: string = 'dbowie';
|
|
const password: string = 'groundcontrol';
|
|
const registry: string = 'https://ghcr.io';
|
|
|
|
await loginStandard(registry, username, password);
|
|
|
|
expect(execSpy).toHaveBeenCalledWith(`docker`, ['login', '--password-stdin', '--username', username, registry], {
|
|
input: Buffer.from(password),
|
|
silent: true,
|
|
ignoreReturnCode: true
|
|
});
|
|
});
|
|
|
|
test('logout calls exec', async () => {
|
|
// @ts-ignore
|
|
const execSpy = jest.spyOn(exec, 'getExecOutput').mockImplementation(async () => {
|
|
return {
|
|
exitCode: expect.any(Number),
|
|
stdout: expect.any(Function),
|
|
stderr: expect.any(Function)
|
|
};
|
|
});
|
|
|
|
const registry: string = 'https://ghcr.io';
|
|
|
|
await logout(registry);
|
|
|
|
expect(execSpy).toHaveBeenCalledWith(`docker`, ['logout', registry], {
|
|
ignoreReturnCode: true
|
|
});
|
|
});
|