Fix multiple workers
This commit is contained in:
parent
438d47f634
commit
6f176f8b30
|
@ -135,7 +135,7 @@ AsyncProxy.prototype.delegate = function(method, options) {
|
|||
|
||||
const id = this.getID();
|
||||
const requests = this.workers.map(worker => worker.requests);
|
||||
const minRequests = Math.min(requests);
|
||||
const minRequests = Math.min(...requests);
|
||||
let workerId = 0;
|
||||
for(; workerId < this.workers.length; workerId++) {
|
||||
if (this.workers[workerId].requests === minRequests) {
|
||||
|
|
|
@ -744,6 +744,40 @@ describe('OpenPGP.js public api tests', function() {
|
|||
});
|
||||
});
|
||||
|
||||
it('Test multiple workers', async function() {
|
||||
openpgp.config.show_version = false;
|
||||
openpgp.config.commentstring = 'different';
|
||||
if (!openpgp.getWorker()) {
|
||||
return;
|
||||
}
|
||||
const { workers } = openpgp.getWorker();
|
||||
try {
|
||||
await privateKey.keys[0].decrypt(passphrase)
|
||||
openpgp.initWorker({path: '../dist/openpgp.worker.js', workers, n: 2});
|
||||
|
||||
const workerTest = (_, index) => {
|
||||
const plaintext = input.createSomeMessage() + index + '\n한국어/조선말';
|
||||
return openpgp.encrypt({
|
||||
publicKeys: publicKey.keys,
|
||||
data: plaintext
|
||||
}).then(function (encrypted) {
|
||||
expect(encrypted.data).to.exist;
|
||||
expect(encrypted.data).not.to.match(/^Version:/);
|
||||
expect(encrypted.data).to.match(/Comment: different/);
|
||||
return openpgp.decrypt({
|
||||
privateKeys: privateKey.keys[0],
|
||||
message: openpgp.message.readArmored(encrypted.data)
|
||||
});
|
||||
}).then(function (decrypted) {
|
||||
expect(decrypted.data).to.equal(plaintext);
|
||||
});
|
||||
};
|
||||
await Promise.all(Array(10).fill(null).map(workerTest));
|
||||
} finally {
|
||||
openpgp.initWorker({path: '../dist/openpgp.worker.js', workers, n: 1 });
|
||||
}
|
||||
});
|
||||
|
||||
it('Calling decrypt with not decrypted key leads to exception', function() {
|
||||
const encOpt = {
|
||||
data: plaintext,
|
||||
|
|
Loading…
Reference in New Issue
Block a user