mirror of
https://github.com/docker/login-action.git
synced 2025-04-02 13:10:06 +02:00
Create docker.test.ts
This commit is contained in:
parent
34d5f75b0d
commit
b4915282a8
1 changed files with 49 additions and 0 deletions
49
__tests__/docker.test.ts
Normal file
49
__tests__/docker.test.ts
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
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 () => {
|
||||||
|
const execSpy: jest.SpyInstance = jest.spyOn(exec, 'exec');
|
||||||
|
// don't let exec try to actually run the commands
|
||||||
|
execSpy.mockImplementation(() => {});
|
||||||
|
|
||||||
|
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,
|
||||||
|
listeners: expect.objectContaining({
|
||||||
|
stdout: expect.any(Function),
|
||||||
|
stderr: expect.any(Function)
|
||||||
|
})
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('logout calls exec', async () => {
|
||||||
|
const execSpy: jest.SpyInstance = jest.spyOn(exec, 'exec');
|
||||||
|
// don't let exec try to actually run the commands
|
||||||
|
execSpy.mockImplementation(() => {});
|
||||||
|
|
||||||
|
const registry: string = 'https://ghcr.io';
|
||||||
|
|
||||||
|
await logout(registry);
|
||||||
|
|
||||||
|
expect(execSpy).toHaveBeenCalledWith(`docker`, ['logout', registry], {
|
||||||
|
silent: false,
|
||||||
|
ignoreReturnCode: true,
|
||||||
|
input: Buffer.from(''),
|
||||||
|
listeners: expect.objectContaining({
|
||||||
|
stdout: expect.any(Function),
|
||||||
|
stderr: expect.any(Function)
|
||||||
|
})
|
||||||
|
});
|
||||||
|
});
|
Loading…
Add table
Reference in a new issue