mirror of
https://github.com/docker/login-action.git
synced 2024-11-06 00:45:48 -05:00
dcd1f1fe0a
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
65 lines
2.1 KiB
TypeScript
65 lines
2.1 KiB
TypeScript
import {expect, jest, test} from '@jest/globals';
|
|
import osm = require('os');
|
|
|
|
import {main} from '../src/main';
|
|
import * as docker from '../src/docker';
|
|
import * as stateHelper from '../src/state-helper';
|
|
|
|
test('errors without username and password', async () => {
|
|
jest.spyOn(osm, 'platform').mockImplementation(() => 'linux');
|
|
process.env['INPUT_LOGOUT'] = 'true'; // default value
|
|
await expect(main()).rejects.toThrow(new Error('Username and password required'));
|
|
});
|
|
|
|
test('successful with username and password', async () => {
|
|
jest.spyOn(osm, 'platform').mockImplementation(() => 'linux');
|
|
const setRegistrySpy = jest.spyOn(stateHelper, 'setRegistry');
|
|
const setLogoutSpy = jest.spyOn(stateHelper, 'setLogout');
|
|
const dockerSpy = jest.spyOn(docker, 'login').mockImplementation(() => Promise.resolve());
|
|
|
|
const username = 'dbowie';
|
|
process.env[`INPUT_USERNAME`] = username;
|
|
|
|
const password = 'groundcontrol';
|
|
process.env[`INPUT_PASSWORD`] = password;
|
|
|
|
const ecr = 'auto';
|
|
process.env['INPUT_ECR'] = ecr;
|
|
|
|
const logout = false;
|
|
process.env['INPUT_LOGOUT'] = String(logout);
|
|
|
|
await main();
|
|
|
|
expect(setRegistrySpy).toHaveBeenCalledWith('');
|
|
expect(setLogoutSpy).toHaveBeenCalledWith(logout);
|
|
expect(dockerSpy).toHaveBeenCalledWith('', username, password, ecr);
|
|
});
|
|
|
|
test('calls docker login', async () => {
|
|
jest.spyOn(osm, 'platform').mockImplementation(() => 'linux');
|
|
const setRegistrySpy = jest.spyOn(stateHelper, 'setRegistry');
|
|
const setLogoutSpy = jest.spyOn(stateHelper, 'setLogout');
|
|
const dockerSpy = jest.spyOn(docker, 'login').mockImplementation(() => Promise.resolve());
|
|
|
|
const username = 'dbowie';
|
|
process.env[`INPUT_USERNAME`] = username;
|
|
|
|
const password = 'groundcontrol';
|
|
process.env[`INPUT_PASSWORD`] = password;
|
|
|
|
const registry = 'ghcr.io';
|
|
process.env[`INPUT_REGISTRY`] = registry;
|
|
|
|
const ecr = 'auto';
|
|
process.env['INPUT_ECR'] = ecr;
|
|
|
|
const logout = true;
|
|
process.env['INPUT_LOGOUT'] = String(logout);
|
|
|
|
await main();
|
|
|
|
expect(setRegistrySpy).toHaveBeenCalledWith(registry);
|
|
expect(setLogoutSpy).toHaveBeenCalledWith(logout);
|
|
expect(dockerSpy).toHaveBeenCalledWith(registry, username, password, ecr);
|
|
});
|