Files
bitget-api/test/private.read.test.ts
JJ-Cro 1e7987a400 feat(): add comprehensive tests for Bitget Private and Public REST API endpoints
- Introduced new test files for private read and write endpoints, covering account, trade, funding, and futures functionalities.
- Added public API tests for server time, ticker, order book, and market trades - Enhanced error handling in tests with specific error codes and messages.
- Updated response utility functions to improve error response structure.
- Removed outdated broker tests to streamline the test suite.
2025-03-17 13:38:04 +01:00

172 lines
5.0 KiB
TypeScript

import { RestClientV2 } from '../src/rest-client-v2';
import {
errorResponseObjectV3,
sucessEmptyResponseObject,
} from './response.util';
describe('Bitget Private REST API Read Endpoints', () => {
const API_KEY = process.env.API_KEY_COM;
const API_SECRET = process.env.API_SECRET_COM;
const API_PASSPHRASE = process.env.API_PASS_COM;
const api = new RestClientV2({
apiKey: API_KEY!,
apiSecret: API_SECRET!,
apiPass: API_PASSPHRASE!,
});
it('should have api credentials to use', () => {
expect(API_KEY).toStrictEqual(expect.any(String));
expect(API_SECRET).toStrictEqual(expect.any(String));
expect(API_PASSPHRASE).toStrictEqual(expect.any(String));
});
describe('Account Endpoints', () => {
it('getSpotAccount()', async () => {
try {
const res = await api.getSpotAccount();
expect(res).toMatchObject(sucessEmptyResponseObject());
} catch (e) {
expect(e).toMatchObject(errorResponseObjectV3('40001'));
}
});
it('getSpotAccountAssets()', async () => {
try {
const res = await api.getSpotAccountAssets();
expect(res).toMatchObject(sucessEmptyResponseObject());
} catch (e) {
expect(e).toMatchObject(errorResponseObjectV3('40001'));
}
});
it('getSpotAccountBills()', async () => {
try {
const res = await api.getSpotAccountBills();
expect(res).toMatchObject(sucessEmptyResponseObject());
} catch (e) {
expect(e).toMatchObject(errorResponseObjectV3('40001'));
}
});
});
describe('Trade Endpoints', () => {
it('getSpotOrder()', async () => {
try {
const res = await api.getSpotOrder({
orderId: '123456789',
});
expect(res).toMatchObject(sucessEmptyResponseObject());
} catch (e) {
expect(e).toMatchObject(errorResponseObjectV3('40001'));
}
});
it('getSpotOpenOrders()', async () => {
try {
const res = await api.getSpotOpenOrders();
expect(res).toMatchObject(sucessEmptyResponseObject());
} catch (e) {
expect(e).toMatchObject(errorResponseObjectV3('40001'));
}
});
it('getSpotHistoricOrders()', async () => {
try {
const res = await api.getSpotHistoricOrders();
expect(res).toMatchObject(sucessEmptyResponseObject());
} catch (e) {
expect(e).toMatchObject(errorResponseObjectV3('40001'));
}
});
it('getSpotFills()', async () => {
try {
const res = await api.getSpotFills({
symbol: 'BTCUSDT',
});
expect(res).toMatchObject(sucessEmptyResponseObject());
} catch (e) {
expect(e).toMatchObject(errorResponseObjectV3('40001'));
}
});
});
describe('Funding Endpoints', () => {
it('getSpotDepositHistory()', async () => {
try {
const res = await api.getSpotDepositHistory({
startTime: '1715808000000',
endTime: '1715894400000',
});
expect(res).toMatchObject(sucessEmptyResponseObject());
} catch (e) {
expect(e).toMatchObject(errorResponseObjectV3('40001'));
}
});
it('getSpotWithdrawalHistory()', async () => {
try {
const res = await api.getSpotWithdrawalHistory({
startTime: '1715808000000',
endTime: '1715894400000',
});
expect(res).toMatchObject(sucessEmptyResponseObject());
} catch (e) {
expect(e).toMatchObject(errorResponseObjectV3('40001'));
}
});
it('getSpotTransferHistory()', async () => {
try {
const res = await api.getSpotTransferHistory({
coin: 'BTC',
fromType: 'spot',
});
expect(res).toMatchObject(sucessEmptyResponseObject());
} catch (e) {
expect(e).toMatchObject(errorResponseObjectV3('40001'));
}
});
});
describe('Futures Endpoints', () => {
it('getFuturesAccountAsset()', async () => {
try {
const res = await api.getFuturesAccountAsset({
symbol: 'BTCUSDT',
marginCoin: 'USDT',
productType: 'USDT-FUTURES',
});
expect(res).toMatchObject(sucessEmptyResponseObject());
} catch (e) {
expect(e).toMatchObject(errorResponseObjectV3('40001'));
}
});
it('getFuturesPositions()', async () => {
try {
const res = await api.getFuturesPositions({
productType: 'USDT-FUTURES',
});
expect(res).toMatchObject(sucessEmptyResponseObject());
} catch (e) {
expect(e).toMatchObject(errorResponseObjectV3('40001'));
}
});
it('getFuturesOrder()', async () => {
try {
const res = await api.getFuturesOrder({
symbol: 'BTCUSDT',
productType: 'USDT-FUTURES',
orderId: '123456789',
});
expect(res).toMatchObject(sucessEmptyResponseObject());
} catch (e) {
expect(e).toMatchObject(errorResponseObjectV3('40109')); // The data of the order cannot be found, please confirm the order number
}
});
});
});