2018-05-03 16:03:22 +00:00
|
|
|
/* gpgme.js - Javascript integration for gpgme
|
|
|
|
* Copyright (C) 2018 Bundesamt für Sicherheit in der Informationstechnik
|
|
|
|
*
|
|
|
|
* This file is part of GPGME.
|
|
|
|
*
|
|
|
|
* GPGME is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU Lesser General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2.1 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GPGME is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
|
|
*/
|
2018-06-06 09:57:41 +00:00
|
|
|
|
|
|
|
import './node_modules/mocha/mocha'; /*global mocha, it, describe*/
|
|
|
|
import './node_modules/chai/chai';/*global chai*/
|
|
|
|
import { helper_params as hp } from './unittest_inputvalues';
|
|
|
|
import { message_params as mp } from './unittest_inputvalues';
|
|
|
|
import { whatever_params as wp } from './unittest_inputvalues';
|
|
|
|
import { key_params as kp } from './unittest_inputvalues';
|
|
|
|
import { Connection } from './src/Connection';
|
|
|
|
import { gpgme_error } from './src/Errors';
|
|
|
|
import { toKeyIdArray , isFingerprint } from './src/Helpers';
|
|
|
|
import { GPGME_Key , createKey } from './src/Key';
|
|
|
|
import { GPGME_Keyring } from './src/Keyring';
|
|
|
|
import {GPGME_Message, createMessage} from './src/Message';
|
2018-05-03 16:03:22 +00:00
|
|
|
|
|
|
|
mocha.setup('bdd');
|
2018-06-06 11:05:53 +00:00
|
|
|
const expect = chai.expect;
|
2018-05-03 16:03:22 +00:00
|
|
|
chai.config.includeStack = true;
|
|
|
|
|
|
|
|
function unittests (){
|
|
|
|
describe('Connection testing', function(){
|
|
|
|
|
|
|
|
it('Connecting', function(done) {
|
|
|
|
let conn0 = new Connection;
|
2018-05-25 09:53:24 +00:00
|
|
|
conn0.checkConnection().then(function(answer) {
|
|
|
|
expect(answer).to.not.be.empty;
|
|
|
|
expect(answer.gpgme).to.not.be.undefined;
|
|
|
|
expect(answer.gpgme).to.be.a('string');
|
|
|
|
expect(answer.info).to.be.an('Array');
|
2018-05-03 16:03:22 +00:00
|
|
|
expect(conn0.disconnect).to.be.a('function');
|
|
|
|
expect(conn0.post).to.be.a('function');
|
|
|
|
done();
|
2018-05-25 09:53:24 +00:00
|
|
|
});
|
2018-05-03 16:03:22 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Disconnecting', function(done) {
|
|
|
|
let conn0 = new Connection;
|
2018-05-25 09:53:24 +00:00
|
|
|
conn0.checkConnection(false).then(function(answer) {
|
|
|
|
expect(answer).to.be.true;
|
|
|
|
conn0.disconnect();
|
|
|
|
conn0.checkConnection(false).then(function(result) {
|
|
|
|
expect(result).to.be.false;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2018-05-03 16:03:22 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Error Object handling', function(){
|
2018-05-25 17:02:18 +00:00
|
|
|
// TODO: new GPGME_Error codes
|
2018-05-03 16:03:22 +00:00
|
|
|
it('check the Timeout error', function(){
|
|
|
|
let test0 = gpgme_error('CONN_TIMEOUT');
|
|
|
|
|
|
|
|
expect(test0).to.be.an.instanceof(Error);
|
|
|
|
expect(test0.code).to.equal('CONN_TIMEOUT');
|
|
|
|
});
|
|
|
|
|
2018-06-06 09:57:41 +00:00
|
|
|
it('Error Object returns generic code if code is not listed',
|
|
|
|
function(){
|
|
|
|
let test0 = gpgme_error(hp.invalidErrorCode);
|
2018-05-03 16:03:22 +00:00
|
|
|
|
2018-06-06 09:57:41 +00:00
|
|
|
expect(test0).to.be.an.instanceof(Error);
|
|
|
|
expect(test0.code).to.equal('GENERIC_ERROR');
|
|
|
|
}
|
|
|
|
);
|
2018-05-03 16:03:22 +00:00
|
|
|
|
|
|
|
it('Warnings like PARAM_IGNORED should not return errors', function(){
|
|
|
|
let test0 = gpgme_error('PARAM_IGNORED');
|
|
|
|
|
|
|
|
expect(test0).to.be.null;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Fingerprint checking', function(){
|
|
|
|
|
|
|
|
it('isFingerprint(): valid Fingerprint', function(){
|
|
|
|
let test0 = isFingerprint(hp.validFingerprint);
|
|
|
|
|
|
|
|
expect(test0).to.be.true;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('isFingerprint(): invalid Fingerprints', function(){
|
|
|
|
for (let i=0; i < hp.invalidFingerprints.length; i++){
|
|
|
|
let test0 = isFingerprint(hp.invalidFingerprints[i]);
|
|
|
|
|
|
|
|
expect(test0).to.be.false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-05-04 10:56:59 +00:00
|
|
|
describe('toKeyIdArray() (converting input to fingerprint)', function(){
|
2018-05-03 16:03:22 +00:00
|
|
|
|
|
|
|
it('Correct fingerprint string', function(){
|
|
|
|
let test0 = toKeyIdArray(hp.validFingerprint);
|
|
|
|
|
|
|
|
expect(test0).to.be.an('array');
|
|
|
|
expect(test0).to.include(hp.validFingerprint);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('correct GPGME_Key', function(){
|
|
|
|
expect(hp.validGPGME_Key).to.be.an.instanceof(GPGME_Key);
|
|
|
|
let test0 = toKeyIdArray(hp.validGPGME_Key);
|
|
|
|
|
|
|
|
expect(test0).to.be.an('array');
|
|
|
|
expect(test0).to.include(hp.validGPGME_Key.fingerprint);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('openpgpjs-like object', function(){
|
|
|
|
let test0 = toKeyIdArray(hp.valid_openpgplike);
|
|
|
|
|
|
|
|
expect(test0).to.be.an('array').with.lengthOf(1);
|
|
|
|
expect(test0).to.include(
|
|
|
|
hp.valid_openpgplike.primaryKey.getFingerprint());
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Array of valid inputs', function(){
|
|
|
|
let test0 = toKeyIdArray(hp.validKeys);
|
|
|
|
expect(test0).to.be.an('array');
|
|
|
|
expect(test0).to.have.lengthOf(hp.validKeys.length);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Incorrect inputs', function(){
|
|
|
|
|
|
|
|
it('valid Long ID', function(){
|
|
|
|
let test0 = toKeyIdArray(hp.validLongId);
|
|
|
|
|
|
|
|
expect(test0).to.be.empty;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('invalidFingerprint', function(){
|
|
|
|
let test0 = toKeyIdArray(hp.invalidFingerprint);
|
|
|
|
|
|
|
|
expect(test0).to.be.empty;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('invalidKeyArray', function(){
|
|
|
|
let test0 = toKeyIdArray(hp.invalidKeyArray);
|
|
|
|
|
|
|
|
expect(test0).to.be.empty;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Partially invalid array', function(){
|
|
|
|
let test0 = toKeyIdArray(hp.invalidKeyArray_OneBad);
|
|
|
|
|
|
|
|
expect(test0).to.be.an('array');
|
|
|
|
expect(test0).to.have.lengthOf(
|
|
|
|
hp.invalidKeyArray_OneBad.length - 1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('GPGME_Key', function(){
|
|
|
|
|
|
|
|
it('correct Key initialization', function(){
|
2018-05-28 14:52:50 +00:00
|
|
|
let key = createKey(kp.validKeyFingerprint);
|
2018-05-03 16:03:22 +00:00
|
|
|
expect(key).to.be.an.instanceof(GPGME_Key);
|
2018-05-25 17:02:18 +00:00
|
|
|
});
|
|
|
|
it('Key has data after a first refresh', function(done) {
|
2018-05-28 14:52:50 +00:00
|
|
|
let key = createKey(kp.validKeyFingerprint);
|
2018-05-25 17:02:18 +00:00
|
|
|
key.refreshKey().then(function(key2){
|
|
|
|
expect(key2).to.be.an.instanceof(GPGME_Key);
|
|
|
|
expect(key2.get).to.be.a('function');
|
|
|
|
for (let i=0; i < kp.validKeyProperties.length; i++) {
|
|
|
|
let prop = key2.get(kp.validKeyProperties[i]);
|
|
|
|
expect(prop).to.not.be.undefined;
|
|
|
|
expect(prop).to.be.a('boolean');
|
|
|
|
}
|
|
|
|
expect(isFingerprint(key2.get('fingerprint'))).to.be.true;
|
|
|
|
expect(
|
|
|
|
key2.get('fingerprint')).to.equal(kp.validKeyFingerprint);
|
|
|
|
expect(
|
|
|
|
key2.get('fingerprint')).to.equal(key.fingerprint);
|
|
|
|
done();
|
|
|
|
});
|
2018-05-03 16:03:22 +00:00
|
|
|
});
|
|
|
|
|
2018-05-25 17:02:18 +00:00
|
|
|
it('Non-cached key async data retrieval', function (done){
|
2018-07-27 18:36:21 +00:00
|
|
|
let key = createKey(kp.validKeyFingerprint, true);
|
|
|
|
key.get('can_authenticate').then(function(result){
|
2018-05-25 17:02:18 +00:00
|
|
|
expect(result).to.be.a('boolean');
|
|
|
|
done();
|
|
|
|
});
|
2018-05-28 15:26:56 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('Non-cached key async armored Key', function (done){
|
2018-07-27 18:36:21 +00:00
|
|
|
let key = createKey(kp.validKeyFingerprint, true);
|
|
|
|
key.get('armored').then(function(result){
|
2018-05-28 15:26:56 +00:00
|
|
|
expect(result).to.be.a('string');
|
|
|
|
expect(result).to.include('KEY BLOCK-----');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Non-cached key async hasSecret', function (done){
|
2018-07-27 18:36:21 +00:00
|
|
|
let key = createKey(kp.validKeyFingerprint, true);
|
|
|
|
key.get('hasSecret').then(function(result){
|
2018-05-28 15:26:56 +00:00
|
|
|
expect(result).to.be.a('boolean');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Non-cached key async hasSecret (no secret in Key)', function (done){
|
2018-07-27 18:36:21 +00:00
|
|
|
let key = createKey(kp.validFingerprintNoSecret, true);
|
2018-05-28 15:26:56 +00:00
|
|
|
expect(key).to.be.an.instanceof(GPGME_Key);
|
2018-07-27 18:36:21 +00:00
|
|
|
key.get('hasSecret').then(function(result){
|
2018-05-28 15:26:56 +00:00
|
|
|
expect(result).to.be.a('boolean');
|
|
|
|
expect(result).to.equal(false);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2018-05-25 17:02:18 +00:00
|
|
|
|
|
|
|
it('Querying non-existing Key returns an error', function(done) {
|
2018-05-28 14:52:50 +00:00
|
|
|
let key = createKey(kp.invalidKeyFingerprint);
|
2018-05-25 17:02:18 +00:00
|
|
|
key.refreshKey().then(function(){},
|
|
|
|
function(error){
|
|
|
|
expect(error).to.be.an.instanceof(Error);
|
|
|
|
expect(error.code).to.equal('KEY_NOKEY');
|
2018-05-25 09:53:24 +00:00
|
|
|
done();
|
2018-06-06 09:57:41 +00:00
|
|
|
});
|
2018-05-03 16:03:22 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('createKey returns error if parameters are wrong', function(){
|
|
|
|
for (let i=0; i< 4; i++){
|
2018-05-28 14:52:50 +00:00
|
|
|
let key0 = createKey(wp.four_invalid_params[i]);
|
2018-05-03 16:03:22 +00:00
|
|
|
expect(key0).to.be.an.instanceof(Error);
|
|
|
|
expect(key0.code).to.equal('PARAM_WRONG');
|
|
|
|
}
|
|
|
|
});
|
2018-05-25 17:02:18 +00:00
|
|
|
|
|
|
|
it('malformed GPGME_Key cannot be used', function(){
|
2018-05-03 16:03:22 +00:00
|
|
|
for (let i=0; i < 4; i++){
|
2018-05-28 14:52:50 +00:00
|
|
|
let key = new GPGME_Key(wp.four_invalid_params[i]);
|
2018-05-25 17:02:18 +00:00
|
|
|
expect(key.fingerprint).to.be.an.instanceof(Error);
|
|
|
|
expect(key.fingerprint.code).to.equal('KEY_INVALID');
|
2018-05-03 16:03:22 +00:00
|
|
|
}
|
|
|
|
});
|
2018-07-30 10:31:27 +00:00
|
|
|
|
|
|
|
it('Overwriting getFingerprint does not work', function(){
|
|
|
|
const evilFunction = function(){
|
|
|
|
return 'bad Data';
|
|
|
|
};
|
|
|
|
let key = createKey(kp.validKeyFingerprint, true);
|
|
|
|
expect(key.fingerprint).to.equal(kp.validKeyFingerprint);
|
|
|
|
try {
|
|
|
|
key.getFingerprint = evilFunction;
|
|
|
|
}
|
|
|
|
catch(e) {
|
|
|
|
expect(e).to.be.an.instanceof(TypeError);
|
|
|
|
}
|
|
|
|
expect(key.fingerprint).to.equal(kp.validKeyFingerprint);
|
|
|
|
expect(key.getFingerprint).to.not.equal(evilFunction);
|
|
|
|
});
|
2018-05-25 17:02:18 +00:00
|
|
|
// TODO: tests for subkeys
|
|
|
|
// TODO: tests for userids
|
|
|
|
// TODO: some invalid tests for key/keyring
|
2018-05-03 16:03:22 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('GPGME_Keyring', function(){
|
|
|
|
|
2018-05-28 14:52:50 +00:00
|
|
|
it('correct Keyring initialization', function(){
|
|
|
|
let keyring = new GPGME_Keyring;
|
2018-05-03 16:03:22 +00:00
|
|
|
expect(keyring).to.be.an.instanceof(GPGME_Keyring);
|
|
|
|
expect(keyring.getKeys).to.be.a('function');
|
|
|
|
});
|
|
|
|
|
2018-06-06 11:05:53 +00:00
|
|
|
it('Loading Keys from Keyring, to be used synchronously',
|
|
|
|
function(done){
|
|
|
|
let keyring = new GPGME_Keyring;
|
|
|
|
keyring.getKeys(null, true).then(function(result){
|
|
|
|
expect(result).to.be.an('array');
|
|
|
|
expect(result[0]).to.be.an.instanceof(GPGME_Key);
|
2018-07-09 09:24:46 +00:00
|
|
|
expect(result[0].get('hasSecret')).to.be.a('boolean');
|
|
|
|
// expect(result[0].get('armored')).to.include(
|
|
|
|
// '-----END PGP PUBLIC KEY BLOCK-----');
|
2018-06-06 11:05:53 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|
2018-06-06 09:57:41 +00:00
|
|
|
|
2018-06-06 11:05:53 +00:00
|
|
|
it('Loading specific Key from Keyring, to be used synchronously',
|
|
|
|
function(done){
|
|
|
|
let keyring = new GPGME_Keyring;
|
|
|
|
keyring.getKeys(kp.validKeyFingerprint, true).then(
|
|
|
|
function(result){
|
|
|
|
expect(result).to.be.an('array');
|
|
|
|
expect(result[0]).to.be.an.instanceof(GPGME_Key);
|
2018-07-09 09:24:46 +00:00
|
|
|
expect(result[0].get('hasSecret')).to.be.a('boolean');
|
2018-06-06 11:05:53 +00:00
|
|
|
done();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
2018-06-06 09:57:41 +00:00
|
|
|
|
|
|
|
it('Querying non-existing Key from Keyring', function(done){
|
|
|
|
let keyring = new GPGME_Keyring;
|
2018-06-06 11:05:53 +00:00
|
|
|
keyring.getKeys(kp.invalidKeyFingerprint, true).then(
|
|
|
|
function(result){
|
|
|
|
expect(result).to.be.an('array');
|
|
|
|
expect(result.length).to.equal(0);
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
);
|
2018-06-06 09:57:41 +00:00
|
|
|
});
|
2018-05-03 16:03:22 +00:00
|
|
|
|
2018-06-06 11:05:53 +00:00
|
|
|
});
|
2018-06-06 09:57:41 +00:00
|
|
|
|
2018-05-03 16:03:22 +00:00
|
|
|
describe('GPGME_Message', function(){
|
|
|
|
|
|
|
|
it('creating encrypt Message', function(){
|
|
|
|
let test0 = createMessage('encrypt');
|
|
|
|
|
|
|
|
expect(test0).to.be.an.instanceof(GPGME_Message);
|
2018-07-27 18:36:21 +00:00
|
|
|
expect(test0.isComplete()).to.be.false;
|
2018-05-03 16:03:22 +00:00
|
|
|
});
|
|
|
|
|
2018-05-07 16:27:25 +00:00
|
|
|
it('Message is complete after setting mandatory data', function(){
|
2018-05-03 16:03:22 +00:00
|
|
|
let test0 = createMessage('encrypt');
|
|
|
|
test0.setParameter('data', mp.valid_encrypt_data);
|
|
|
|
test0.setParameter('keys', hp.validFingerprints);
|
|
|
|
|
2018-07-27 18:36:21 +00:00
|
|
|
expect(test0.isComplete()).to.be.true;
|
2018-05-03 16:03:22 +00:00
|
|
|
});
|
|
|
|
|
2018-05-07 16:27:25 +00:00
|
|
|
it('Message is not complete after mandatory data is empty', function(){
|
|
|
|
let test0 = createMessage('encrypt');
|
|
|
|
test0.setParameter('data', '');
|
|
|
|
test0.setParameter('keys', hp.validFingerprints);
|
2018-07-27 18:36:21 +00:00
|
|
|
expect(test0.isComplete()).to.be.false;
|
2018-05-07 16:27:25 +00:00
|
|
|
});
|
|
|
|
|
2018-05-03 16:03:22 +00:00
|
|
|
it('Complete Message contains the data that was set', function(){
|
|
|
|
let test0 = createMessage('encrypt');
|
|
|
|
test0.setParameter('data', mp.valid_encrypt_data);
|
|
|
|
test0.setParameter('keys', hp.validFingerprints);
|
|
|
|
|
|
|
|
expect(test0.message).to.not.be.null;
|
2018-06-08 15:54:58 +00:00
|
|
|
expect(test0.message).to.have.keys('op', 'data', 'keys',
|
|
|
|
'chunksize');
|
2018-05-03 16:03:22 +00:00
|
|
|
expect(test0.message.op).to.equal('encrypt');
|
|
|
|
expect(test0.message.data).to.equal(
|
|
|
|
mp.valid_encrypt_data);
|
|
|
|
});
|
|
|
|
|
|
|
|
it ('Not accepting non-allowed operation', function(){
|
|
|
|
let test0 = createMessage(mp.invalid_op_action);
|
|
|
|
|
|
|
|
expect(test0).to.be.an.instanceof(Error);
|
|
|
|
expect(test0.code).to.equal('MSG_WRONG_OP');
|
|
|
|
});
|
|
|
|
it('Not accepting wrong parameter type', function(){
|
|
|
|
let test0 = createMessage(mp.invalid_op_type);
|
|
|
|
|
|
|
|
expect(test0).to.be.an.instanceof(Error);
|
|
|
|
expect(test0.code).to.equal('PARAM_WRONG');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Not accepting wrong parameter name', function(){
|
|
|
|
let test0 = createMessage(mp.invalid_param_test.valid_op);
|
|
|
|
for (let i=0;
|
|
|
|
i < mp.invalid_param_test.invalid_param_names.length; i++){
|
2018-06-06 09:57:41 +00:00
|
|
|
let ret = test0.setParameter(
|
|
|
|
mp.invalid_param_test.invalid_param_names[i],
|
|
|
|
'Somevalue');
|
2018-05-03 16:03:22 +00:00
|
|
|
|
2018-06-06 09:57:41 +00:00
|
|
|
expect(ret).to.be.an.instanceof(Error);
|
|
|
|
expect(ret.code).to.equal('PARAM_WRONG');
|
2018-05-03 16:03:22 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Not accepting wrong parameter value', function(){
|
|
|
|
let test0 = createMessage(mp.invalid_param_test.valid_op);
|
|
|
|
for (let j=0;
|
|
|
|
j < mp.invalid_param_test.invalid_values_0.length; j++){
|
2018-06-06 09:57:41 +00:00
|
|
|
let ret = test0.setParameter(
|
|
|
|
mp.invalid_param_test.validparam_name_0,
|
|
|
|
mp.invalid_param_test.invalid_values_0[j]);
|
2018-05-03 16:03:22 +00:00
|
|
|
|
2018-06-06 09:57:41 +00:00
|
|
|
expect(ret).to.be.an.instanceof(Error);
|
|
|
|
expect(ret.code).to.equal('PARAM_WRONG');
|
2018-05-03 16:03:22 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
export default {unittests};
|