fix worker instance misconfiguration
This commit is contained in:
parent
1cc3f4fe2e
commit
c9e019d20e
|
@ -54,6 +54,7 @@ function AsyncProxy(path, options) {
|
|||
this.seedRandom(INITIAL_RANDOM_SEED);
|
||||
// FIFO
|
||||
this.tasks = [];
|
||||
this.worker.postMessage({event: 'configure', config: config});
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue
Block a user