2013-10-11 15:30:03 -04:00
|
|
|
define(function(require) {
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var PGP = require('js/crypto/pgp'),
|
|
|
|
expect = chai.expect;
|
|
|
|
|
|
|
|
describe('PGP Crypto Api unit tests', function() {
|
|
|
|
var pgp,
|
2013-10-11 15:54:43 -04:00
|
|
|
user = 'whiteout.test@t-online.de',
|
2013-10-11 15:30:03 -04:00
|
|
|
passphrase = 'asdf',
|
|
|
|
keySize = 512,
|
|
|
|
keyId = 'F6F60E9B42CDFF4C',
|
|
|
|
pubkey = '-----BEGIN PGP PUBLIC KEY BLOCK-----\n' +
|
|
|
|
'Version: OpenPGP.js v.1.20131011\n' +
|
|
|
|
'Comment: http://openpgpjs.org\n' +
|
|
|
|
'\n' +
|
|
|
|
'xk0EUlhMvAEB/2MZtCUOAYvyLFjDp3OBMGn3Ev8FwjzyPbIF0JUw+L7y2XR5\n' +
|
|
|
|
'RVGvbK88unV3cU/1tOYdNsXI6pSp/Ztjyv7vbBUAEQEAAc0pV2hpdGVvdXQg\n' +
|
|
|
|
'VXNlciA8d2hpdGVvdXQudGVzdEB0LW9ubGluZS5kZT7CXAQQAQgAEAUCUlhM\n' +
|
|
|
|
'vQkQ9vYOm0LN/0wAAAW4Af9C+kYW1AvNWmivdtr0M0iYCUjM9DNOQH1fcvXq\n' +
|
|
|
|
'IiN602mWrkd8jcEzLsW5IUNzVPLhrFIuKyBDTpLnC07Loce1\n' +
|
|
|
|
'=6XMW\n' +
|
|
|
|
'-----END PGP PUBLIC KEY BLOCK-----',
|
|
|
|
privkey = '-----BEGIN PGP PRIVATE KEY BLOCK-----\n' +
|
|
|
|
'Version: OpenPGP.js v.1.20131011\n' +
|
|
|
|
'Comment: http://openpgpjs.org\n' +
|
|
|
|
'\n' +
|
|
|
|
'xcBeBFJYTLwBAf9jGbQlDgGL8ixYw6dzgTBp9xL/BcI88j2yBdCVMPi+8tl0\n' +
|
|
|
|
'eUVRr2yvPLp1d3FP9bTmHTbFyOqUqf2bY8r+72wVABEBAAH+AwMIhNB4ivtv\n' +
|
|
|
|
'Y2xg6VeMcjjHxZayESHACV+nQx5Tx6ev6xzIF1Qh72fNPDppLhFSFOuTTMsU\n' +
|
|
|
|
'kTN4c+BVYt29spH+cA1jcDAxQ2ULrNAXo+hheOqhpedTs8aCbcLFkJAS16hk\n' +
|
|
|
|
'YSk4OnJgp/z24rVju1SHRSFbgundPzmNgXeX9e8IkviGhhQ11Wc5YwVkx03t\n' +
|
|
|
|
'Z3MdDMF0jyhopbPIoBdyJB0dhvBh98w3JmwpYh9wjUA9MBHD1tvHpRmSZ3BM\n' +
|
|
|
|
'UCmATn2ZLWBRWiYqFbgDnL1GM80pV2hpdGVvdXQgVXNlciA8d2hpdGVvdXQu\n' +
|
|
|
|
'dGVzdEB0LW9ubGluZS5kZT7CXAQQAQgAEAUCUlhMvQkQ9vYOm0LN/0wAAAW4\n' +
|
|
|
|
'Af9C+kYW1AvNWmivdtr0M0iYCUjM9DNOQH1fcvXqIiN602mWrkd8jcEzLsW5\n' +
|
|
|
|
'IUNzVPLhrFIuKyBDTpLnC07Loce1\n' +
|
|
|
|
'=ULta\n' +
|
|
|
|
'-----END PGP PRIVATE KEY BLOCK-----';
|
|
|
|
|
|
|
|
beforeEach(function() {
|
|
|
|
pgp = new PGP();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(function() {});
|
|
|
|
|
|
|
|
describe('Generate key pair', function() {
|
2013-10-11 15:54:43 -04:00
|
|
|
it('should fail', function(done) {
|
|
|
|
pgp.generateKeys({
|
|
|
|
emailAddress: 'whiteout.test@t-onlinede',
|
|
|
|
keySize: keySize,
|
|
|
|
passphrase: passphrase
|
|
|
|
}, function(err, keys) {
|
|
|
|
expect(err).to.exist;
|
|
|
|
expect(keys).to.not.exist;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('should fail', function(done) {
|
|
|
|
pgp.generateKeys({
|
|
|
|
emailAddress: 'whiteout.testt-online.de',
|
|
|
|
keySize: keySize,
|
|
|
|
passphrase: passphrase
|
|
|
|
}, function(err, keys) {
|
|
|
|
expect(err).to.exist;
|
|
|
|
expect(keys).to.not.exist;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2013-10-11 15:30:03 -04:00
|
|
|
it('should work', function(done) {
|
|
|
|
pgp.generateKeys({
|
|
|
|
emailAddress: user,
|
|
|
|
keySize: keySize,
|
|
|
|
passphrase: passphrase
|
|
|
|
}, function(err, keys) {
|
|
|
|
expect(err).to.not.exist;
|
|
|
|
expect(keys.keyId).to.exist;
|
|
|
|
expect(keys.privateKeyArmored).to.exist;
|
|
|
|
expect(keys.publicKeyArmored).to.exist;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Import/Export key pair', function() {
|
2013-10-11 16:10:50 -04:00
|
|
|
it('should fail', function(done) {
|
|
|
|
pgp.importKeys({
|
|
|
|
passphrase: 'asd',
|
|
|
|
privateKeyArmored: privkey,
|
|
|
|
publicKeyArmored: pubkey
|
|
|
|
}, function(err) {
|
|
|
|
expect(err).to.exist;
|
|
|
|
|
|
|
|
pgp.exportKeys(function(err, keys) {
|
|
|
|
expect(err).to.exist;
|
|
|
|
expect(keys).to.not.exist;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2013-10-11 15:30:03 -04:00
|
|
|
it('should work', function(done) {
|
|
|
|
pgp.importKeys({
|
|
|
|
passphrase: passphrase,
|
|
|
|
privateKeyArmored: privkey,
|
|
|
|
publicKeyArmored: pubkey
|
|
|
|
}, function(err) {
|
|
|
|
expect(err).to.not.exist;
|
|
|
|
|
|
|
|
pgp.exportKeys(function(err, keys) {
|
|
|
|
expect(err).to.not.exist;
|
|
|
|
expect(keys.keyId).to.equal(keyId);
|
|
|
|
expect(keys.privateKeyArmored).to.equal(privkey);
|
|
|
|
expect(keys.publicKeyArmored).to.equal(pubkey);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Encryption', function() {
|
|
|
|
var message = 'Hello, World!',
|
|
|
|
ciphertext;
|
|
|
|
|
|
|
|
beforeEach(function(done) {
|
|
|
|
pgp.importKeys({
|
|
|
|
passphrase: passphrase,
|
|
|
|
privateKeyArmored: privkey,
|
|
|
|
publicKeyArmored: pubkey
|
|
|
|
}, function(err) {
|
|
|
|
expect(err).to.not.exist;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2013-11-06 10:20:49 -05:00
|
|
|
describe('Get KeyId', function() {
|
|
|
|
it('should work', function() {
|
|
|
|
var keyId = pgp.getKeyId();
|
|
|
|
expect(keyId).to.equal('F6F60E9B42CDFF4C');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Get Fingerprint', function() {
|
2013-12-03 07:15:10 -05:00
|
|
|
it('should work without param', function() {
|
2013-11-06 10:20:49 -05:00
|
|
|
var fingerprint = pgp.getFingerprint();
|
|
|
|
expect(fingerprint).to.equal('5856CEF789C3A307E8A1B976F6F60E9B42CDFF4C');
|
|
|
|
});
|
2013-12-03 07:15:10 -05:00
|
|
|
|
|
|
|
it('should work with param', function() {
|
|
|
|
var fingerprint = pgp.getFingerprint(pubkey);
|
|
|
|
expect(fingerprint).to.equal('5856CEF789C3A307E8A1B976F6F60E9B42CDFF4C');
|
|
|
|
});
|
2013-11-06 10:20:49 -05:00
|
|
|
});
|
|
|
|
|
2013-10-11 15:30:03 -04:00
|
|
|
describe('Encrypt', function() {
|
2013-11-14 07:57:52 -05:00
|
|
|
it('should fail', function(done) {
|
|
|
|
var input = null;
|
|
|
|
|
|
|
|
pgp.encrypt(input, [pubkey], function(err, ct) {
|
|
|
|
expect(err).to.exist;
|
|
|
|
expect(ct).to.not.exist;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2013-10-11 15:30:03 -04:00
|
|
|
it('should work', function(done) {
|
|
|
|
pgp.encrypt(message, [pubkey], function(err, ct) {
|
|
|
|
expect(err).to.not.exist;
|
|
|
|
expect(ct).to.exist;
|
|
|
|
ciphertext = ct;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Decrypt', function() {
|
2013-11-14 07:57:52 -05:00
|
|
|
it('should fail', function(done) {
|
|
|
|
var input = 'asdfa\rsdf';
|
|
|
|
|
|
|
|
pgp.decrypt(input, pubkey, function(err, pt) {
|
|
|
|
expect(err).to.exist;
|
|
|
|
expect(pt).to.not.exist;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2013-10-11 15:30:03 -04:00
|
|
|
it('should work', function(done) {
|
|
|
|
pgp.decrypt(ciphertext, pubkey, function(err, pt) {
|
|
|
|
expect(err).to.not.exist;
|
|
|
|
expect(pt).to.equal(message);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|