refactoring around test names spot

This commit is contained in:
tiagosiebler
2022-09-10 12:49:44 +01:00
parent d7496c402b
commit 1c9c6aa1e2
4 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
import { API_ERROR_CODE, SpotClient } from '../../src';
import { successResponseObject } from '../response.util';
describe('Private Inverse-Futures REST API POST Endpoints', () => {
const useLivenet = true;
const API_KEY = process.env.API_KEY_COM;
const API_SECRET = process.env.API_SECRET_COM;
it('should have api credentials to test with', () => {
expect(API_KEY).toStrictEqual(expect.any(String));
expect(API_SECRET).toStrictEqual(expect.any(String));
});
const api = new SpotClient(API_KEY, API_SECRET, useLivenet);
// Warning: if some of these start to fail with 10001 params error, it's probably that this future expired and a newer one exists with a different symbol!
const symbol = 'BTCUSDT';
// These tests are primarily check auth is working by expecting balance or order not found style errors
it('submitOrder()', async () => {
expect(
await api.submitOrder({
side: 'Buy',
symbol,
qty: 10000,
type: 'MARKET',
})
).toMatchObject({
ret_code: API_ERROR_CODE.BALANCE_INSUFFICIENT_SPOT,
ret_msg: 'Balance insufficient ',
});
});
it('cancelOrder()', async () => {
expect(
await api.cancelOrder({
orderId: '1231231',
})
).toMatchObject({
ret_code: API_ERROR_CODE.ORDER_NOT_FOUND_OR_TOO_LATE_SPOT,
ret_msg: 'Order does not exist.',
});
});
it('cancelOrderBatch()', async () => {
expect(
await api.cancelOrderBatch({
symbol,
orderTypes: ['LIMIT', 'LIMIT_MAKER'],
})
).toMatchObject(successResponseObject());
});
});