forked from SmartDropLabs/smartdrop-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfarm-responsive.spec.ts
More file actions
335 lines (292 loc) · 9.6 KB
/
Copy pathfarm-responsive.spec.ts
File metadata and controls
335 lines (292 loc) · 9.6 KB
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
import { devices, expect, test, type Browser, type Page } from "@playwright/test";
import {
Keypair,
Networks,
SorobanDataBuilder,
TransactionBuilder,
nativeToScVal,
xdr,
} from "@stellar/stellar-sdk";
const FACTORY_CONTRACT_ID =
"CAAQCAIBAEAQCAIBAEAQCAIBAEAQCAIBAEAQCAIBAEAQCAIBAEAQC526";
const POOL_CONTRACT_ID =
"CABAEAQCAIBAEAQCAIBAEAQCAIBAEAQCAIBAEAQCAIBAEAQCAIBAFNSZ";
const USER_PUBLIC_KEY =
"GABQGAYDAMBQGAYDAMBQGAYDAMBQGAYDAMBQGAYDAMBQGAYDAMBQHGPC";
type DeviceProfile = (typeof devices)[string];
const MOBILE_DEVICES: {
name: string;
width: number;
height: number;
profile: DeviceProfile;
}[] = [
{ name: "iPhone SE", width: 375, height: 667, profile: devices["iPhone SE"] },
{
name: "iPhone 14 Pro",
width: 390,
height: 844,
profile: devices["iPhone 14 Pro"],
},
{
name: "iPhone 14 Plus",
width: 414,
height: 896,
profile: devices["iPhone 14 Plus"],
},
];
function accountLedgerEntryXdr() {
const accountEntry = new xdr.AccountEntry({
accountId: Keypair.fromPublicKey(USER_PUBLIC_KEY).xdrPublicKey(),
balance: xdr.Int64.fromString("100000000000"),
seqNum: xdr.SequenceNumber.fromString("1"),
numSubEntries: 0,
inflationDest: null,
flags: 0,
homeDomain: "",
thresholds: Buffer.from([1, 0, 0, 0]),
signers: [],
ext: new xdr.AccountEntryExt(0),
});
return xdr.LedgerEntryData.account(accountEntry).toXDR("base64");
}
function simulationResultXdr(methodName: string, locked: boolean) {
const lockStartedAt = Date.now();
if (methodName === "get_pools") {
return nativeToScVal([
{
id: "xlm-pool",
contract_address: POOL_CONTRACT_ID,
asset_code: "XLM",
daily_rate: 123000000n,
min_lock_period: 604800,
total_locked: 987650000000n,
total_users: 4,
is_active: true,
created_at: 0,
},
]).toXDR("base64");
}
if (methodName === "get_user_position") {
const lockedAt = locked ? lockStartedAt : lockStartedAt - 604801000;
return nativeToScVal({
amount: 250000000n,
locked_at: lockedAt,
credits: 70000000n,
is_locked: locked,
unlockable_at: lockedAt + 604800000,
}).toXDR("base64");
}
return nativeToScVal(null).toXDR("base64");
}
function contractMethodName(transactionXdr: string) {
const transaction = TransactionBuilder.fromXDR(
transactionXdr,
Networks.TESTNET
);
const operation = transaction.operations[0];
if (operation?.type !== "invokeHostFunction") return "";
const hostFunction = operation.func;
if (hostFunction.switch().name !== "hostFunctionTypeInvokeContract") {
return "";
}
return hostFunction.invokeContract().functionName().toString();
}
async function installFarmDataMocks(page: Page, options?: { locked?: boolean }) {
const locked = options?.locked ?? true;
await page.addInitScript((publicKey) => {
Object.defineProperty(window, "freighter", {
configurable: true,
value: true,
});
window.addEventListener("message", (event) => {
if (
event.source !== window ||
event.data?.source !== "FREIGHTER_EXTERNAL_MSG_REQUEST"
) {
return;
}
const base = {
source: "FREIGHTER_EXTERNAL_MSG_RESPONSE",
messageId: event.data.messageId,
messagedId: event.data.messageId,
};
const payloads: Record<string, Record<string, unknown>> = {
REQUEST_ALLOWED_STATUS: { isAllowed: true },
REQUEST_CONNECTION_STATUS: { isConnected: true },
REQUEST_PUBLIC_KEY: { publicKey },
REQUEST_ACCESS: { publicKey },
};
window.postMessage(
{
...base,
...(payloads[event.data.type] ?? {}),
},
window.location.origin
);
});
}, USER_PUBLIC_KEY);
await page.route(/soroban-testnet\.stellar\.org/, async (route) => {
const request = route.request();
const body = request.postDataJSON() as {
id?: number;
method?: string;
params?: { keys?: string[]; transaction?: string };
};
if (body.method === "getLedgerEntries") {
await route.fulfill({
json: {
jsonrpc: "2.0",
id: body.id ?? 1,
result: {
latestLedger: 12345,
entries: [
{
key: body.params?.keys?.[0],
xdr: accountLedgerEntryXdr(),
lastModifiedLedgerSeq: 12340,
},
],
},
},
});
return;
}
if (body.method === "simulateTransaction" && body.params?.transaction) {
await route.fulfill({
json: {
jsonrpc: "2.0",
id: body.id ?? 1,
result: {
id: String(body.id ?? 1),
latestLedger: 12345,
events: [],
transactionData: new SorobanDataBuilder()
.build()
.toXDR("base64"),
minResourceFee: "0",
results: [
{
auth: [],
xdr: simulationResultXdr(
contractMethodName(body.params.transaction),
locked
),
},
],
},
},
});
return;
}
await route.abort();
});
}
async function connectWalletAndLoadPosition(
page: Page,
options?: { locked?: boolean }
) {
await installFarmDataMocks(page, options);
await page.goto("/farm");
await page.getByRole("button", { name: "Connect Freighter" }).click();
await expect(page.getByText("My earnings")).toBeVisible();
await expect(page.getByText("7.0000000").first()).toBeVisible();
}
async function expectNoHorizontalOverflow(page: Page) {
const overflow = await page.evaluate(() => ({
viewport: document.documentElement.clientWidth,
documentWidth: document.documentElement.scrollWidth,
bodyWidth: document.body.scrollWidth,
}));
expect(overflow.documentWidth).toBeLessThanOrEqual(overflow.viewport);
expect(overflow.bodyWidth).toBeLessThanOrEqual(overflow.viewport);
}
async function withMobilePage(
browser: Browser,
device: (typeof MOBILE_DEVICES)[number],
run: (page: Page) => Promise<void>
) {
const context = await browser.newContext({
...device.profile,
viewport: { width: device.width, height: device.height },
});
const page = await context.newPage();
try {
await run(page);
} finally {
await context.close();
}
}
test.describe("farm responsive layout", () => {
for (const device of MOBILE_DEVICES) {
test(`keeps farm cards and unlock controls reachable at ${device.width}px (${device.name})`, async ({
browser,
}) => {
await withMobilePage(browser, device, async (page) => {
await connectWalletAndLoadPosition(page);
await expectNoHorizontalOverflow(page);
const unlockButton = page.getByRole("button", { name: "Unlock" });
await expect(unlockButton).toBeVisible();
await unlockButton.scrollIntoViewIfNeeded();
await expect(unlockButton).toBeInViewport();
const unlockBox = await unlockButton.boundingBox();
expect(unlockBox?.x).toBeGreaterThanOrEqual(0);
expect(
(unlockBox?.x ?? 0) + (unlockBox?.width ?? 0)
).toBeLessThanOrEqual(device.width);
await expect(page.getByText("Unlock countdown")).toBeVisible();
await expect(page.getByText("Earned").first()).toBeVisible();
await expect(page.getByText("My Stake").first()).toBeVisible();
await expect(page.getByText("Daily Rate").first()).toBeVisible();
await expect(page.getByText("Total Staked Liquidity").first()).toBeVisible();
});
});
}
test("keeps the unlock modal form controls full-width on mobile", async ({
browser,
}) => {
await withMobilePage(browser, MOBILE_DEVICES[1], async (page) => {
await connectWalletAndLoadPosition(page, { locked: false });
await page.getByRole("button", { name: "Unlock" }).click({ force: true });
const dialog = page.getByRole("dialog", { name: "Unlock XLM" });
await expect(dialog).toBeVisible();
const input = dialog.getByPlaceholder("Amount");
const unlockAction = dialog.getByRole("button", {
name: "Unlock with Freighter",
});
const [dialogBox, inputBox, buttonBox] = await Promise.all([
dialog.boundingBox(),
input.boundingBox(),
unlockAction.boundingBox(),
]);
expect(inputBox?.width).toBeGreaterThan((dialogBox?.width ?? 0) * 0.75);
expect(buttonBox?.width).toBeGreaterThan((dialogBox?.width ?? 0) * 0.75);
await expectNoHorizontalOverflow(page);
});
});
test("makes the disconnected farm connect button full-width on mobile", async ({
browser,
}) => {
await withMobilePage(browser, MOBILE_DEVICES[0], async (page) => {
await installFarmDataMocks(page);
await page.goto("/farm");
const connectButton = page.getByRole("button", {
name: "Connect Wallet",
});
await expect(connectButton).toBeVisible();
const box = await connectButton.boundingBox();
expect(box?.x).toBeGreaterThanOrEqual(0);
expect(box?.width).toBeGreaterThan(300);
expect((box?.x ?? 0) + (box?.width ?? 0)).toBeLessThanOrEqual(375);
await expectNoHorizontalOverflow(page);
});
});
test("retains the desktop farm row without horizontal overflow", async ({
page,
}) => {
await page.setViewportSize({ width: 1440, height: 1000 });
await connectWalletAndLoadPosition(page);
await expectNoHorizontalOverflow(page);
await expect(page.getByRole("button", { name: "Boost" })).toBeVisible();
await expect(page.getByRole("button", { name: "Unlock" })).toBeVisible();
});
});