From 1ce2df111929f5dd34e0378d72278011bdc5bc3c Mon Sep 17 00:00:00 2001 From: larabr <7375870+larabr@users.noreply.github.com> Date: Tue, 18 Jun 2024 16:36:31 +0200 Subject: [PATCH] Avoid using stream.clone over polyfilled steam in test Gives issues in Node and Safari < 14.1 --- test/general/streaming.js | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/test/general/streaming.js b/test/general/streaming.js index de5e1bd1..8cde4e59 100644 --- a/test/general/streaming.js +++ b/test/general/streaming.js @@ -654,16 +654,28 @@ function tests() { }); it('Detached sign/verify: support streamed input', async function() { - dataArrived(); + const getDataStream = () => (global.ReadableStream ? new global.ReadableStream({ + start(controller) { + controller.enqueue(util.stringToUint8Array('hello ')); + controller.enqueue(util.stringToUint8Array('world')); + controller.close(); + } + }) : new NodeReadableStream({ + read() { + this.push(util.stringToUint8Array('hello ')); + this.push(util.stringToUint8Array('world')); + this.push(null); + } + })); + const signed = await openpgp.sign({ - message: await openpgp.createMessage({ binary: stream.clone(data) }), + message: await openpgp.createMessage({ binary: getDataStream() }), signingKeys: privKey, config: { minRSABits: 1024 }, detached: true }); const armoredSignature = await stream.readToEnd(signed); - - const message = await openpgp.createMessage({ binary: data }); + const message = await openpgp.createMessage({ binary: getDataStream() }); const verified = await openpgp.verify({ message, signature: await openpgp.readSignature({ armoredSignature }), @@ -671,7 +683,7 @@ function tests() { format: 'binary', config: { minRSABits: 1024 } }); - expect(await stream.readToEnd(verified.data)).to.deep.equal(util.concatUint8Array(plaintext)); + expect(await stream.readToEnd(verified.data)).to.deep.equal(util.stringToUint8Array('hello world')); expect(verified.signatures).to.exist.and.have.length(1); expect(await verified.signatures[0].verified).to.be.true; });