2023-03-09 12:49:35 +00:00
|
|
|
import * as path from 'path';
|
|
|
|
import * as io from '@actions/io';
|
|
|
|
import * as exec from '@actions/exec';
|
|
|
|
import * as gpg from '../src/gpg';
|
2020-05-02 11:33:15 +00:00
|
|
|
|
|
|
|
jest.mock('@actions/exec', () => {
|
|
|
|
return {
|
|
|
|
exec: jest.fn()
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
const tempDir = path.join(__dirname, 'runner', 'temp');
|
|
|
|
process.env['RUNNER_TEMP'] = tempDir;
|
|
|
|
|
|
|
|
describe('gpg tests', () => {
|
|
|
|
beforeEach(async () => {
|
|
|
|
await io.mkdirP(tempDir);
|
2020-07-16 01:53:39 +00:00
|
|
|
});
|
2020-05-02 11:33:15 +00:00
|
|
|
|
|
|
|
afterAll(async () => {
|
|
|
|
try {
|
|
|
|
await io.rmRF(tempDir);
|
|
|
|
} catch {
|
|
|
|
console.log('Failed to remove test directories');
|
|
|
|
}
|
2020-07-17 01:12:25 +00:00
|
|
|
});
|
2020-05-02 11:33:15 +00:00
|
|
|
|
|
|
|
describe('importKey', () => {
|
|
|
|
it('attempts to import private key and returns null key id on failure', async () => {
|
|
|
|
const privateKey = 'KEY CONTENTS';
|
|
|
|
const keyId = await gpg.importKey(privateKey);
|
|
|
|
|
|
|
|
expect(keyId).toBeNull();
|
|
|
|
|
2023-03-09 12:49:35 +00:00
|
|
|
expect(exec.exec).toHaveBeenCalledWith(
|
|
|
|
'gpg',
|
|
|
|
expect.anything(),
|
|
|
|
expect.anything()
|
|
|
|
);
|
2020-05-02 11:33:15 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('deleteKey', () => {
|
|
|
|
it('deletes private key', async () => {
|
|
|
|
const keyId = 'asdfhjkl';
|
|
|
|
await gpg.deleteKey(keyId);
|
|
|
|
|
2023-03-09 12:49:35 +00:00
|
|
|
expect(exec.exec).toHaveBeenCalledWith(
|
|
|
|
'gpg',
|
|
|
|
expect.anything(),
|
|
|
|
expect.anything()
|
|
|
|
);
|
2020-05-02 11:33:15 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|