mirror of
https://github.com/Xahau/xahau.js.git
synced 2026-04-29 15:37:50 +00:00
* add skip tests * add client.requestAll tests * remove skip * remove unneeded code * cleanup * fix comment
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import { assert } from 'chai'
|
|
|
|
import rippled from '../fixtures/rippled'
|
|
import { setupClient, teardownClient } from '../setupClient'
|
|
|
|
const rippledResponse = function (request: Request): Record<string, unknown> {
|
|
if ('marker' in request) {
|
|
return rippled.ledger_data.last_page
|
|
}
|
|
return rippled.ledger_data.first_page
|
|
}
|
|
|
|
describe('client.requestAll', function () {
|
|
beforeEach(setupClient)
|
|
afterEach(teardownClient)
|
|
it('requests the next page', async function () {
|
|
this.mockRippled.addResponse('ledger_data', rippledResponse)
|
|
const allResponses = await this.client.requestAll({
|
|
command: 'ledger_data',
|
|
})
|
|
assert.equal(allResponses.length, 2)
|
|
assert.equal(
|
|
allResponses[1].result.state[0].index,
|
|
'000B714B790C3C79FEE00D17C4DEB436B375466F29679447BA64F265FD63D731',
|
|
)
|
|
})
|
|
|
|
it('rejects when there are no more pages', async function () {
|
|
this.mockRippled.addResponse('ledger_data', rippled.ledger_data.last_page)
|
|
const allResponses = await this.client.requestAll({
|
|
command: 'ledger_data',
|
|
})
|
|
assert.equal(allResponses.length, 1)
|
|
})
|
|
})
|