Files
xahau.js/test/models/escrowFinish.ts
Mayukha Vadari 6eec7b0b77 refactor: move everything out of the common folder (#1629)
* remove common/constants (all in models now)

* remove common/txFlags (all in models now)

* move ecdsa from src/common to src

* move errors from src/common to src, export at top level
2021-10-04 14:10:13 -04:00

97 lines
2.4 KiB
TypeScript

import { assert } from 'chai'
import { validateEscrowFinish, validate, ValidationError } from 'xrpl-local'
/**
* EscrowFinish Transaction Verification Testing.
*
* Providing runtime verification testing for each specific transaction type.
*/
describe('EscrowFinish', function () {
let escrow
beforeEach(function () {
escrow = {
Account: 'rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn',
TransactionType: 'EscrowFinish',
Owner: 'rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn',
OfferSequence: 7,
Condition:
'A0258020E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855810100',
Fulfillment: 'A0028000',
}
})
it(`verifies valid EscrowFinish`, function () {
assert.doesNotThrow(() => validateEscrowFinish(escrow))
assert.doesNotThrow(() => validate(escrow))
})
it(`verifies valid EscrowFinish w/o optional`, function () {
delete escrow.Condition
delete escrow.Fulfillment
assert.doesNotThrow(() => validateEscrowFinish(escrow))
assert.doesNotThrow(() => validate(escrow))
})
it(`throws w/ invalid Owner`, function () {
escrow.Owner = 0x15415253
assert.throws(
() => validateEscrowFinish(escrow),
ValidationError,
'EscrowFinish: Owner must be a string',
)
assert.throws(
() => validate(escrow),
ValidationError,
'EscrowFinish: Owner must be a string',
)
})
it(`throws w/ invalid OfferSequence`, function () {
escrow.OfferSequence = '10'
assert.throws(
() => validateEscrowFinish(escrow),
ValidationError,
'EscrowFinish: OfferSequence must be a number',
)
assert.throws(
() => validate(escrow),
ValidationError,
'EscrowFinish: OfferSequence must be a number',
)
})
it(`throws w/ invalid Condition`, function () {
escrow.Condition = 10
assert.throws(
() => validateEscrowFinish(escrow),
ValidationError,
'EscrowFinish: Condition must be a string',
)
assert.throws(
() => validate(escrow),
ValidationError,
'EscrowFinish: Condition must be a string',
)
})
it(`throws w/ invalid Fulfillment`, function () {
escrow.Fulfillment = 0x142341
assert.throws(
() => validateEscrowFinish(escrow),
ValidationError,
'EscrowFinish: Fulfillment must be a string',
)
assert.throws(
() => validate(escrow),
ValidationError,
'EscrowFinish: Fulfillment must be a string',
)
})
})