This repository was archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsocket.test.ts
159 lines (143 loc) · 4.69 KB
/
socket.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
import { Socket } from ".";
import { NextTxResponse, OpenAPI } from "./client";
import { Routes } from "./client/services/Routes";
import { Path } from "./path";
import mockRoute from "./mocks/mockRoute.json";
import { SocketQuote } from "./types";
import { UserTxType } from "./client/models/UserTxType";
import { TxType } from "./client/models/TxType";
import { BridgeName } from "./client/models/BridgeDetails";
import { PrepareActiveRouteStatus } from "./client/models/RouteStatusOutputDTO";
import { Middleware } from "@socket.tech/ll-core";
jest.mock("./client/services/Routes");
const mockedRoutes = jest.mocked(Routes, true);
const MOCK_ROUTE = mockRoute;
const MOCK_ROUTE_TX0 = MOCK_ROUTE.userTxs[0];
const MOCK_NEXT_TX: NextTxResponse = {
activeRouteId: 123,
totalUserTx: 3,
userTxIndex: 0,
value: "100",
txData: "0x0",
txTarget: "0x0",
chainId: MOCK_ROUTE_TX0.chainId,
txType: MOCK_ROUTE_TX0.txType as TxType,
approvalData: MOCK_ROUTE_TX0.approvalData,
userTxType: MOCK_ROUTE_TX0.userTxType as UserTxType,
};
describe("Socket", () => {
it("assigns apikey", async () => {
const socket = new Socket({ apiKey: "abc" });
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-expect-error
expect(socket._options.apiKey).toBe("abc");
expect(OpenAPI.API_KEY).toBe("abc");
});
it("assigns base Url", async () => {
const socket = new Socket({ apiKey: "abc", baseUrl: "http://localhost:8080" });
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-expect-error
expect(socket._options.baseUrl).toBe("http://localhost:8080");
expect(OpenAPI.BASE).toBe("http://localhost:8080");
});
it("both include and exclude dex invalid", () => {
const socket = new Socket({ apiKey: "abc" });
expect(() =>
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-expect-error
socket.validatePreferences({
includeDexes: [Middleware.OneInch],
excludeDexes: [Middleware.OneInch],
})
).toThrow();
});
it("both include and exclude bridge invalid", () => {
const socket = new Socket({ apiKey: "abc" });
expect(() =>
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-expect-error
socket.validatePreferences({
includeBridges: [BridgeName.AnySwap],
excludeBridges: [BridgeName.AnySwap],
})
).toThrow();
});
});
describe("Socket - Execute", () => {
it("executes all steps", async () => {
const socket = new Socket({ apiKey: "abc" });
const fromToken = { address: "0x0", chainId: 1, symbol: "A" };
const toToken = { address: "0x1", chainId: 2, symbol: "B" };
const quote: SocketQuote = {
address: "0x0",
amount: "10000",
path: new Path({ fromToken, toToken }),
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
route: MOCK_ROUTE,
};
mockedRoutes.startActiveRoute.mockResolvedValueOnce({
status: true,
result: {
...MOCK_NEXT_TX,
txData: "0x0",
userTxIndex: 0,
},
});
// Immediately resolve submissions
mockedRoutes.updateActiveRoute.mockResolvedValue({
status: true,
result: PrepareActiveRouteStatus.COMPLETED,
});
const generaetor = await socket.start(quote);
expect(generaetor.activeRouteId).toEqual(123);
const tx0 = await generaetor.next();
if (!tx0.value) throw new Error("did not give tx");
expect(tx0.value.txData).toBe("0x0");
mockedRoutes.nextTx.mockResolvedValueOnce({
status: true,
result: {
...MOCK_NEXT_TX,
txData: "0x1",
userTxIndex: 1,
},
});
const tx1 = await generaetor.next("0x123");
expect(mockedRoutes.updateActiveRoute.mock.calls).toContainEqual([
{
activeRouteId: 123,
userTxIndex: 0,
txHash: "0x123",
},
]);
if (!tx1.value) throw new Error("did not give tx");
expect(tx1.value.txData).toBe("0x1");
mockedRoutes.nextTx.mockResolvedValueOnce({
status: true,
result: {
...MOCK_NEXT_TX,
txData: "0x2",
userTxIndex: 2,
},
});
const tx2 = await generaetor.next("0x456");
expect(mockedRoutes.updateActiveRoute.mock.calls).toContainEqual([
{
activeRouteId: 123,
userTxIndex: 1,
txHash: "0x456",
},
]);
if (!tx2.value) throw new Error("did not give tx");
expect(tx2.value.txData).toBe("0x2");
const txDone = await generaetor.next("0x789");
expect(txDone.done).toBe(true);
expect(mockedRoutes.updateActiveRoute.mock.calls).toContainEqual([
{
activeRouteId: 123,
userTxIndex: 2,
txHash: "0x789",
},
]);
});
});