mirror of
https://github.com/docker/login-action.git
synced 2024-11-09 15:23:25 +01:00
Fix tests
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
1c2cf9942d
commit
1c402b7c97
2 changed files with 29 additions and 4 deletions
|
@ -2,13 +2,21 @@ import osm = require('os');
|
||||||
|
|
||||||
import {getInputs} from '../src/context';
|
import {getInputs} from '../src/context';
|
||||||
|
|
||||||
|
test('without username getInputs throws errors', async () => {
|
||||||
|
expect(() => {
|
||||||
|
getInputs();
|
||||||
|
}).toThrowError('Input required and not supplied: username');
|
||||||
|
});
|
||||||
|
|
||||||
test('without password getInputs throws errors', async () => {
|
test('without password getInputs throws errors', async () => {
|
||||||
|
process.env['INPUT_USERNAME'] = 'dbowie';
|
||||||
expect(() => {
|
expect(() => {
|
||||||
getInputs();
|
getInputs();
|
||||||
}).toThrowError('Input required and not supplied: password');
|
}).toThrowError('Input required and not supplied: password');
|
||||||
});
|
});
|
||||||
|
|
||||||
test('with password getInputs does not error', async () => {
|
test('with password and username getInputs does not error', async () => {
|
||||||
|
process.env['INPUT_USERNAME'] = 'dbowie';
|
||||||
process.env['INPUT_PASSWORD'] = 'groundcontrol';
|
process.env['INPUT_PASSWORD'] = 'groundcontrol';
|
||||||
expect(() => {
|
expect(() => {
|
||||||
getInputs();
|
getInputs();
|
||||||
|
|
|
@ -17,7 +17,7 @@ test('errors when not run on linux platform', async () => {
|
||||||
expect(coreSpy).toHaveBeenCalledWith('Only supported on linux platform');
|
expect(coreSpy).toHaveBeenCalledWith('Only supported on linux platform');
|
||||||
});
|
});
|
||||||
|
|
||||||
test('errors without password', async () => {
|
test('errors without username', async () => {
|
||||||
const platSpy = jest.spyOn(osm, 'platform');
|
const platSpy = jest.spyOn(osm, 'platform');
|
||||||
platSpy.mockImplementation(() => 'linux');
|
platSpy.mockImplementation(() => 'linux');
|
||||||
|
|
||||||
|
@ -25,10 +25,24 @@ test('errors without password', async () => {
|
||||||
|
|
||||||
await run();
|
await run();
|
||||||
|
|
||||||
|
expect(coreSpy).toHaveBeenCalledWith('Input required and not supplied: username');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('errors without password', async () => {
|
||||||
|
const platSpy = jest.spyOn(osm, 'platform');
|
||||||
|
platSpy.mockImplementation(() => 'linux');
|
||||||
|
|
||||||
|
const coreSpy: jest.SpyInstance = jest.spyOn(core, 'setFailed');
|
||||||
|
|
||||||
|
const username: string = 'dbowie';
|
||||||
|
process.env[`INPUT_USERNAME`] = username;
|
||||||
|
|
||||||
|
await run();
|
||||||
|
|
||||||
expect(coreSpy).toHaveBeenCalledWith('Input required and not supplied: password');
|
expect(coreSpy).toHaveBeenCalledWith('Input required and not supplied: password');
|
||||||
});
|
});
|
||||||
|
|
||||||
test('successful with only password', async () => {
|
test('successful with username and password', async () => {
|
||||||
const platSpy = jest.spyOn(osm, 'platform');
|
const platSpy = jest.spyOn(osm, 'platform');
|
||||||
platSpy.mockImplementation(() => 'linux');
|
platSpy.mockImplementation(() => 'linux');
|
||||||
|
|
||||||
|
@ -37,6 +51,9 @@ test('successful with only password', async () => {
|
||||||
const dockerSpy: jest.SpyInstance = jest.spyOn(docker, 'login');
|
const dockerSpy: jest.SpyInstance = jest.spyOn(docker, 'login');
|
||||||
dockerSpy.mockImplementation(() => {});
|
dockerSpy.mockImplementation(() => {});
|
||||||
|
|
||||||
|
const username: string = 'dbowie';
|
||||||
|
process.env[`INPUT_USERNAME`] = username;
|
||||||
|
|
||||||
const password: string = 'groundcontrol';
|
const password: string = 'groundcontrol';
|
||||||
process.env[`INPUT_PASSWORD`] = password;
|
process.env[`INPUT_PASSWORD`] = password;
|
||||||
|
|
||||||
|
@ -44,7 +61,7 @@ test('successful with only password', async () => {
|
||||||
|
|
||||||
expect(setRegistrySpy).toHaveBeenCalledWith('');
|
expect(setRegistrySpy).toHaveBeenCalledWith('');
|
||||||
expect(setLogoutSpy).toHaveBeenCalledWith('');
|
expect(setLogoutSpy).toHaveBeenCalledWith('');
|
||||||
expect(dockerSpy).toHaveBeenCalledWith('', '', password);
|
expect(dockerSpy).toHaveBeenCalledWith('', username, password);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('calls docker login', async () => {
|
test('calls docker login', async () => {
|
||||||
|
|
Loading…
Reference in a new issue