1
0
Files
login-action/__tests__/docker.test.ts
T

58 lines
1.6 KiB
TypeScript
Raw Normal View History

2026-03-01 11:22:24 +01:00
import {expect, test, vi} from 'vitest';
2023-09-08 09:35:48 +02:00
2026-03-01 11:26:40 +01:00
import {Docker} from '@docker/actions-toolkit/lib/docker/docker.js';
2024-07-22 10:41:37 +02:00
2026-03-01 11:26:40 +01:00
import {loginStandard, logout} from '../src/docker.js';
2020-10-09 03:30:45 -07:00
test('loginStandard calls exec', async () => {
2026-03-01 11:22:24 +01:00
const execSpy = vi.spyOn(Docker, 'getExecOutput').mockImplementation(async () => {
2022-02-28 08:28:55 +01:00
return {
2021-06-22 11:09:26 +02:00
exitCode: expect.any(Number),
stdout: expect.any(Function),
stderr: expect.any(Function)
2022-02-28 08:28:55 +01:00
};
});
2020-10-09 03:30:45 -07:00
2022-03-21 10:57:36 +01:00
const username = 'dbowie';
const password = 'groundcontrol';
const registry = 'https://ghcr.io';
2020-10-09 03:30:45 -07:00
await loginStandard(registry, username, password);
2024-07-22 10:41:37 +02:00
expect(execSpy).toHaveBeenCalledTimes(1);
const callfunc = execSpy.mock.calls[0];
if (callfunc && callfunc[1]) {
// we don't want to check env opt
callfunc[1].env = undefined;
}
expect(execSpy).toHaveBeenCalledWith(['login', '--password-stdin', '--username', username, registry], {
2020-10-09 03:30:45 -07:00
input: Buffer.from(password),
silent: true,
2021-06-22 11:09:26 +02:00
ignoreReturnCode: true
2020-10-09 03:30:45 -07:00
});
});
test('logout calls exec', async () => {
2026-03-01 11:22:24 +01:00
const execSpy = vi.spyOn(Docker, 'getExecOutput').mockImplementation(async () => {
2022-02-28 08:28:55 +01:00
return {
2021-06-22 11:09:26 +02:00
exitCode: expect.any(Number),
stdout: expect.any(Function),
stderr: expect.any(Function)
2022-02-28 08:28:55 +01:00
};
});
2020-10-09 03:30:45 -07:00
2022-03-21 10:57:36 +01:00
const registry = 'https://ghcr.io';
2020-10-09 03:30:45 -07:00
await logout(registry, '');
2020-10-09 03:30:45 -07:00
2024-07-22 10:41:37 +02:00
expect(execSpy).toHaveBeenCalledTimes(1);
const callfunc = execSpy.mock.calls[0];
if (callfunc && callfunc[1]) {
// we don't want to check env opt
callfunc[1].env = undefined;
}
expect(execSpy).toHaveBeenCalledWith(['logout', registry], {
2021-06-22 11:09:26 +02:00
ignoreReturnCode: true
2020-10-09 03:30:45 -07:00
});
});