update tests for copy trading client

This commit is contained in:
tiagosiebler
2022-11-14 10:32:05 +00:00
parent 952c5cf82b
commit c63445d58b
2 changed files with 12 additions and 8 deletions

View File

@@ -45,6 +45,7 @@ export const API_ERROR_CODE = {
RISK_LIMIT_NOT_EXISTS: 30090, RISK_LIMIT_NOT_EXISTS: 30090,
LEVERAGE_NOT_MODIFIED: 34036, LEVERAGE_NOT_MODIFIED: 34036,
SAME_SLTP_MODE: 37002, SAME_SLTP_MODE: 37002,
COPY_TRADE_NOT_OPEN_ORDER: 39426,
ORDER_NOT_FOUND_OR_TOO_LATE_LINEAR: 130010, ORDER_NOT_FOUND_OR_TOO_LATE_LINEAR: 130010,
ORDER_COST_NOT_AVAILABLE: 130021, ORDER_COST_NOT_AVAILABLE: 130021,
CANNOT_SET_LINEAR_TRADING_STOP_FOR_ZERO_POS: 130024, CANNOT_SET_LINEAR_TRADING_STOP_FOR_ZERO_POS: 130024,

View File

@@ -1,4 +1,5 @@
import { API_ERROR_CODE, CopyTradingClient } from '../../src'; import { API_ERROR_CODE, CopyTradingClient } from '../../src';
import { successResponseObjectV3 } from '../response.util';
describe('Private Copy Trading REST API GET Endpoints', () => { describe('Private Copy Trading REST API GET Endpoints', () => {
const API_KEY = process.env.API_KEY_COM; const API_KEY = process.env.API_KEY_COM;
@@ -19,20 +20,22 @@ describe('Private Copy Trading REST API GET Endpoints', () => {
// (just make sure auth works and endpoint doesn't throw) // (just make sure auth works and endpoint doesn't throw)
it('getActiveOrders()', async () => { it('getActiveOrders()', async () => {
expect(await api.getActiveOrders()).toMatchObject({ expect(await api.getActiveOrders()).toMatchObject(
retCode: API_ERROR_CODE.INCORRECT_API_KEY_PERMISSIONS, successResponseObjectV3()
}); );
}); });
it('getPositions()', async () => { it('getPositions()', async () => {
expect(await api.getPositions()).toMatchObject({ expect(await api.getPositions()).toMatchObject(successResponseObjectV3());
retCode: API_ERROR_CODE.INCORRECT_API_KEY_PERMISSIONS,
});
}); });
it('getBalances()', async () => { it('getBalances()', async () => {
expect(await api.getBalances()).toMatchObject({ expect(await api.getBalances()).toMatchObject(successResponseObjectV3());
retCode: API_ERROR_CODE.INCORRECT_API_KEY_PERMISSIONS, });
it('closePosition()', async () => {
expect(await api.closePosition('SOLUSDT', '1')).toMatchObject({
retCode: API_ERROR_CODE.COPY_TRADE_NOT_OPEN_ORDER,
}); });
}); });
}); });