Files
xahau.js/test/client/submitSignedTransaction.ts
Mayukha Vadari 43c71f4d9b feat: reliable submission for transactions (#1704)
* implement relsub

* add tests

* clean up

* remove `transaction` from method names

* remove early success check
2021-10-08 10:27:55 -07:00

70 lines
2.6 KiB
TypeScript

import { assert } from 'chai'
import { ValidationError } from 'xrpl-local'
import { Transaction } from 'xrpl-local/models/transactions'
import rippled from '../fixtures/rippled'
import { setupClient, teardownClient } from '../setupClient'
import { assertRejects } from '../testUtils'
describe('client.submitSigned', function () {
beforeEach(setupClient)
afterEach(teardownClient)
const signedTransaction: Transaction = {
TransactionType: 'Payment',
Sequence: 1,
LastLedgerSequence: 12312,
Amount: '20000000',
Fee: '12',
SigningPubKey:
'030E58CDD076E798C84755590AAF6237CA8FAE821070A59F648B517A30DC6F589D',
TxnSignature:
'3045022100B3D311371EDAB371CD8F2B661A04B800B61D4B132E09B7B0712D3B2F11B1758302203906B44C4A150311D74FF6A35B146763C0B5B40AC30BD815113F058AA17B3E63',
Account: 'rhvh5SrgBL5V8oeV9EpDuVszeJSSCEkbPc',
Destination: 'rQ3PTWGLCbPz8ZCicV5tCX3xuymojTng5r',
}
it('should submit a signed transaction', async function () {
const signedTx: Transaction = { ...signedTransaction }
this.mockRippled.addResponse('submit', rippled.submit.success)
try {
const response = await this.client.submitSigned(signedTx)
assert(response.result.engine_result, 'tesSUCCESS')
} catch (_error) {
assert(false, 'Did not expect an error to be thrown')
}
})
it("should submit a signed transaction that's already encoded", async function () {
const signedTxEncoded =
'1200002400000001201B00003018614000000001312D0068400000000000000C7321030E58CDD076E798C84755590AAF6237CA8FAE821070A59F648B517A30DC6F589D74473045022100B3D311371EDAB371CD8F2B661A04B800B61D4B132E09B7B0712D3B2F11B1758302203906B44C4A150311D74FF6A35B146763C0B5B40AC30BD815113F058AA17B3E6381142AF1861DEC1316AEEC995C94FF9E2165B1B784608314FDB08D07AAA0EB711793A3027304D688E10C3648'
this.mockRippled.addResponse('submit', rippled.submit.success)
try {
const response = await this.client.submitSigned(signedTxEncoded)
assert(response.result.engine_result, 'tesSUCCESS')
} catch (error) {
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions -- error type thrown can be any
assert(false, `Did not expect an error to be thrown: ${error}`)
}
})
it('should throw a ValidationError when submitting an unsigned transaction', async function () {
const signedTx: Transaction = { ...signedTransaction }
delete signedTx.SigningPubKey
delete signedTx.TxnSignature
this.mockRippled.addResponse('submit', rippled.submit.success)
await assertRejects(
this.client.submitSigned(signedTx),
ValidationError,
'Transaction must be signed',
)
})
})