mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-12-06 17:27:59 +00:00
chore: rename test files (#2181)
This commit is contained in:
284
packages/xrpl/test/integration/regularKey.test.ts
Normal file
284
packages/xrpl/test/integration/regularKey.test.ts
Normal file
@@ -0,0 +1,284 @@
|
||||
import { assert } from 'chai'
|
||||
import _ from 'lodash'
|
||||
import {
|
||||
AccountSet,
|
||||
Client,
|
||||
SignerListSet,
|
||||
SetRegularKey,
|
||||
Wallet,
|
||||
AccountSetAsfFlags,
|
||||
OfferCreate,
|
||||
} from 'xrpl-local'
|
||||
import { convertStringToHex } from 'xrpl-local/utils'
|
||||
import { multisign } from 'xrpl-local/Wallet/signer'
|
||||
|
||||
import serverUrl from './serverUrl'
|
||||
import { setupClient, teardownClient } from './setup'
|
||||
import {
|
||||
generateFundedWallet,
|
||||
ledgerAccept,
|
||||
testTransaction,
|
||||
verifySubmittedTransaction,
|
||||
} from './utils'
|
||||
|
||||
// how long before each test case times out
|
||||
const TIMEOUT = 20000
|
||||
|
||||
async function generateFundedWalletWithRegularKey(
|
||||
client: Client,
|
||||
disableMasterKey = false,
|
||||
): Promise<{ masterWallet: Wallet; regularKeyWallet: Wallet }> {
|
||||
const regularKeyInfo = {
|
||||
seed: 'snoPBrXtMeMyMHUVTgbuqAfg1SUTb',
|
||||
accountId: 'rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh',
|
||||
}
|
||||
|
||||
const masterWallet = await generateFundedWallet(client)
|
||||
|
||||
const regularKeyWallet = Wallet.fromSeed(regularKeyInfo.seed, {
|
||||
masterAddress: masterWallet.address,
|
||||
})
|
||||
|
||||
const setRegularTx: SetRegularKey = {
|
||||
TransactionType: 'SetRegularKey',
|
||||
Account: masterWallet.address,
|
||||
RegularKey: regularKeyInfo.accountId,
|
||||
}
|
||||
|
||||
// Add a regular key to the first account
|
||||
await client.submit(setRegularTx, { wallet: masterWallet })
|
||||
|
||||
if (disableMasterKey) {
|
||||
const accountSet: AccountSet = {
|
||||
TransactionType: 'AccountSet',
|
||||
Account: masterWallet.classicAddress,
|
||||
SetFlag: AccountSetAsfFlags.asfDisableMaster,
|
||||
}
|
||||
|
||||
await testTransaction(client, accountSet, masterWallet)
|
||||
}
|
||||
|
||||
return { masterWallet, regularKeyWallet }
|
||||
}
|
||||
|
||||
describe('regular key', function () {
|
||||
this.timeout(TIMEOUT)
|
||||
|
||||
beforeEach(_.partial(setupClient, serverUrl))
|
||||
afterEach(teardownClient)
|
||||
|
||||
it('sign and submit with a regular key', async function () {
|
||||
const regularKeyWallet = (
|
||||
await generateFundedWalletWithRegularKey(this.client)
|
||||
).regularKeyWallet
|
||||
|
||||
const accountSet: AccountSet = {
|
||||
TransactionType: 'AccountSet',
|
||||
Account: regularKeyWallet.classicAddress,
|
||||
Domain: convertStringToHex('example.com'),
|
||||
}
|
||||
|
||||
testTransaction(this.client, accountSet, regularKeyWallet)
|
||||
})
|
||||
|
||||
it('sign and submit using the master key of an account with a regular key', async function () {
|
||||
const masterWallet = (await generateFundedWalletWithRegularKey(this.client))
|
||||
.masterWallet
|
||||
|
||||
const accountSet: AccountSet = {
|
||||
TransactionType: 'AccountSet',
|
||||
Account: masterWallet.classicAddress,
|
||||
Domain: convertStringToHex('example.com'),
|
||||
}
|
||||
|
||||
testTransaction(this.client, accountSet, masterWallet)
|
||||
})
|
||||
|
||||
it('try to sign with master key after disabling', async function () {
|
||||
const masterWallet = (
|
||||
await generateFundedWalletWithRegularKey(this.client, true)
|
||||
).masterWallet
|
||||
|
||||
const tx: OfferCreate = {
|
||||
TransactionType: 'OfferCreate',
|
||||
Account: masterWallet.classicAddress,
|
||||
TakerGets: '13100000',
|
||||
TakerPays: {
|
||||
currency: 'USD',
|
||||
issuer: masterWallet.classicAddress,
|
||||
value: '10',
|
||||
},
|
||||
}
|
||||
|
||||
const client: Client = this.client
|
||||
const response = await client.submit(tx, { wallet: masterWallet })
|
||||
assert.equal(
|
||||
response.result.engine_result,
|
||||
'tefMASTER_DISABLED',
|
||||
'Master key was disabled, yet the master key still was able to sign and submit a transaction',
|
||||
)
|
||||
})
|
||||
|
||||
it('sign with regular key after disabling the master key', async function () {
|
||||
const regularKeyWallet = (
|
||||
await generateFundedWalletWithRegularKey(this.client, true)
|
||||
).regularKeyWallet
|
||||
|
||||
const tx: OfferCreate = {
|
||||
TransactionType: 'OfferCreate',
|
||||
Account: regularKeyWallet.classicAddress,
|
||||
TakerGets: '13100000',
|
||||
TakerPays: {
|
||||
currency: 'USD',
|
||||
issuer: regularKeyWallet.classicAddress,
|
||||
value: '10',
|
||||
},
|
||||
}
|
||||
|
||||
await testTransaction(this.client, tx, regularKeyWallet)
|
||||
})
|
||||
|
||||
it('try to enable and disable a regular key', async function () {
|
||||
const wallets = await generateFundedWalletWithRegularKey(this.client, true)
|
||||
const masterWallet = wallets.masterWallet
|
||||
const regularKeyWallet = wallets.regularKeyWallet
|
||||
|
||||
const enableMasterKey: AccountSet = {
|
||||
TransactionType: 'AccountSet',
|
||||
Account: masterWallet.classicAddress,
|
||||
ClearFlag: AccountSetAsfFlags.asfDisableMaster,
|
||||
}
|
||||
|
||||
const client: Client = this.client
|
||||
const response = await client.submit(enableMasterKey, {
|
||||
wallet: masterWallet,
|
||||
})
|
||||
assert.equal(
|
||||
response.result.engine_result,
|
||||
'tefMASTER_DISABLED',
|
||||
'Master key was disabled, yet the master key still was able to sign and submit a transaction',
|
||||
)
|
||||
|
||||
await testTransaction(client, enableMasterKey, regularKeyWallet)
|
||||
|
||||
const turnOffRegularKey: SetRegularKey = {
|
||||
TransactionType: 'SetRegularKey',
|
||||
Account: masterWallet.address,
|
||||
}
|
||||
|
||||
await testTransaction(this.client, turnOffRegularKey, masterWallet)
|
||||
|
||||
const tx: OfferCreate = {
|
||||
TransactionType: 'OfferCreate',
|
||||
Account: regularKeyWallet.classicAddress,
|
||||
TakerGets: '13100000',
|
||||
TakerPays: {
|
||||
currency: 'USD',
|
||||
issuer: regularKeyWallet.classicAddress,
|
||||
value: '10',
|
||||
},
|
||||
}
|
||||
|
||||
const response2 = await client.submit(tx, { wallet: regularKeyWallet })
|
||||
assert.equal(
|
||||
response2.result.engine_result,
|
||||
'tefBAD_AUTH',
|
||||
'Regular key should have been disabled, but somehow was still able to sign and submit a transaction.',
|
||||
)
|
||||
})
|
||||
|
||||
it('submit_multisigned transaction with regular keys set', async function () {
|
||||
const client: Client = this.client
|
||||
|
||||
const regularKeyWallet = (await generateFundedWalletWithRegularKey(client))
|
||||
.regularKeyWallet
|
||||
const signerWallet2 = await generateFundedWallet(this.client)
|
||||
|
||||
// set up the multisigners for the account
|
||||
const signerListSet: SignerListSet = {
|
||||
TransactionType: 'SignerListSet',
|
||||
Account: this.wallet.classicAddress,
|
||||
SignerEntries: [
|
||||
{
|
||||
SignerEntry: {
|
||||
Account: regularKeyWallet.classicAddress,
|
||||
SignerWeight: 1,
|
||||
},
|
||||
},
|
||||
{
|
||||
SignerEntry: {
|
||||
Account: signerWallet2.classicAddress,
|
||||
SignerWeight: 1,
|
||||
},
|
||||
},
|
||||
],
|
||||
SignerQuorum: 2,
|
||||
}
|
||||
await testTransaction(this.client, signerListSet, this.wallet)
|
||||
|
||||
// try to multisign
|
||||
const accountSet: AccountSet = {
|
||||
TransactionType: 'AccountSet',
|
||||
Account: this.wallet.classicAddress,
|
||||
Domain: convertStringToHex('example.com'),
|
||||
}
|
||||
const accountSetTx = await client.autofill(accountSet, 2)
|
||||
const signed1 = regularKeyWallet.sign(accountSetTx, true)
|
||||
const signed2 = signerWallet2.sign(accountSetTx, true)
|
||||
const multisigned = multisign([signed1.tx_blob, signed2.tx_blob])
|
||||
const submitResponse = await client.submit(multisigned)
|
||||
await ledgerAccept(client)
|
||||
|
||||
assert.strictEqual(submitResponse.result.engine_result, 'tesSUCCESS')
|
||||
await verifySubmittedTransaction(this.client, multisigned)
|
||||
})
|
||||
|
||||
it('try multisigning with the account address used to set up a regular key', async function () {
|
||||
const client: Client = this.client
|
||||
|
||||
const regularKeyWallet = (await generateFundedWalletWithRegularKey(client))
|
||||
.regularKeyWallet
|
||||
const signerWallet2 = await generateFundedWallet(this.client)
|
||||
|
||||
const sameKeyDefaultAddressWallet = new Wallet(
|
||||
regularKeyWallet.publicKey,
|
||||
regularKeyWallet.privateKey,
|
||||
)
|
||||
|
||||
// set up the multisigners for the account
|
||||
const signerListSet: SignerListSet = {
|
||||
TransactionType: 'SignerListSet',
|
||||
Account: this.wallet.classicAddress,
|
||||
SignerEntries: [
|
||||
{
|
||||
SignerEntry: {
|
||||
Account: regularKeyWallet.classicAddress,
|
||||
SignerWeight: 1,
|
||||
},
|
||||
},
|
||||
{
|
||||
SignerEntry: {
|
||||
Account: signerWallet2.classicAddress,
|
||||
SignerWeight: 1,
|
||||
},
|
||||
},
|
||||
],
|
||||
SignerQuorum: 2,
|
||||
}
|
||||
await testTransaction(this.client, signerListSet, this.wallet)
|
||||
|
||||
// try to multisign
|
||||
const accountSet: AccountSet = {
|
||||
TransactionType: 'AccountSet',
|
||||
Account: this.wallet.classicAddress,
|
||||
Domain: convertStringToHex('example.com'),
|
||||
}
|
||||
const accountSetTx = await client.autofill(accountSet, 2)
|
||||
const signed1 = sameKeyDefaultAddressWallet.sign(accountSetTx, true)
|
||||
const signed2 = signerWallet2.sign(accountSetTx, true)
|
||||
const multisigned = multisign([signed1.tx_blob, signed2.tx_blob])
|
||||
const submitResponse = await client.submit(multisigned)
|
||||
await ledgerAccept(client)
|
||||
assert.strictEqual(submitResponse.result.engine_result, 'tefBAD_SIGNATURE')
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user