refactor: Define EscrowCreate transaction model (#1530)

refactor: Define EscrowCreate transaction model (#1530)
This commit is contained in:
Nathan Nichols
2021-08-19 11:20:44 -05:00
committed by Mayukha Vadari
parent 4469d1cbf8
commit db8f7c1bcb
4 changed files with 189 additions and 3 deletions

View File

@@ -0,0 +1,53 @@
import { ValidationError } from "../../common/errors"
import { BaseTransaction, verifyBaseTransaction } from "./common"
export interface EscrowCreate extends BaseTransaction {
TransactionType: "EscrowCreate"
Amount: string
Destination: string
CancelAfter?: number
FinishAfter?: number
Condition?: string
DestinationTag?: number
}
/**
* Verify the form and type of an EscrowCreate at runtime.
*
* @param tx - An EscrowCreate Transaction
* @returns - Void.
* @throws - When the EscrowCreate is Malformed.
*/
export function verifyEscrowCreate(tx: EscrowCreate): void {
verifyBaseTransaction(tx)
if (tx.Amount === undefined)
throw new ValidationError("EscrowCreate: missing field Amount")
if (typeof tx.Amount !== 'string')
throw new ValidationError("EscrowCreate: Amount must be a string")
if (tx.Destination === undefined)
throw new ValidationError("EscrowCreate: missing field Destination")
if (typeof tx.Destination !== 'string')
throw new ValidationError("EscrowCreate: Destination must be a string")
if (tx.CancelAfter === undefined && tx.FinishAfter === undefined)
throw new ValidationError("EscrowCreate: Either CancelAfter or FinishAfter must be specified")
if (tx.FinishAfter === undefined && tx.Condition === undefined)
throw new ValidationError("EscrowCreate: Either Condition or FinishAfter must be specified")
if (tx.CancelAfter !== undefined && typeof tx.CancelAfter !== 'number')
throw new ValidationError("EscrowCreate: CancelAfter must be a number")
if (tx.FinishAfter !== undefined && typeof tx.FinishAfter !== 'number')
throw new ValidationError("EscrowCreate: FinishAfter must be a number")
if (tx.Condition !== undefined && typeof tx.Condition !== 'string')
throw new ValidationError("EscrowCreate: Condition must be a string")
if (tx.DestinationTag !== undefined && typeof tx.DestinationTag !== 'number')
throw new ValidationError("EscrowCreate: DestinationTag must be a number")
}

View File

@@ -4,10 +4,9 @@ export * from './accountDelete'
export * from './checkCancel' export * from './checkCancel'
export * from './checkCash' export * from './checkCash'
export * from './checkCreate' export * from './checkCreate'
export * from './signerListSet'
export * from './ticketCreate'
export * from './depositPreauth' export * from './depositPreauth'
export * from './escrowCancel' export * from './escrowCancel'
export * from './escrowCreate'
export * from './escrowFinish' export * from './escrowFinish'
export * from './offerCancel' export * from './offerCancel'
export * from './offerCreate' export * from './offerCreate'
@@ -15,4 +14,5 @@ export * from './paymentTransaction'
export * from './paymentChannelClaim' export * from './paymentChannelClaim'
export * from './paymentChannelCreate' export * from './paymentChannelCreate'
export * from './signerListSet' export * from './signerListSet'
export * from './ticketCreate'
export * from './trustSet' export * from './trustSet'

View File

@@ -5,6 +5,7 @@ import { CheckCancel } from "./checkCancel";
import { CheckCash } from "./checkCash"; import { CheckCash } from "./checkCash";
import { CheckCreate } from "./checkCreate"; import { CheckCreate } from "./checkCreate";
import { DepositPreauth } from "./depositPreauth" import { DepositPreauth } from "./depositPreauth"
import { EscrowCreate } from "./escrowCreate"
import { EscrowCancel } from './escrowCancel' import { EscrowCancel } from './escrowCancel'
import { EscrowFinish } from "./escrowFinish" import { EscrowFinish } from "./escrowFinish"
import { OfferCancel } from "./offerCancel" import { OfferCancel } from "./offerCancel"
@@ -24,7 +25,7 @@ export type Transaction =
| CheckCreate | CheckCreate
| DepositPreauth | DepositPreauth
| EscrowCancel | EscrowCancel
// | EscrowCreate | EscrowCreate
| EscrowFinish | EscrowFinish
| OfferCancel | OfferCancel
| OfferCreate | OfferCreate

132
test/models/escrowCreate.ts Normal file
View File

@@ -0,0 +1,132 @@
import { ValidationError } from 'xrpl-local/common/errors'
import { verifyEscrowCreate } from './../../src/models/transactions/escrowCreate'
import { assert } from 'chai'
/**
* EscrowCreate Transaction Verification Testing
*
* Providing runtime verification testing for each specific transaction type
*/
describe('EscrowCreate Transaction Verification', function () {
let escrow
beforeEach(() => {
escrow = {
Account: "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn",
TransactionType: "EscrowCreate",
Amount: "10000",
Destination: "rsA2LpzuawewSBQXkiju3YQTMzW13pAAdW",
CancelAfter: 533257958,
FinishAfter: 533171558,
Condition: "A0258020E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855810100",
DestinationTag: 23480,
SourceTag: 11747
}
})
it (`verifies valid EscrowCreate`, () => {
assert.doesNotThrow(() => verifyEscrowCreate(escrow))
})
it (`Missing amount`, () => {
delete escrow.Amount
assert.throws(
() => verifyEscrowCreate(escrow),
ValidationError,
"EscrowCreate: missing field Amount"
)
})
it (`Missing destination`, () => {
delete escrow.Destination
assert.throws(
() => verifyEscrowCreate(escrow),
ValidationError,
"EscrowCreate: missing field Destination"
)
})
it (`throws w/ invalid Destination`, () => {
escrow.Destination = 10
assert.throws(
() => verifyEscrowCreate(escrow),
ValidationError,
"EscrowCreate: Destination must be a string"
)
})
it (`throws w/ invalid Amount`, () => {
escrow.Amount = 1000
assert.throws(
() => verifyEscrowCreate(escrow),
ValidationError,
"EscrowCreate: Amount must be a string"
)
})
it (`invalid CancelAfter`, () => {
escrow.CancelAfter = "100"
assert.throws(
() => verifyEscrowCreate(escrow),
ValidationError,
"EscrowCreate: CancelAfter must be a number"
)
})
it (`invalid FinishAfter`, () => {
escrow.FinishAfter = "1000"
assert.throws(
() => verifyEscrowCreate(escrow),
ValidationError,
"EscrowCreate: FinishAfter must be a number"
)
})
it (`invalid Condition`, () => {
escrow.Condition = 0x141243
assert.throws(
() => verifyEscrowCreate(escrow),
ValidationError,
"EscrowCreate: Condition must be a string"
)
})
it (`invalid DestinationTag`, () => {
escrow.DestinationTag = "100"
assert.throws(
() => verifyEscrowCreate(escrow),
ValidationError,
"EscrowCreate: DestinationTag must be a number"
)
})
it (`Missing both CancelAfter and FinishAfter`, () => {
delete escrow.CancelAfter
delete escrow.FinishAfter
assert.throws(
() => verifyEscrowCreate(escrow),
ValidationError,
"EscrowCreate: Either CancelAfter or FinishAfter must be specified"
)
})
it (`Missing both Condition and FinishAfter`, () => {
delete escrow.Condition
delete escrow.FinishAfter
assert.throws(
() => verifyEscrowCreate(escrow),
ValidationError,
"EscrowCreate: Either Condition or FinishAfter must be specified"
)
})
})