fix worker instance misconfiguration

This commit is contained in:
Sergey Ratiashvili 2014-10-24 22:15:35 +04:00 committed by Tankred Hase
parent 1cc3f4fe2e
commit c9e019d20e
3 changed files with 20 additions and 1 deletions

View File

@ -54,6 +54,7 @@ function AsyncProxy(path, options) {
this.seedRandom(INITIAL_RANDOM_SEED);
// FIFO
this.tasks = [];
this.worker.postMessage({event: 'configure', config: config});
}
/**

View File

@ -53,6 +53,11 @@ self.onmessage = function (event) {
correct = false;
switch (msg.event) {
case 'configure':
for(var i in msg.config){
window.openpgp.config[i] = msg.config[i];
}
break;
case 'seed-random':
if (!(msg.buf instanceof Uint8Array)) {
msg.buf = new Uint8Array(msg.buf);

View File

@ -200,8 +200,21 @@ describe('High level API', function() {
initKeys();
});
describe('Encryption', function() {
describe('Main', function(){
it('Configuration', function(done){
openpgp.config.show_comment = false;
openpgp.config.show_version = false;
openpgp.initWorker('../dist/openpgp.worker.js');
openpgp.encryptMessage([pubKeyRSA], plaintext).then(function(data) {
expect(data).to.exist;
expect(data).not.to.match(/^Version:/);
expect(data).not.to.match(/^Comment:/);
done();
});
});
});
describe('Encryption', function() {
it('RSA: encryptMessage async', function (done) {
openpgp.encryptMessage([pubKeyRSA], plaintext).then(function(data) {
expect(data).to.exist;