-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathfreighterApiIntegration.test.ts
More file actions
1139 lines (972 loc) · 36.8 KB
/
Copy pathfreighterApiIntegration.test.ts
File metadata and controls
1139 lines (972 loc) · 36.8 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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { expect, test, expectPageToHaveScreenshot } from "../test-fixtures";
import { TEST_TOKEN_ADDRESS } from "../helpers/test-token";
import { loginToTestAccount, switchToMainnet } from "../helpers/login";
import { allowDapp } from "../helpers/dAppSessionHelper";
import {
stubAccountBalances,
stubAccountHistory,
stubIsSac,
stubScanDapp,
stubTokenDetails,
stubTokenPrices,
} from "../helpers/stubs";
const TX_TO_SIGN =
"AAAAAgAAAADLvQoIbFw9k0tgjZoOrLTuJJY9kHFYp/YAEAlt/xirbAAAAGQAAAfjAAAOpQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAQAAAABngBTmbmUycqG2cAMHcomSR80dRzGtKzxM6gb3yySD5AAAAAAAAAAAAvrwgAAAAAAAAAAA";
const SIGNED_TX =
"AAAAAgAAAADLvQoIbFw9k0tgjZoOrLTuJJY9kHFYp/YAEAlt/xirbAAAAGQAAAfjAAAOpQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAQAAAABngBTmbmUycqG2cAMHcomSR80dRzGtKzxM6gb3yySD5AAAAAAAAAAAAvrwgAAAAAAAAAAB/xirbAAAAEBWgE2DhhukpAdJTOhBxvuvePAJH+gBbD3hQQljuidQbTFDMEyak7c2fOjyK2moqVhf3AUpCIMSlALglwFXumQH";
const AUTH_ENTRY_TO_SIGN =
"AAAACc7gMC1ZhE0yvcqRXIID3USzP7t+3BkFHqN6vt8o7NRyGVzFh1h1V3oANBPZAAAAAAAAAAGhRTk9qFLakLcWsi5wS6hhHr80ka5WABdo/8hF7QmS3QAAAARzd2FwAAAABAAAABIAAAAB0kc/9lM7RuxEsaiiUFR+T89kG7IOUk1U0cXCIDkTDesAAAASAAAAAZ+9o35h9wEnNl2hiVZHRJxsDoO3altsu023K1kAex/nAAAACgAAAAAAAAAAAAAAAAADDUAAAAAKAAAAAAAAAAAAAAAAAAGGoAAAAAEAAAAAAAAAAdJHP/ZTO0bsRLGoolBUfk/PZBuyDlJNVNHFwiA5Ew3rAAAACHRyYW5zZmVyAAAAAwAAABIAAAAAAAAAAFVmR/NPwhQJzrxxqVrqFZ83Hy9HmP4trSdB/dX7sAZjAAAAEgAAAAGhRTk9qFLakLcWsi5wS6hhHr80ka5WABdo/8hF7QmS3QAAAAoAAAAAAAAAAAAAAAAAAw1AAAAAAA==";
const SIGNED_AUTH_ENTRY =
"pUMQKvSlK72f3XmJmZbLLV05SPn9e8k/9m9RQOW2GDmpUZ/fS5ZWDsAF3rJulGg8AVL21FlUr+nRFcF+rLOiAw==";
// A valid HashIdPreimage XDR of type ENVELOPE_TYPE_OP_ID (6), NOT sorobanAuthorization.
// Used to test the second validation catch in SignAuthEntry (wrong preimage variant).
const NON_SOROBAN_AUTH_ENTRY =
"AAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAA==";
// A CAP-71 (protocol 27) ENVELOPE_TYPE_SOROBAN_AUTHORIZATION_WITH_ADDRESS
// preimage on TestNet, bound to account GAAQCAIB… (ed25519 0x01*32) — never the
// e2e test account. Used to exercise the bound-address mismatch block.
const V2_AUTH_ENTRY_WRONG_ADDRESS =
"AAAACs7gMC1ZhE0yvcqRXIID3USzP7t+3BkFHqN6vt8o7NRyAAAAAAAAACoAD0JAAAAAAAAAAAABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAAAAAABAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAIdHJhbnNmZXIAAAAAAAAAAA==";
const MSG_TO_SIGN = "Hello, World!";
const SIGNED_MSG =
"dxdeMTXPabzkvpVyTFFvPyiQ1soAJVf55NLkzgQ1a5HihB0wGi78P6p4Qac3YJa9pOVD9YeKGeUPZVNCM/f8Cg==";
const LONG_MSG_TO_SIGN = Array(10000).fill("a").join("");
const LONG_SIGNED_MSG =
"7JrY+dlbFjYGv0TVg+vnM+6XOMeDl2TojARHiyInnXamS5MHrmINhssrvFqGyPx/QGGsKZuvfuVzXPqGoLWkBw==";
const JSON_MSG_TO_SIGN = JSON.stringify({
message: "Hello, World!",
timestamp: 111111,
isActive: true,
tags: ["tag1", "tag2"],
nested: {
message: "Hello, Universe!",
timestamp: 222222,
isActive: false,
tags: ["tag01", "tag02"],
},
});
const JSON_SIGNED_MSG =
"42IH7/mvkAT+ltbEG8oEPhVBzP7hb6NU+P+WZP3j1AIMdbwuFPrzBuRFRvLjXdXl5lDmC7aL0zrZIUrfrMXHDw==";
const isIntegrationMode = process.env.IS_INTEGRATION_MODE === "true";
test("should sign transaction when allowed", async ({
page,
extensionId,
context,
}) => {
await loginToTestAccount({ page, extensionId, context, isIntegrationMode });
await allowDapp({ page });
// open a second tab and go to docs playground
const pageTwo = await page.context().newPage();
await pageTwo.waitForLoadState();
const txPopupPromise = page.context().waitForEvent("page");
await pageTwo.goto(
"https://play.freighter.app/#/extension/playground/signTransaction",
);
await pageTwo.getByRole("textbox").first().fill(TX_TO_SIGN);
await pageTwo
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageTwo.getByText("Sign Transaction XDR").click();
const txPopup = await txPopupPromise;
await stubAccountBalances(txPopup);
// Stub scan-tx with detailed asset diffs
await txPopup.route("**/scan-tx", async (route) => {
await route.fulfill({
json: {
data: {
simulation: {
status: "Success",
assets_diffs: {
GDF32CQINROD3E2LMCGZUDVMWTXCJFR5SBYVRJ7WAAIAS3P7DCVWZEFY: [
{
asset: {
type: "NATIVE",
code: "XLM",
},
in: null,
out: {
usd_price: 0,
summary: "Sent 5 XLM",
value: 5,
raw_value: 50000000,
},
asset_type: "NATIVE",
},
],
GBTYAFHGNZSTE4VBWZYAGB3SRGJEPTI5I4Y22KZ4JTVAN56LESB6JZOF: [
{
asset: {
type: "NATIVE",
code: "XLM",
},
in: {
usd_price: 0,
summary: "Received 5 XLM",
value: 5,
raw_value: 50000000,
},
out: null,
asset_type: "NATIVE",
},
],
},
exposures: {},
assets_ownership_diff: {},
address_details: [],
account_summary: {
account_assets_diffs: [
{
asset: {
type: "NATIVE",
code: "XLM",
},
in: null,
out: {
usd_price: 0,
summary: "Sent 5 XLM",
value: 5,
raw_value: 50000000,
},
asset_type: "NATIVE",
},
],
account_exposures: [],
account_ownerships_diff: [],
total_usd_diff: {
in: 0,
out: 0,
total: 0,
},
total_usd_exposure: {},
},
transaction_actions: null,
},
validation: {
status: "Success",
result_type: "Benign",
description: "",
reason: "",
classification: "",
features: [],
},
request_id: "9e460857-734b-405e-9e1f-86e656def1dd",
},
error: null,
},
});
});
await expect(txPopup.getByText("Confirm Transaction")).toBeVisible();
await expect(txPopup.getByText("Network")).toBeVisible();
await expect(txPopup.getByText("Test Net")).toBeVisible();
await expect(txPopup.getByText("GDF3…ZEFY")).toBeVisible();
await expect(txPopup.getByText("-5")).toBeVisible();
await expectPageToHaveScreenshot({
page: txPopup,
screenshot: "sign-transaction.png",
});
await txPopup.getByRole("button", { name: "Confirm" }).click();
await expect(pageTwo.locator("#result-signTx")).toHaveText(SIGNED_TX);
});
// TODO: once freighter-api is updated in npm to fix signing address, this test should be unskipped
test.skip("should sign transaction for a specific account when allowed", async ({
page,
extensionId,
context,
}) => {
await loginToTestAccount({ page, extensionId, context });
await allowDapp({ page });
// open a second tab and go to docs playground
const pageTwo = await page.context().newPage();
await pageTwo.waitForLoadState();
page.getByTestId("account-view-account-name").click();
page.getByText("Account 2").click();
await expect(page.getByTestId("account-header")).toBeVisible();
await allowDapp({ page });
await pageTwo.goto(
"https://play.freighter.app/#/extension/playground/signTransaction",
);
await pageTwo.getByRole("textbox").first().fill(TX_TO_SIGN);
await pageTwo
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageTwo.getByText("Sign Transaction XDR").click();
const txPopupPromise = page.context().waitForEvent("page");
const txPopup = await txPopupPromise;
await expect(txPopup.getByText("Confirm Transaction")).toBeVisible();
await expect(txPopup.getByText("GDF3…ZEFY")).toBeVisible();
await txPopup.getByRole("button", { name: "Confirm" }).click();
await expect(pageTwo.locator("#result-signTx")).toHaveText(SIGNED_TX);
});
// TODO: Add domain not allowed to SignTransaction when warning is redesigned
test("should not sign transaction when not allowed", async ({
page,
extensionId,
context,
}) => {
await loginToTestAccount({ page, extensionId, context });
// open a second tab and go to docs playground
const pageTwo = await page.context().newPage();
await pageTwo.waitForLoadState();
const txPopupPromise = page.context().waitForEvent("page");
await pageTwo.goto(
"https://play.freighter.app/#/extension/playground/signTransaction",
);
await pageTwo.getByRole("textbox").first().fill(TX_TO_SIGN);
await pageTwo
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageTwo.getByText("Sign Transaction XDR").click();
const txPopup = await txPopupPromise;
await stubAccountBalances(txPopup);
await expect(
txPopup.getByText(
"play.freighter.app is not currently connected to Freighter",
),
).toBeVisible();
await expect(txPopup.getByTestId("sign-transaction-sign")).toBeDisabled();
await expectPageToHaveScreenshot({
page: txPopup,
screenshot: "domain-not-allowed-sign-transaction.png",
});
});
test("should sign correct transactions when Freighter receives multiple requests", async ({
page,
extensionId,
context,
}) => {
await stubTokenDetails(page);
await stubAccountBalances(page);
await stubAccountHistory(page);
await stubTokenPrices(page);
await stubScanDapp(context);
await loginToTestAccount({ page, extensionId, context });
await allowDapp({ page });
// open a second tab and go to docs playground
const pageTwo = await page.context().newPage();
await pageTwo.waitForLoadState();
const txPopupPromise = page.context().waitForEvent("page");
await pageTwo.goto(
"https://play.freighter.app/#/extension/playground/signTransaction",
);
await pageTwo.getByRole("textbox").first().fill(TX_TO_SIGN);
await pageTwo
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageTwo.getByText("Sign Transaction XDR").click();
const txPopup = await txPopupPromise;
await stubAccountBalances(txPopup);
// Stub scan-tx with detailed asset diffs
await txPopup.route("**/scan-tx", async (route) => {
await route.fulfill({
json: {
data: {
simulation: {
status: "Success",
assets_diffs: {
GDF32CQINROD3E2LMCGZUDVMWTXCJFR5SBYVRJ7WAAIAS3P7DCVWZEFY: [
{
asset: {
type: "NATIVE",
code: "XLM",
},
in: null,
out: {
usd_price: 0,
summary: "Sent 5 XLM",
value: 5,
raw_value: 50000000,
},
asset_type: "NATIVE",
},
],
GBTYAFHGNZSTE4VBWZYAGB3SRGJEPTI5I4Y22KZ4JTVAN56LESB6JZOF: [
{
asset: {
type: "NATIVE",
code: "XLM",
},
in: {
usd_price: 0,
summary: "Received 5 XLM",
value: 5,
raw_value: 50000000,
},
out: null,
asset_type: "NATIVE",
},
],
},
exposures: {},
assets_ownership_diff: {},
address_details: [],
account_summary: {
account_assets_diffs: [
{
asset: {
type: "NATIVE",
code: "XLM",
},
in: null,
out: {
usd_price: 0,
summary: "Sent 5 XLM",
value: 5,
raw_value: 50000000,
},
asset_type: "NATIVE",
},
],
account_exposures: [],
account_ownerships_diff: [],
total_usd_diff: {
in: 0,
out: 0,
total: 0,
},
total_usd_exposure: {},
},
transaction_actions: null,
},
validation: {
status: "Success",
result_type: "Benign",
description: "",
reason: "",
classification: "",
features: [],
},
request_id: "9e460857-734b-405e-9e1f-86e656def1dd",
},
error: null,
},
});
});
await expect(txPopup.getByText("Confirm Transaction")).toBeVisible();
await expect(txPopup.getByText("GDF3…ZEFY")).toBeVisible();
await expect(txPopup.getByText("-5")).toBeVisible();
// now open a third tab and send another transaction signing request before approving the first one
const pageThree = await page.context().newPage();
await pageThree.waitForLoadState();
const txPopupPromise2 = page.context().waitForEvent("page");
await pageThree.goto(
"https://play.freighter.app/#/extension/playground/signTransaction",
);
await pageThree
.getByRole("textbox")
.first()
.fill(
"AAAAAgAAAADLvQoIbFw9k0tgjZoOrLTuJJY9kHFYp/YAEAlt/xirbAAAAGQAAAUVAAAA/QAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAQAAAABngBTmbmUycqG2cAMHcomSR80dRzGtKzxM6gb3yySD5AAAAAAAAAAABfXhAAAAAAAAAAAA",
);
await pageThree
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageThree.getByText("Sign Transaction XDR").click();
const txPopup2 = await txPopupPromise2;
await expect(txPopup2.getByText("Confirm Transaction")).toBeVisible();
await expect(txPopup2.getByText("GDF3…ZEFY")).toBeVisible();
await expect(txPopup2.getByText("-10")).toBeVisible();
await txPopup.getByRole("button", { name: "Confirm" }).click();
await expect(pageTwo.locator("#result-signTx")).toHaveText(SIGNED_TX);
});
test("should sign auth entry when allowed", async ({
page,
extensionId,
context,
}) => {
await loginToTestAccount({ page, extensionId, context, isIntegrationMode });
await allowDapp({ page });
// open a second tab and go to docs playground
const pageTwo = await page.context().newPage();
await pageTwo.waitForLoadState();
const popupPromise = page.context().waitForEvent("page");
await pageTwo.goto(
"https://play.freighter.app/#/extension/playground/signAuthEntry",
);
await pageTwo.getByRole("textbox").first().fill(AUTH_ENTRY_TO_SIGN);
await pageTwo
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageTwo
.getByText("Sign Authorization Entry XDR")
.click({ force: true });
const popup = await popupPromise;
await expect(popup.getByText("Confirm Authorization").first()).toBeVisible();
await expect(popup.getByText("Network")).toBeVisible();
await expect(popup.getByText("Test Net")).toBeVisible();
await expectPageToHaveScreenshot({
page: popup,
screenshot: "sign-auth-entry.png",
});
await popup.getByRole("button", { name: "Confirm" }).click();
await expect(pageTwo.locator("#result-signAuth")).toHaveText(
SIGNED_AUTH_ENTRY,
);
});
// unlike sign tx and add token, if a dapp is not allowed, it shows the connection request modal
test("should not sign auth entry when not allowed", async ({
page,
extensionId,
context,
}) => {
await loginToTestAccount({ page, extensionId, context, isIntegrationMode });
// open a second tab and go to docs playground
const pageTwo = await page.context().newPage();
await pageTwo.waitForLoadState();
const popupPromise = page.context().waitForEvent("page");
await pageTwo.goto(
"https://play.freighter.app/#/extension/playground/signAuthEntry",
);
await pageTwo.getByRole("textbox").first().fill(AUTH_ENTRY_TO_SIGN);
await pageTwo
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageTwo
.getByText("Sign Authorization Entry XDR")
.click({ force: true });
const popup = await popupPromise;
await expect(popup.getByText("Connection Request")).toBeVisible();
});
test("should sign auth entry for a selected account when allowed", async ({
page,
extensionId,
context,
}) => {
await loginToTestAccount({ page, extensionId, context, isIntegrationMode });
await allowDapp({ page });
// open a second tab and go to docs playground
const pageTwo = await page.context().newPage();
await pageTwo.waitForLoadState();
await page.getByTestId("account-view-account-name").click();
await page.getByText("Account 2").click();
await expect(page.getByTestId("account-header")).toBeVisible();
await allowDapp({ page });
await pageTwo.goto(
"https://play.freighter.app/#/extension/playground/signAuthEntry",
);
await pageTwo.getByRole("textbox").first().fill(AUTH_ENTRY_TO_SIGN);
await pageTwo
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageTwo
.getByRole("textbox")
.nth(2)
.fill("GDF32CQINROD3E2LMCGZUDVMWTXCJFR5SBYVRJ7WAAIAS3P7DCVWZEFY");
const popupPromise = page.context().waitForEvent("page");
await pageTwo.getByText("Sign Authorization Entry XDR").click();
const popup = await popupPromise;
await expect(popup.getByText("Confirm Authorization").first()).toBeVisible();
await expect(popup.getByText("GDF3…ZEFY")).toBeVisible();
await popup.getByRole("button", { name: "Confirm" }).click();
await expect(pageTwo.locator("#result-signAuth-signer")).toHaveText(
"GDF32CQINROD3E2LMCGZUDVMWTXCJFR5SBYVRJ7WAAIAS3P7DCVWZEFY",
);
await expect(pageTwo.locator("#result-signAuth")).toHaveText(
SIGNED_AUTH_ENTRY,
);
});
test("should sign message string when allowed", async ({
page,
extensionId,
context,
}) => {
await loginToTestAccount({ page, extensionId, context, isIntegrationMode });
await allowDapp({ page });
// open a second tab and go to docs playground
const pageTwo = await page.context().newPage();
await pageTwo.waitForLoadState();
const popupPromise = page.context().waitForEvent("page");
await pageTwo.goto(
"https://play.freighter.app/#/extension/playground/signMessage",
);
await pageTwo.getByRole("textbox").first().fill(MSG_TO_SIGN);
await pageTwo
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageTwo.getByText("Sign message").click();
const popup = await popupPromise;
await expect(popup.getByText(MSG_TO_SIGN)).toBeVisible();
await expect(popup.getByText("Network")).toBeVisible();
await expect(popup.getByText("Test Net")).toBeVisible();
await expectPageToHaveScreenshot({
page: popup,
screenshot: "sign-message.png",
});
await popup.getByTestId("sign-message-approve-button").click();
await expect(pageTwo.locator("#result-signMsg")).toHaveText(SIGNED_MSG);
await expect(pageTwo.locator("#result-signMsg-signer")).toHaveText(
"GDF32CQINROD3E2LMCGZUDVMWTXCJFR5SBYVRJ7WAAIAS3P7DCVWZEFY",
);
});
test("should sign message long string when allowed", async ({
page,
extensionId,
context,
}) => {
await loginToTestAccount({ page, extensionId, context });
await allowDapp({ page });
// open a second tab and go to docs playground
const pageTwo = await page.context().newPage();
await pageTwo.waitForLoadState();
const popupPromise = page.context().waitForEvent("page");
await pageTwo.goto(
"https://play.freighter.app/#/extension/playground/signMessage",
);
await pageTwo.getByRole("textbox").first().fill(LONG_MSG_TO_SIGN);
await pageTwo
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageTwo.getByText("Sign message").click();
const popup = await popupPromise;
await expect(popup.getByText(LONG_MSG_TO_SIGN)).toBeVisible();
await expectPageToHaveScreenshot({
page: popup,
screenshot: "sign-message-long-string.png",
});
await popup.getByTestId("sign-message-approve-button").click();
await expect(pageTwo.locator("#result-signMsg")).toHaveText(LONG_SIGNED_MSG);
await expect(pageTwo.locator("#result-signMsg-signer")).toHaveText(
"GDF32CQINROD3E2LMCGZUDVMWTXCJFR5SBYVRJ7WAAIAS3P7DCVWZEFY",
);
});
test("should sign correct message when Freighter receives multiple requests", async ({
page,
extensionId,
context,
}) => {
await stubTokenDetails(page);
await stubAccountBalances(page);
await stubAccountHistory(page);
await stubTokenPrices(page);
await stubScanDapp(context);
await loginToTestAccount({ page, extensionId, context, isIntegrationMode });
await allowDapp({ page });
// open a second tab and go to docs playground
const pageTwo = await page.context().newPage();
await pageTwo.waitForLoadState();
const popupPromise = page.context().waitForEvent("page");
await pageTwo.goto(
"https://play.freighter.app/#/extension/playground/signMessage",
);
await pageTwo.getByRole("textbox").first().fill(MSG_TO_SIGN);
await pageTwo
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageTwo.getByText("Sign message").click();
const popup = await popupPromise;
await expect(popup.getByText(MSG_TO_SIGN)).toBeVisible();
await popup.getByTestId("sign-message-approve-button").click();
// now open a third tab and send another transaction signing request before approving the first one
const pageThree = await page.context().newPage();
await pageThree.waitForLoadState();
const popupPromise2 = page.context().waitForEvent("page");
await pageThree.goto(
"https://play.freighter.app/#/extension/playground/signMessage",
);
await pageThree.getByRole("textbox").first().fill("new message");
await pageThree
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageThree.getByText("Sign message").click();
const popup2 = await popupPromise2;
await expect(popup2.getByText("new message")).toBeVisible();
await expect(pageTwo.locator("#result-signMsg")).toHaveText(SIGNED_MSG);
await expect(pageTwo.locator("#result-signMsg-signer")).toHaveText(
"GDF32CQINROD3E2LMCGZUDVMWTXCJFR5SBYVRJ7WAAIAS3P7DCVWZEFY",
);
});
test("should sign message json when allowed", async ({
page,
extensionId,
context,
}) => {
await loginToTestAccount({ page, extensionId, context, isIntegrationMode });
await allowDapp({ page });
// open a second tab and go to docs playground
const pageTwo = await page.context().newPage();
await pageTwo.waitForLoadState();
const popupPromise = page.context().waitForEvent("page");
await pageTwo.goto(
"https://play.freighter.app/#/extension/playground/signMessage",
);
await pageTwo.getByRole("textbox").first().fill(JSON_MSG_TO_SIGN);
await pageTwo
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageTwo.getByText("Sign message").click();
const popup = await popupPromise;
await expect(popup.getByText("Hello, World!")).toBeVisible();
await expect(popup.getByText("Hello, Universe!")).toBeVisible();
await expect(popup.getByText("111111")).toBeVisible();
await expect(popup.getByText("true")).toBeVisible();
await expect(popup.getByText("tag1")).toBeVisible();
await expect(popup.getByText("tag2")).toBeVisible();
await expect(popup.getByText("Hello, Universe!")).toBeVisible();
await expect(popup.getByText("222222")).toBeVisible();
await expect(popup.getByText("false")).toBeVisible();
await expect(popup.getByText("tag01")).toBeVisible();
await expect(popup.getByText("tag02")).toBeVisible();
await expectPageToHaveScreenshot({
page: popup,
screenshot: "sign-message-json.png",
});
await popup.getByTestId("sign-message-approve-button").click();
await expect(pageTwo.locator("#result-signMsg")).toHaveText(JSON_SIGNED_MSG);
await expect(pageTwo.locator("#result-signMsg-signer")).toHaveText(
"GDF32CQINROD3E2LMCGZUDVMWTXCJFR5SBYVRJ7WAAIAS3P7DCVWZEFY",
);
});
test("should sign message for a specific account when allowed", async ({
page,
extensionId,
context,
}) => {
await loginToTestAccount({ page, extensionId, context, isIntegrationMode });
await allowDapp({ page });
// open a second tab and go to docs playground
const pageTwo = await page.context().newPage();
await pageTwo.waitForLoadState();
await page.getByTestId("account-view-account-name").click();
await page.getByText("Account 2").click();
await expect(page.getByTestId("account-header")).toBeVisible();
await allowDapp({ page });
await pageTwo.goto(
"https://play.freighter.app/#/extension/playground/signMessage",
);
await pageTwo.getByRole("textbox").first().fill(MSG_TO_SIGN);
await pageTwo
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageTwo
.getByRole("textbox")
.nth(2)
.fill("GDF32CQINROD3E2LMCGZUDVMWTXCJFR5SBYVRJ7WAAIAS3P7DCVWZEFY");
const popupPromise = page.context().waitForEvent("page");
await pageTwo.getByText("Sign Message").click();
const popup = await popupPromise;
await expect(popup.getByText("Sign message")).toBeVisible();
await expect(popup.getByText("GDF3…ZEFY")).toBeVisible();
await popup.getByRole("button", { name: "Confirm" }).click();
await expect(pageTwo.locator("#result-signMsg-signer")).toHaveText(
"GDF32CQINROD3E2LMCGZUDVMWTXCJFR5SBYVRJ7WAAIAS3P7DCVWZEFY",
);
await expect(pageTwo.locator("#result-signMsg")).toHaveText(SIGNED_MSG);
});
// unlike sign tx and add token, if a dapp is not allowed, it shows the connection request modal
test("should not sign message when not allowed", async ({
page,
extensionId,
context,
}) => {
await loginToTestAccount({ page, extensionId, context, isIntegrationMode });
// open a second tab and go to docs playground
const pageTwo = await page.context().newPage();
await pageTwo.waitForLoadState();
const popupPromise = page.context().waitForEvent("page");
await pageTwo.goto(
"https://play.freighter.app/#/extension/playground/signMessage",
);
await pageTwo.getByRole("textbox").first().fill(MSG_TO_SIGN);
await pageTwo
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageTwo.getByText("Sign message").click({ force: true });
const popup = await popupPromise;
await expect(popup.getByText("Connection Request")).toBeVisible();
});
test("should add token when allowed", async ({
page,
extensionId,
context,
}) => {
await stubIsSac(context);
await loginToTestAccount({ page, extensionId, context, isIntegrationMode });
await allowDapp({ page });
// open a second tab and go to docs playground
const pageTwo = await page.context().newPage();
await pageTwo.waitForLoadState();
const popupPromise = page.context().waitForEvent("page");
await pageTwo.goto(
"https://play.freighter.app/#/extension/playground/addToken",
);
await pageTwo.getByRole("textbox").first().fill(TEST_TOKEN_ADDRESS);
await pageTwo
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageTwo.getByText("Add Token").click();
const popup = await popupPromise;
await expect(popup.getByText("E2E Token")).toBeDefined();
await expectPageToHaveScreenshot({
page: popup,
screenshot: "add-token.png",
});
await popup.getByTestId("add-token-approve").click();
await expect(pageTwo.locator("#result-addToken")).toContainText(
"Token added:",
);
});
test("should not add token when not allowed", async ({
page,
extensionId,
context,
}) => {
if (!isIntegrationMode) {
await stubIsSac(context);
}
await loginToTestAccount({ page, extensionId, context, isIntegrationMode });
// open a second tab and go to docs playground
const pageTwo = await page.context().newPage();
await pageTwo.waitForLoadState();
const popupPromise = page.context().waitForEvent("page");
await pageTwo.goto(
"https://play.freighter.app/#/extension/playground/addToken",
);
await pageTwo.getByRole("textbox").first().fill(TEST_TOKEN_ADDRESS);
await pageTwo
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageTwo.getByText("Add Token").click({ force: true });
const popup = await popupPromise;
await expect(
popup.getByText(
"play.freighter.app is not currently connected to Freighter",
),
).toBeVisible();
await expect(popup.getByTestId("add-token-approve")).toBeDisabled();
await expectPageToHaveScreenshot({
page: popup,
screenshot: "domain-not-allowed-add-token.png",
});
});
test("should get public key when logged out", async ({
page,
extensionId,
context,
}) => {
await loginToTestAccount({ page, extensionId, context, isIntegrationMode });
await page.getByTestId("account-options-dropdown").click();
await page.getByText("Settings").click();
await page.getByText("Log Out").click();
await expect(page.getByText("Welcome back")).toBeVisible();
// open a second tab and go to docs playground
const pageTwo = await page.context().newPage();
await pageTwo.waitForLoadState();
const popupPromise = page.context().waitForEvent("page");
await pageTwo.goto(
"https://play.freighter.app/#/extension/playground/requestAccess",
);
await pageTwo.getByText("Request Access").click();
const popup = await popupPromise;
await expect(popup.getByText("Welcome back")).toBeVisible();
await popup.locator("#password-input").fill("My-password123");
await popup.getByRole("button", { name: "Unlock" }).click();
await expect(popup.getByText("Connection Request")).toBeVisible();
await popup.getByTestId("grant-access-connect-button").click();
await expect(pageTwo.locator("#result-requestAccess")).toHaveText(
"GDF32CQINROD3E2LMCGZUDVMWTXCJFR5SBYVRJ7WAAIAS3P7DCVWZEFY",
);
});
// ── Network validation tests ──────────────────────────────────────────────────
test("should show network mismatch warning when signing auth entry for wrong network", async ({
page,
extensionId,
context,
}) => {
await loginToTestAccount({ page, extensionId, context, isIntegrationMode });
// Switch to MainNet so the wallet's expected networkId is the MainNet hash,
// while AUTH_ENTRY_TO_SIGN embeds the TestNet networkId.
await switchToMainnet(page);
await allowDapp({ page });
const pageTwo = await page.context().newPage();
await pageTwo.waitForLoadState();
const popupPromise = page.context().waitForEvent("page");
await pageTwo.goto(
"https://play.freighter.app/#/extension/playground/signAuthEntry",
);
await pageTwo.getByRole("textbox").first().fill(AUTH_ENTRY_TO_SIGN);
await pageTwo
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageTwo
.getByText("Sign Authorization Entry XDR")
.click({ force: true });
const popup = await popupPromise;
await expect(
popup.getByText(/The authorization entry is for Test Net/),
).toBeVisible();
await expect(
popup.getByText(
"Signing this authorization is not possible at the moment.",
),
).toBeVisible();
});
test("should block signing an auth entry bound to a different account", async ({
page,
extensionId,
context,
}) => {
await loginToTestAccount({ page, extensionId, context, isIntegrationMode });
// Stay on TestNet so the embedded networkId matches (passes the network
// check) and we reach the bound-address mismatch check. The preimage is
// bound to GAAQCAIB… which is not the test account.
await allowDapp({ page });
const pageTwo = await page.context().newPage();
await pageTwo.waitForLoadState();
const popupPromise = page.context().waitForEvent("page");
await pageTwo.goto(
"https://play.freighter.app/#/extension/playground/signAuthEntry",
);
await pageTwo.getByRole("textbox").first().fill(V2_AUTH_ENTRY_WRONG_ADDRESS);
await pageTwo
.getByRole("textbox")
.nth(1)
.fill("Test SDF Network ; September 2015");
await pageTwo
.getByText("Sign Authorization Entry XDR")
.click({ force: true });
const popup = await popupPromise;
await expect(
popup.getByText("Freighter is set to a different account"),
).toBeVisible();
await expect(
popup.getByText(
"Signing this authorization is not possible at the moment.",
),
).toBeVisible();
});