From af167f962b3d6346d73378d8a6c22948cdfb487c Mon Sep 17 00:00:00 2001 From: superical Date: Sun, 4 Feb 2024 01:28:19 +0800 Subject: [PATCH] fix: rpc internal message (#6) --- src/errors/handlers.ts | 3 +- test/index.test.ts | 100 +++++++++++++++++++++++++++++++---------- 2 files changed, 78 insertions(+), 25 deletions(-) diff --git a/src/errors/handlers.ts b/src/errors/handlers.ts index 8d820df..d21c8fb 100644 --- a/src/errors/handlers.ts +++ b/src/errors/handlers.ts @@ -119,6 +119,7 @@ export class RpcErrorHandler implements ErrorHandler { public handle(_data: string, { error }: ErrorHandlerErrorInfo): DecodedError { // eslint-disable-next-line @typescript-eslint/no-explicit-any const rpcError = error as any - return rpcErrorResult({ data: null, name: rpcError.code, reason: rpcError.message }) + const reason = rpcError.info?.error?.message ?? rpcError.shortMessage ?? rpcError.message + return rpcErrorResult({ data: null, name: rpcError.code, reason }) } } diff --git a/test/index.test.ts b/test/index.test.ts index 3ffac7d..71d035c 100644 --- a/test/index.test.ts +++ b/test/index.test.ts @@ -569,36 +569,88 @@ describe('ErrorDecoder', () => { }) describe('When reverted not due to contract errors', () => { - beforeEach(async () => { - try { - await contract.revertWithReason('Test message', { - gasLimit: 100000, - gasPrice: '1180820112192848923743894728934', - }) - expect.fail('Expected to revert') - } catch (e) { - decodedError = await errorDecoder.decode(e) - } - }) + describe('When decoding RPC errors', () => { + beforeEach(async () => { + try { + await contract.revertWithReason('Test message', { + gasLimit: 100000, + gasPrice: '1180820112192848923743894728934', + }) + expect.fail('Expected to revert') + } catch (e) { + decodedError = await errorDecoder.decode(e) + } + }) - it('should return error type as RpcError', async () => { - expect(decodedError.type).to.equal(ErrorType.RpcError) - }) + it('should return error type as RpcError', async () => { + expect(decodedError.type).to.equal(ErrorType.RpcError) + }) - it('should return error code as name', async () => { - expect(decodedError.name).to.equal('-32000') - }) + it('should return error code as name', async () => { + expect(decodedError.name).to.equal('-32000') + }) - it('should return the error reason', async () => { - expect(decodedError.reason).to.contain("sender doesn't have enough funds to send tx") - }) + it('should return the error reason', async () => { + expect(decodedError.reason).to.contain("sender doesn't have enough funds to send tx") + }) - it('should return data as null', async () => { - expect(decodedError.data).to.be.null + it('should return data as null', async () => { + expect(decodedError.data).to.be.null + }) + + it('should return empty args', async () => { + expect(decodedError.args.length).to.equal(0) + }) }) - it('should return empty args', async () => { - expect(decodedError.args.length).to.equal(0) + describe('When obtaining the error message in RPC errors', () => { + const FakeRpcError = class extends Error { + public constructor( + public code?: string, + public info?: { error: { code: number; message: string } }, + public shortMessage?: string, + ) { + super('Fake error object message') + } + } + + let fakeRpcError = new FakeRpcError() + + beforeEach(async () => { + fakeRpcError = new FakeRpcError( + 'INSUFFICIENT_FUNDS', + { + error: { + code: -32000, + message: 'insufficient funds for gas * price + value: balance 0', + }, + }, + 'insufficient funds for intrinsic transaction cost', + ) + }) + + it('should use long error message if exists', async () => { + decodedError = await errorDecoder.decode(fakeRpcError) + + expect(decodedError.reason).to.equal(fakeRpcError.info.error.message) + }) + + it('should use short message if long error message does not exist', async () => { + fakeRpcError.info = undefined + + decodedError = await errorDecoder.decode(fakeRpcError) + + expect(decodedError.reason).to.equal(fakeRpcError.shortMessage) + }) + + it('should fallback to using message in error object', async () => { + fakeRpcError.info = undefined + fakeRpcError.shortMessage = undefined + + decodedError = await errorDecoder.decode(fakeRpcError) + + expect(decodedError.reason).to.equal(fakeRpcError.message) + }) }) })