100 lines
2.6 KiB
TypeScript
100 lines
2.6 KiB
TypeScript
import {
|
|
WebsocketClient,
|
|
WSClientConfigurableOptions,
|
|
WS_KEY_MAP,
|
|
} from '../../src';
|
|
import {
|
|
getSilentLogger,
|
|
waitForSocketEvent,
|
|
WS_OPEN_EVENT_PARTIAL,
|
|
} from '../ws.util';
|
|
|
|
describe('Private Inverse Perps Websocket Client', () => {
|
|
const API_KEY = process.env.API_KEY_COM;
|
|
const API_SECRET = process.env.API_SECRET_COM;
|
|
|
|
const wsClientOptions: WSClientConfigurableOptions = {
|
|
market: 'inverse',
|
|
key: API_KEY,
|
|
secret: API_SECRET,
|
|
};
|
|
|
|
describe('with invalid credentials', () => {
|
|
it('should fail to open a connection if keys/signature are incorrect', async () => {
|
|
const badClient = new WebsocketClient(
|
|
{
|
|
...wsClientOptions,
|
|
key: 'bad',
|
|
secret: 'bad',
|
|
},
|
|
getSilentLogger('expect401')
|
|
);
|
|
|
|
const wsOpenPromise = waitForSocketEvent(badClient, 'open', 2500);
|
|
|
|
badClient.connectPrivate();
|
|
|
|
try {
|
|
expect(await wsOpenPromise).toMatch('Failed to receive');
|
|
} catch (e) {
|
|
// console.error()
|
|
expect(e?.message).toStrictEqual('Unexpected server response: 401');
|
|
}
|
|
badClient.closeAll();
|
|
});
|
|
});
|
|
|
|
describe('with valid API credentails', () => {
|
|
let wsClient: WebsocketClient;
|
|
|
|
it('should have api credentials to test with', () => {
|
|
expect(API_KEY).toStrictEqual(expect.any(String));
|
|
expect(API_SECRET).toStrictEqual(expect.any(String));
|
|
});
|
|
|
|
beforeAll(() => {
|
|
wsClient = new WebsocketClient(
|
|
wsClientOptions,
|
|
getSilentLogger('expectSuccess')
|
|
);
|
|
wsClient.connectPrivate();
|
|
});
|
|
|
|
afterAll(() => {
|
|
// await promiseSleep(2000);
|
|
wsClient.closeAll();
|
|
});
|
|
|
|
it('should open a ws connection', async () => {
|
|
const wsOpenPromise = waitForSocketEvent(wsClient, 'open');
|
|
|
|
expect(await wsOpenPromise).toMatchObject({
|
|
event: WS_OPEN_EVENT_PARTIAL,
|
|
wsKey: WS_KEY_MAP.inverse,
|
|
});
|
|
});
|
|
|
|
it('should subscribe to private wallet events', async () => {
|
|
const wsResponsePromise = waitForSocketEvent(wsClient, 'response');
|
|
// const wsUpdatePromise = waitForSocketEvent(wsClient, 'update');
|
|
|
|
const wsTopic = 'wallet';
|
|
// No easy way to trigger a private event (other than executing trades)
|
|
// expect(wsUpdatePromise).resolves.toMatchObject({
|
|
// topic: wsTopic,
|
|
// data: expect.any(Array),
|
|
// });
|
|
|
|
wsClient.subscribe(wsTopic);
|
|
|
|
expect(await wsResponsePromise).toMatchObject({
|
|
request: {
|
|
args: [wsTopic],
|
|
op: 'subscribe',
|
|
},
|
|
success: true,
|
|
});
|
|
});
|
|
});
|
|
});
|