Files
xahau.js/test/client/request.ts
Mayukha Vadari 949cc031ee Lints top-level test files (#1594)
* lint broadcastClient

* lint client

* fix most of connection

* remove unused files

* lint mockRippled

* lint mockRippledTest

* lint runClientTests

* lint setupClient

* lint setupClientWeb

* lint shamap

* lint testUtils

* resolve tsc issues

* Fix tests

* lint rest of connection

* respond to comments
2021-10-04 14:10:12 -04:00

48 lines
1.3 KiB
TypeScript

import responses from '../fixtures/responses'
import rippled from '../fixtures/rippled'
import { setupClient, teardownClient } from '../setupClient'
import { addressTests, assertResultMatch } from '../testUtils'
describe('client.request', function () {
beforeEach(setupClient)
afterEach(teardownClient)
addressTests.forEach(function (test) {
describe(test.type, function () {
it('request account_objects', async function () {
this.mockRippled.addResponse(
'account_objects',
rippled.account_objects.normal,
)
const result = await this.client.request({
command: 'account_objects',
account: test.address,
})
assertResultMatch(
result.result,
responses.getAccountObjects,
'AccountObjectsResponse',
)
})
it('request account_objects - invalid options', async function () {
this.mockRippled.addResponse(
'account_objects',
rippled.account_objects.normal,
)
const result = await this.client.request({
command: 'account_objects',
account: test.address,
})
assertResultMatch(
result.result,
responses.getAccountObjects,
'AccountObjectsResponse',
)
})
})
})
})