2020-05-12 14:30:44 -04:00
|
|
|
import * as fs from 'fs';
|
2020-05-04 10:17:14 -04:00
|
|
|
import * as gpg from '../src/gpg';
|
2020-05-03 14:46:05 -04:00
|
|
|
|
2021-10-15 07:40:04 -04:00
|
|
|
const userInfos = [
|
|
|
|
{
|
|
|
|
key: 'test-key',
|
|
|
|
pgp: fs.readFileSync('__tests__/fixtures/test-key.pgp', {
|
|
|
|
encoding: 'utf8',
|
|
|
|
flag: 'r'
|
|
|
|
}),
|
|
|
|
pgp_base64: fs.readFileSync('__tests__/fixtures/test-key-base64.pgp', {
|
|
|
|
encoding: 'utf8',
|
|
|
|
flag: 'r'
|
|
|
|
}),
|
|
|
|
passphrase: fs.readFileSync('__tests__/fixtures/test-key.pass', {
|
|
|
|
encoding: 'utf8',
|
|
|
|
flag: 'r'
|
|
|
|
}),
|
|
|
|
name: 'Joe Tester',
|
|
|
|
email: 'joe@foo.bar',
|
|
|
|
keyID: '7D851EB72D73BDA0',
|
|
|
|
fingerprint: '27571A53B86AF0C799B38BA77D851EB72D73BDA0',
|
|
|
|
keygrips: ['3E2D1142AA59E08E16B7E2C64BA6DDC773B1A627', 'BA83FC8947213477F28ADC019F6564A956456163']
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'test-subkey',
|
|
|
|
pgp: fs.readFileSync('__tests__/fixtures/test-subkey.pgp', {
|
|
|
|
encoding: 'utf8',
|
|
|
|
flag: 'r'
|
|
|
|
}),
|
|
|
|
pgp_base64: fs.readFileSync('__tests__/fixtures/test-subkey-base64.pgp', {
|
|
|
|
encoding: 'utf8',
|
|
|
|
flag: 'r'
|
|
|
|
}),
|
|
|
|
passphrase: fs.readFileSync('__tests__/fixtures/test-subkey.pass', {
|
|
|
|
encoding: 'utf8',
|
|
|
|
flag: 'r'
|
|
|
|
}),
|
|
|
|
name: 'Joe Bar',
|
|
|
|
email: 'joe@bar.foo',
|
|
|
|
keyID: '6071D218380FDCC8',
|
|
|
|
fingerprint: 'C17D11ADF199F12A30A0910F1F80449BE0B08CB8',
|
|
|
|
keygrips: ['F5C3ABFAAB36B427FD98C4EDD0387E08EA1E8092', 'DEE0FC98F441519CA5DE5D79773CB29009695FEB']
|
|
|
|
}
|
|
|
|
];
|
2020-05-03 14:46:05 -04:00
|
|
|
|
2021-10-15 07:40:04 -04:00
|
|
|
describe('getVersion', () => {
|
|
|
|
it('returns GnuPG and libgcrypt version', async () => {
|
|
|
|
await gpg.getVersion().then(version => {
|
|
|
|
console.log(version);
|
|
|
|
expect(version.gnupg).not.toEqual('');
|
|
|
|
expect(version.libgcrypt).not.toEqual('');
|
2020-05-03 14:46:05 -04:00
|
|
|
});
|
|
|
|
});
|
2021-10-15 07:40:04 -04:00
|
|
|
});
|
2020-05-03 14:46:05 -04:00
|
|
|
|
2021-10-15 07:40:04 -04:00
|
|
|
describe('getDirs', () => {
|
|
|
|
it('returns GnuPG dirs', async () => {
|
|
|
|
await gpg.getDirs().then(dirs => {
|
|
|
|
console.log(dirs);
|
|
|
|
expect(dirs.libdir).not.toEqual('');
|
|
|
|
expect(dirs.datadir).not.toEqual('');
|
|
|
|
expect(dirs.homedir).not.toEqual('');
|
2020-05-04 10:17:14 -04:00
|
|
|
});
|
|
|
|
});
|
2021-10-15 07:40:04 -04:00
|
|
|
});
|
2020-05-04 10:17:14 -04:00
|
|
|
|
2021-10-15 07:40:04 -04:00
|
|
|
describe('configureAgent', () => {
|
|
|
|
it('configures GnuPG agent', async () => {
|
|
|
|
await gpg.configureAgent(gpg.agentConfig);
|
2020-05-04 10:17:14 -04:00
|
|
|
});
|
2021-10-15 07:40:04 -04:00
|
|
|
});
|
2020-05-04 10:17:14 -04:00
|
|
|
|
2021-10-15 07:40:04 -04:00
|
|
|
for (let userInfo of userInfos) {
|
|
|
|
describe(userInfo.key, () => {
|
|
|
|
describe('importKey', () => {
|
|
|
|
it('imports key (as armored string) to GnuPG', async () => {
|
|
|
|
await gpg.importKey(userInfo.pgp).then(output => {
|
|
|
|
console.log(output);
|
|
|
|
expect(output).not.toEqual('');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('imports key (as base64 string) to GnuPG', async () => {
|
|
|
|
await gpg.importKey(userInfo.pgp_base64).then(output => {
|
|
|
|
console.log(output);
|
|
|
|
expect(output).not.toEqual('');
|
|
|
|
});
|
2020-05-04 10:17:14 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-10-15 07:40:04 -04:00
|
|
|
describe('getKeygrips', () => {
|
|
|
|
it('returns the keygrips', async () => {
|
|
|
|
await gpg.importKey(userInfo.pgp);
|
|
|
|
await gpg.getKeygrips(userInfo.fingerprint).then(keygrips => {
|
|
|
|
console.log(keygrips);
|
|
|
|
expect(keygrips.length).toEqual(userInfo.keygrips.length);
|
|
|
|
for (let i = 0; i < keygrips.length; i++) {
|
|
|
|
expect(keygrips[i]).toEqual(userInfo.keygrips[i]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2020-05-04 10:17:14 -04:00
|
|
|
});
|
|
|
|
|
2021-10-15 07:40:04 -04:00
|
|
|
describe('presetPassphrase', () => {
|
|
|
|
it('presets passphrase', async () => {
|
|
|
|
await gpg.importKey(userInfo.pgp);
|
|
|
|
await gpg.configureAgent(gpg.agentConfig);
|
|
|
|
for (let keygrip of await gpg.getKeygrips(userInfo.fingerprint)) {
|
|
|
|
await gpg.presetPassphrase(keygrip, userInfo.passphrase).then(output => {
|
|
|
|
console.log(output);
|
|
|
|
expect(output).not.toEqual('');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2020-05-03 14:46:05 -04:00
|
|
|
});
|
|
|
|
|
2021-10-15 07:40:04 -04:00
|
|
|
describe('deleteKey', () => {
|
|
|
|
it('removes key from GnuPG', async () => {
|
|
|
|
await gpg.importKey(userInfo.pgp);
|
|
|
|
await gpg.deleteKey(userInfo.fingerprint);
|
|
|
|
});
|
2020-05-03 14:46:05 -04:00
|
|
|
});
|
|
|
|
});
|
2021-10-15 07:40:04 -04:00
|
|
|
}
|
2020-05-05 18:23:29 -04:00
|
|
|
|
2021-10-15 07:40:04 -04:00
|
|
|
describe('killAgent', () => {
|
|
|
|
it('kills GnuPG agent', async () => {
|
|
|
|
await gpg.killAgent();
|
2020-05-05 18:23:29 -04:00
|
|
|
});
|
2020-05-03 14:46:05 -04:00
|
|
|
});
|