Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: add model tests for new sidechain transactions #2059

Merged
merged 18 commits into from
Sep 25, 2023
Merged
161 changes: 161 additions & 0 deletions packages/xrpl/test/models/XChainAccountCreateCommit.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,161 @@
import { assert } from 'chai'

import { validate, ValidationError } from '../../src'
import { validateXChainAccountCreateCommit } from '../../src/models/transactions/XChainAccountCreateCommit'

/**
* XChainAccountCreateCommit Transaction Verification Testing.
*
* Providing runtime verification testing for each specific transaction type.
*/
describe('XChainAccountCreateCommit', function () {
let tx

beforeEach(function () {
tx = {
Account: 'rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh',
XChainBridge: {
ckniffen marked this conversation as resolved.
Show resolved Hide resolved
LockingChainDoor: 'rGzx83BVoqTYbGn7tiVAnFw7cbxjin13jL',
LockingChainIssue: {
currency: 'XRP',
},
IssuingChainDoor: 'r3kmLJN5D28dHuH8vZNUZpMC43pEHpaocV',
IssuingChainIssue: {
currency: 'XRP',
},
},
Amount: '1000000',
Fee: '10',
Flags: 2147483648,
Destination: 'rGzx83BVoqTYbGn7tiVAnFw7cbxjin13jL',
Sequence: 1,
SignatureReward: '10000',
TransactionType: 'XChainAccountCreateCommit',
} as any
})

it('verifies valid XChainAccountCreateCommit', function () {
assert.doesNotThrow(() => validateXChainAccountCreateCommit(tx))
assert.doesNotThrow(() => validate(tx))
})

it('throws w/ missing XChainBridge', function () {
delete tx.XChainBridge

assert.throws(
() => validateXChainAccountCreateCommit(tx),
ValidationError,
'XChainAccountCreateCommit: missing field XChainBridge',
)
assert.throws(
() => validate(tx),
ValidationError,
'XChainAccountCreateCommit: missing field XChainBridge',
)
})

it('throws w/ invalid XChainBridge', function () {
tx.XChainBridge = { XChainDoor: 'test' }

assert.throws(
() => validateXChainAccountCreateCommit(tx),
ValidationError,
'XChainAccountCreateCommit: invalid field XChainBridge',
)
assert.throws(
() => validate(tx),
ValidationError,
'XChainAccountCreateCommit: invalid field XChainBridge',
)
})

it('throws w/ missing SignatureReward', function () {
delete tx.SignatureReward

assert.throws(
() => validateXChainAccountCreateCommit(tx),
ValidationError,
'XChainAccountCreateCommit: missing field SignatureReward',
)
assert.throws(
() => validate(tx),
ValidationError,
'XChainAccountCreateCommit: missing field SignatureReward',
)
})

it('throws w/ invalid SignatureReward', function () {
tx.SignatureReward = { currency: 'ETH' }

assert.throws(
() => validateXChainAccountCreateCommit(tx),
ValidationError,
'XChainAccountCreateCommit: invalid field SignatureReward',
)
assert.throws(
() => validate(tx),
ValidationError,
'XChainAccountCreateCommit: invalid field SignatureReward',
)
})

it('throws w/ missing Destination', function () {
delete tx.Destination

assert.throws(
() => validateXChainAccountCreateCommit(tx),
ValidationError,
'XChainAccountCreateCommit: missing field Destination',
)
assert.throws(
() => validate(tx),
ValidationError,
'XChainAccountCreateCommit: missing field Destination',
)
})

it('throws w/ invalid Destination', function () {
tx.Destination = 123

assert.throws(
() => validateXChainAccountCreateCommit(tx),
ValidationError,
'XChainAccountCreateCommit: invalid field Destination',
)
assert.throws(
() => validate(tx),
ValidationError,
'XChainAccountCreateCommit: invalid field Destination',
)
})

it('throws w/ missing Amount', function () {
delete tx.Amount

assert.throws(
() => validateXChainAccountCreateCommit(tx),
ValidationError,
'XChainAccountCreateCommit: missing field Amount',
)
assert.throws(
() => validate(tx),
ValidationError,
'XChainAccountCreateCommit: missing field Amount',
)
})

it('throws w/ invalid Amount', function () {
tx.Amount = { currency: 'ETH' }

assert.throws(
() => validateXChainAccountCreateCommit(tx),
ValidationError,
'XChainAccountCreateCommit: invalid field Amount',
)
assert.throws(
() => validate(tx),
ValidationError,
'XChainAccountCreateCommit: invalid field Amount',
)
})
})
Loading