chore(): route tests via proxy instead of github CI address

This commit is contained in:
tiagosiebler
2023-08-18 16:21:13 +01:00
parent 9bc1ff89c6
commit 21ac313f38
37 changed files with 581 additions and 415 deletions

View File

@@ -1,4 +1,5 @@
import { LinearClient } from '../../src/linear-client';
import { getTestProxy } from '../proxy.util';
import {
notAuthenticatedError,
successResponseList,
@@ -6,7 +7,7 @@ import {
} from '../response.util';
describe('Public Linear REST API Endpoints', () => {
const api = new LinearClient();
const api = new LinearClient({}, getTestProxy());
const symbol = 'BTCUSDT';
const interval = '15';
@@ -16,22 +17,22 @@ describe('Public Linear REST API Endpoints', () => {
describe('Linear only endpoints', () => {
it('should throw for unauthenticated private calls', async () => {
expect(() => api.getPosition()).rejects.toMatchObject(
notAuthenticatedError()
notAuthenticatedError(),
);
expect(() => api.getApiKeyInfo()).rejects.toMatchObject(
notAuthenticatedError()
notAuthenticatedError(),
);
});
it('getOrderBook()', async () => {
expect(await api.getOrderBook({ symbol })).toMatchObject(
successResponseList()
successResponseList(),
);
});
it('getKline()', async () => {
expect(await api.getKline({ symbol, interval, from })).toMatchObject(
successResponseList()
successResponseList(),
);
});
@@ -41,7 +42,7 @@ describe('Public Linear REST API Endpoints', () => {
it('getTrades()', async () => {
expect(await api.getTrades({ symbol })).toMatchObject(
successResponseList()
successResponseList(),
);
});
it('getSymbols()', async () => {
@@ -50,25 +51,25 @@ describe('Public Linear REST API Endpoints', () => {
it('getMarkPriceKline()', async () => {
expect(
await api.getMarkPriceKline({ symbol, interval, from })
await api.getMarkPriceKline({ symbol, interval, from }),
).toMatchObject(successResponseList());
});
it('getIndexPriceKline()', async () => {
expect(
await api.getIndexPriceKline({ symbol, interval, from })
await api.getIndexPriceKline({ symbol, interval, from }),
).toMatchObject(successResponseList());
});
it('getPremiumIndexKline()', async () => {
expect(
await api.getPremiumIndexKline({ symbol, interval, from })
await api.getPremiumIndexKline({ symbol, interval, from }),
).toMatchObject(successResponseList());
});
it('getLastFundingRate()', async () => {
expect(await api.getLastFundingRate({ symbol })).toMatchObject(
successResponseObject()
successResponseObject(),
);
});
@@ -82,7 +83,7 @@ describe('Public Linear REST API Endpoints', () => {
it('getApiAnnouncements()', async () => {
expect(await api.getApiAnnouncements()).toMatchObject(
successResponseList()
successResponseList(),
);
});
});