Fix signInputAsync when SignerAsync rejects
Co-authored-by: Zhang Zengbo <zengbo.zhang@gmail.com>
This commit is contained in:
parent
9e2a8fe45a
commit
65d7603cf7
3 changed files with 91 additions and 40 deletions
test
|
@ -1,7 +1,14 @@
|
|||
import * as assert from 'assert';
|
||||
import { describe, it } from 'mocha';
|
||||
|
||||
import { bip32, ECPair, networks as NETWORKS, Psbt } from '..';
|
||||
import {
|
||||
bip32,
|
||||
ECPair,
|
||||
networks as NETWORKS,
|
||||
Psbt,
|
||||
Signer,
|
||||
SignerAsync,
|
||||
} from '..';
|
||||
|
||||
import * as preFixtures from './fixtures/psbt.json';
|
||||
|
||||
|
@ -22,6 +29,40 @@ const fixtures = initBuffers(preFixtures);
|
|||
const upperCaseFirstLetter = (str: string): string =>
|
||||
str.replace(/^./, s => s.toUpperCase());
|
||||
|
||||
const toAsyncSigner = (signer: Signer): SignerAsync => {
|
||||
const ret: SignerAsync = {
|
||||
publicKey: signer.publicKey,
|
||||
sign: (hash: Buffer, lowerR: boolean | undefined): Promise<Buffer> => {
|
||||
return new Promise(
|
||||
(resolve, rejects): void => {
|
||||
setTimeout(() => {
|
||||
try {
|
||||
const r = signer.sign(hash, lowerR);
|
||||
resolve(r);
|
||||
} catch (e) {
|
||||
rejects(e);
|
||||
}
|
||||
}, 10);
|
||||
},
|
||||
);
|
||||
},
|
||||
};
|
||||
return ret;
|
||||
};
|
||||
const failedAsyncSigner = (publicKey: Buffer): SignerAsync => {
|
||||
return {
|
||||
publicKey,
|
||||
sign: (__: Buffer): Promise<Buffer> => {
|
||||
return new Promise(
|
||||
(_, reject): void => {
|
||||
setTimeout(() => {
|
||||
reject(new Error('sign failed'));
|
||||
}, 10);
|
||||
},
|
||||
);
|
||||
},
|
||||
};
|
||||
};
|
||||
// const b = (hex: string) => Buffer.from(hex, 'hex');
|
||||
|
||||
describe(`Psbt`, () => {
|
||||
|
@ -164,25 +205,39 @@ describe(`Psbt`, () => {
|
|||
it(f.description, async () => {
|
||||
if (f.shouldSign) {
|
||||
const psbtThatShouldsign = Psbt.fromBase64(f.shouldSign.psbt);
|
||||
assert.doesNotReject(async () => {
|
||||
await assert.doesNotReject(async () => {
|
||||
await psbtThatShouldsign.signInputAsync(
|
||||
f.shouldSign.inputToCheck,
|
||||
ECPair.fromWIF(f.shouldSign.WIF),
|
||||
f.shouldSign.sighashTypes || undefined,
|
||||
);
|
||||
});
|
||||
await assert.rejects(async () => {
|
||||
await psbtThatShouldsign.signInputAsync(
|
||||
f.shouldSign.inputToCheck,
|
||||
failedAsyncSigner(ECPair.fromWIF(f.shouldSign.WIF).publicKey),
|
||||
f.shouldSign.sighashTypes || undefined,
|
||||
);
|
||||
}, /sign failed/);
|
||||
}
|
||||
|
||||
if (f.shouldThrow) {
|
||||
const psbtThatShouldThrow = Psbt.fromBase64(f.shouldThrow.psbt);
|
||||
assert.rejects(async () => {
|
||||
await assert.rejects(async () => {
|
||||
await psbtThatShouldThrow.signInputAsync(
|
||||
f.shouldThrow.inputToCheck,
|
||||
ECPair.fromWIF(f.shouldThrow.WIF),
|
||||
(f.shouldThrow as any).sighashTypes || undefined,
|
||||
);
|
||||
}, new RegExp(f.shouldThrow.errorMessage));
|
||||
assert.rejects(async () => {
|
||||
await assert.rejects(async () => {
|
||||
await psbtThatShouldThrow.signInputAsync(
|
||||
f.shouldThrow.inputToCheck,
|
||||
toAsyncSigner(ECPair.fromWIF(f.shouldThrow.WIF)),
|
||||
(f.shouldThrow as any).sighashTypes || undefined,
|
||||
);
|
||||
}, new RegExp(f.shouldThrow.errorMessage));
|
||||
await assert.rejects(async () => {
|
||||
await (psbtThatShouldThrow.signInputAsync as any)(
|
||||
f.shouldThrow.inputToCheck,
|
||||
);
|
||||
|
@ -229,7 +284,7 @@ describe(`Psbt`, () => {
|
|||
it(f.description, async () => {
|
||||
if (f.shouldSign) {
|
||||
const psbtThatShouldsign = Psbt.fromBase64(f.shouldSign.psbt);
|
||||
assert.doesNotReject(async () => {
|
||||
await assert.doesNotReject(async () => {
|
||||
await psbtThatShouldsign.signAllInputsAsync(
|
||||
ECPair.fromWIF(f.shouldSign.WIF),
|
||||
f.shouldSign.sighashTypes || undefined,
|
||||
|
@ -239,13 +294,13 @@ describe(`Psbt`, () => {
|
|||
|
||||
if (f.shouldThrow) {
|
||||
const psbtThatShouldThrow = Psbt.fromBase64(f.shouldThrow.psbt);
|
||||
assert.rejects(async () => {
|
||||
await assert.rejects(async () => {
|
||||
await psbtThatShouldThrow.signAllInputsAsync(
|
||||
ECPair.fromWIF(f.shouldThrow.WIF),
|
||||
(f.shouldThrow as any).sighashTypes || undefined,
|
||||
);
|
||||
}, new RegExp('No inputs were signed'));
|
||||
assert.rejects(async () => {
|
||||
await assert.rejects(async () => {
|
||||
await (psbtThatShouldThrow.signAllInputsAsync as any)();
|
||||
}, new RegExp('Need Signer to sign input'));
|
||||
}
|
||||
|
@ -288,7 +343,7 @@ describe(`Psbt`, () => {
|
|||
it(f.description, async () => {
|
||||
if (f.shouldSign) {
|
||||
const psbtThatShouldsign = Psbt.fromBase64(f.shouldSign.psbt);
|
||||
assert.doesNotReject(async () => {
|
||||
await assert.doesNotReject(async () => {
|
||||
await psbtThatShouldsign.signInputHDAsync(
|
||||
f.shouldSign.inputToCheck,
|
||||
bip32.fromBase58(f.shouldSign.xprv),
|
||||
|
@ -299,14 +354,14 @@ describe(`Psbt`, () => {
|
|||
|
||||
if (f.shouldThrow) {
|
||||
const psbtThatShouldThrow = Psbt.fromBase64(f.shouldThrow.psbt);
|
||||
assert.rejects(async () => {
|
||||
await assert.rejects(async () => {
|
||||
await psbtThatShouldThrow.signInputHDAsync(
|
||||
f.shouldThrow.inputToCheck,
|
||||
bip32.fromBase58(f.shouldThrow.xprv),
|
||||
(f.shouldThrow as any).sighashTypes || undefined,
|
||||
);
|
||||
}, new RegExp(f.shouldThrow.errorMessage));
|
||||
assert.rejects(async () => {
|
||||
await assert.rejects(async () => {
|
||||
await (psbtThatShouldThrow.signInputHDAsync as any)(
|
||||
f.shouldThrow.inputToCheck,
|
||||
);
|
||||
|
@ -354,7 +409,7 @@ describe(`Psbt`, () => {
|
|||
it(f.description, async () => {
|
||||
if (f.shouldSign) {
|
||||
const psbtThatShouldsign = Psbt.fromBase64(f.shouldSign.psbt);
|
||||
assert.doesNotReject(async () => {
|
||||
await assert.doesNotReject(async () => {
|
||||
await psbtThatShouldsign.signAllInputsHDAsync(
|
||||
bip32.fromBase58(f.shouldSign.xprv),
|
||||
(f.shouldSign as any).sighashTypes || undefined,
|
||||
|
@ -364,13 +419,13 @@ describe(`Psbt`, () => {
|
|||
|
||||
if (f.shouldThrow) {
|
||||
const psbtThatShouldThrow = Psbt.fromBase64(f.shouldThrow.psbt);
|
||||
assert.rejects(async () => {
|
||||
await assert.rejects(async () => {
|
||||
await psbtThatShouldThrow.signAllInputsHDAsync(
|
||||
bip32.fromBase58(f.shouldThrow.xprv),
|
||||
(f.shouldThrow as any).sighashTypes || undefined,
|
||||
);
|
||||
}, new RegExp('No inputs were signed'));
|
||||
assert.rejects(async () => {
|
||||
await assert.rejects(async () => {
|
||||
await (psbtThatShouldThrow.signAllInputsHDAsync as any)();
|
||||
}, new RegExp('Need HDSigner to sign input'));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue