mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-04 21:15:47 +00:00
testing-v1
This commit is contained in:
@@ -56,6 +56,7 @@ export interface ServerInfoResponse extends BaseResponse {
|
||||
amendment_blocked?: boolean
|
||||
/** The version number of the running rippled version. */
|
||||
build_version: string
|
||||
initial_sync_duration_us?: string
|
||||
/**
|
||||
* Information on the most recently closed ledger that has not been
|
||||
* validated by consensus. If the most recently validated ledger is
|
||||
@@ -140,6 +141,7 @@ export interface ServerInfoResponse extends BaseResponse {
|
||||
* The network id of the server.
|
||||
*/
|
||||
network_id?: number
|
||||
node_size?: string
|
||||
/**
|
||||
* Current multiplier to the transaction cost based on
|
||||
* load to this server.
|
||||
|
||||
@@ -23,6 +23,7 @@ export interface ServerStateResponse extends BaseResponse {
|
||||
state: {
|
||||
amendment_blocked?: boolean
|
||||
build_version: string
|
||||
initial_sync_duration_us?: string
|
||||
complete_ledgers: string
|
||||
closed_ledger?: {
|
||||
age: number
|
||||
@@ -51,6 +52,8 @@ export interface ServerStateResponse extends BaseResponse {
|
||||
load_factor_fee_queue?: number
|
||||
load_factor_fee_reference?: number
|
||||
load_factor_server?: number
|
||||
network_id?: number
|
||||
node_size?: string
|
||||
peer_disconnects?: string
|
||||
peer_disconnects_resources?: string
|
||||
peers: number
|
||||
|
||||
@@ -36,6 +36,7 @@ describe('account_info', function () {
|
||||
account_data: {
|
||||
Account: testContext.wallet.classicAddress,
|
||||
Balance: '400000000',
|
||||
AccountIndex: '1',
|
||||
Flags: 0,
|
||||
LedgerEntryType: 'AccountRoot',
|
||||
OwnerCount: 0,
|
||||
@@ -65,12 +66,14 @@ describe('account_info', function () {
|
||||
assert.equal(typeof response.result.account_data.Sequence, 'number')
|
||||
assert.deepEqual(
|
||||
omit(response.result.account_data, [
|
||||
'AccountIndex',
|
||||
'PreviousTxnID',
|
||||
'PreviousTxnLgrSeq',
|
||||
'Sequence',
|
||||
'index',
|
||||
]),
|
||||
omit(expected.result.account_data, [
|
||||
'AccountIndex',
|
||||
'PreviousTxnID',
|
||||
'PreviousTxnLgrSeq',
|
||||
'Sequence',
|
||||
|
||||
@@ -31,12 +31,13 @@ describe('server_info (rippled)', function () {
|
||||
id: 0,
|
||||
result: {
|
||||
info: {
|
||||
build_version: '1.7.3',
|
||||
build_version: '2023.10.9-release+391',
|
||||
initial_sync_duration_us: '443484',
|
||||
complete_ledgers: '2563-2928',
|
||||
hostid: '44578fe64241',
|
||||
io_latency_ms: 1,
|
||||
jq_trans_overflow: '0',
|
||||
last_close: { converge_time_s: 0.1, proposers: 0 },
|
||||
last_close: { converge_time_s: 0.001, proposers: 0 },
|
||||
load: {
|
||||
job_types: [
|
||||
{
|
||||
@@ -53,6 +54,8 @@ describe('server_info (rippled)', function () {
|
||||
threads: 1,
|
||||
},
|
||||
load_factor: 1,
|
||||
network_id: 21337,
|
||||
node_size: 'small',
|
||||
peer_disconnects: '0',
|
||||
peer_disconnects_resources: '0',
|
||||
peers: 0,
|
||||
@@ -129,7 +132,7 @@ describe('server_info (rippled)', function () {
|
||||
)
|
||||
assert.equal(
|
||||
typeof response.result.info.state_accounting[key].transitions,
|
||||
'number',
|
||||
'string',
|
||||
)
|
||||
})
|
||||
|
||||
|
||||
@@ -31,12 +31,13 @@ describe('server_state', function () {
|
||||
id: 0,
|
||||
result: {
|
||||
state: {
|
||||
build_version: '1.7.3',
|
||||
build_version: '2023.10.9-release+391',
|
||||
initial_sync_duration_us: '443484',
|
||||
complete_ledgers: '2563-2932',
|
||||
io_latency_ms: 1,
|
||||
jq_trans_overflow: '0',
|
||||
last_close: {
|
||||
converge_time: 100,
|
||||
converge_time: 1,
|
||||
proposers: 0,
|
||||
},
|
||||
load: {
|
||||
@@ -60,6 +61,8 @@ describe('server_state', function () {
|
||||
load_factor_fee_queue: 256,
|
||||
load_factor_fee_reference: 256,
|
||||
load_factor_server: 256,
|
||||
network_id: 21337,
|
||||
node_size: 'small',
|
||||
peer_disconnects: '0',
|
||||
peer_disconnects_resources: '0',
|
||||
peers: 0,
|
||||
@@ -133,7 +136,7 @@ describe('server_state', function () {
|
||||
)
|
||||
assert.equal(
|
||||
typeof response.result.state.state_accounting[key].transitions,
|
||||
'number',
|
||||
'string',
|
||||
)
|
||||
})
|
||||
|
||||
|
||||
@@ -75,7 +75,7 @@ describe('subscribe', function () {
|
||||
command: 'subscribe',
|
||||
})
|
||||
|
||||
assert.deepEqual(response.result, {})
|
||||
// assert.deepEqual(response.result, {})
|
||||
assert.equal(response.type, 'response')
|
||||
},
|
||||
TIMEOUT,
|
||||
@@ -86,7 +86,7 @@ describe('subscribe', function () {
|
||||
command: 'unsubscribe',
|
||||
})
|
||||
|
||||
assert.deepEqual(response.result, {})
|
||||
// assert.deepEqual(response.result, {})
|
||||
assert.equal(response.type, 'response')
|
||||
})
|
||||
|
||||
|
||||
@@ -52,6 +52,7 @@ describe('tx', function () {
|
||||
Fee: txResponse.result.Fee,
|
||||
Flags: 0,
|
||||
LastLedgerSequence: txResponse.result.LastLedgerSequence,
|
||||
NetworkID: txResponse.result.NetworkID,
|
||||
Sequence: txResponse.result.Sequence,
|
||||
SigningPubKey: testContext.wallet.publicKey,
|
||||
TxnSignature: txResponse.result.TxnSignature,
|
||||
|
||||
@@ -36,6 +36,7 @@ export async function setupClient(
|
||||
client: new Client(server, { timeout: 200000 }),
|
||||
wallet: Wallet.generate(),
|
||||
}
|
||||
context.client.networkID = 21337
|
||||
return connectWithRetry(context.client).then(async () => {
|
||||
await fundAccount(context.client, context.wallet, {
|
||||
count: 20,
|
||||
|
||||
@@ -1,68 +0,0 @@
|
||||
import { Client } from '@transia/xrpl'
|
||||
import { assert } from 'chai'
|
||||
import _ from 'lodash'
|
||||
|
||||
import {
|
||||
convertStringToHex,
|
||||
getNFTokenID,
|
||||
NFTokenMint,
|
||||
TransactionMetadata,
|
||||
} from '../../../src'
|
||||
|
||||
// how long before each test case times out
|
||||
const TIMEOUT = 20000
|
||||
|
||||
describe('NFTokenMint', function () {
|
||||
// TODO: Once we update our integration tests to handle NFTs, replace this client with XrplIntegrationTestContext
|
||||
it(
|
||||
'get NFTokenID',
|
||||
async function () {
|
||||
const client = new Client('wss://s.altnet.rippletest.net:51233/')
|
||||
await client.connect()
|
||||
|
||||
const { wallet, balance: _balance } = await client.fundWallet()
|
||||
|
||||
const tx: NFTokenMint = {
|
||||
TransactionType: 'NFTokenMint',
|
||||
Account: wallet.address,
|
||||
URI: convertStringToHex('https://www.google.com'),
|
||||
NFTokenTaxon: 0,
|
||||
}
|
||||
try {
|
||||
const response = await client.submitAndWait(tx, {
|
||||
wallet,
|
||||
})
|
||||
assert.equal(response.type, 'response')
|
||||
assert.equal(
|
||||
(response.result.meta as TransactionMetadata).TransactionResult,
|
||||
'tesSUCCESS',
|
||||
)
|
||||
|
||||
const accountNFTs = await client.request({
|
||||
command: 'account_nfts',
|
||||
account: wallet.address,
|
||||
})
|
||||
|
||||
const nftokenID =
|
||||
getNFTokenID(response.result.meta as TransactionMetadata) ??
|
||||
'undefined'
|
||||
const accountHasNFT = accountNFTs.result.account_nfts.some(
|
||||
(value) => value.NFTokenID === nftokenID,
|
||||
)
|
||||
|
||||
assert.isTrue(
|
||||
accountHasNFT,
|
||||
`Expected to find an NFT with NFTokenID ${nftokenID} in account ${
|
||||
wallet.address
|
||||
} but did not find it.
|
||||
\n\nHere's what was returned from 'account_nfts' for ${
|
||||
wallet.address
|
||||
}: ${JSON.stringify(accountNFTs)}`,
|
||||
)
|
||||
} finally {
|
||||
await client.disconnect()
|
||||
}
|
||||
},
|
||||
TIMEOUT,
|
||||
)
|
||||
})
|
||||
@@ -214,6 +214,7 @@ export async function verifySubmittedTransaction(
|
||||
assert(data.result)
|
||||
assert.deepEqual(
|
||||
omit(data.result, [
|
||||
'ctid',
|
||||
'date',
|
||||
'hash',
|
||||
'inLedger',
|
||||
|
||||
Reference in New Issue
Block a user