-
Notifications
You must be signed in to change notification settings - Fork 1
/
tests.spec.ts
2028 lines (1862 loc) · 84.9 KB
/
tests.spec.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
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 * as config from './config';
const path = require('path');
import { setupFixtures, variables as test, deleteFile, getResult, clear, clearInput, setSecretKey, seletAction, setWasm, submit, get_state_root_hash, sign, screenshot, delay, get_block } from './helpers';
const puppeteer = require('puppeteer');
describe('Angular App Tests', () => {
beforeAll(async () => {
setupFixtures();
test.browser = await puppeteer.launch({ headless: 'new' });
test.page = await test.browser.newPage();
await test.page.goto(config.app_address);
await test.page.setViewport({
width: 1920,
height: 1080,
});
// test.page
// .on('console', (message: { type: () => string; text: () => any; }) =>
// console.log(`${message.type().substr(0, 3).toUpperCase()} ${message.text()}`))
// .on('pageerror', (message: any) => console.log(message))
// .on('requestfailed', (request: { failure: () => { (): any; new(): any; errorText: any; }; url: () => any; }) =>
// console.log(`${request.failure().errorText} ${request.url()}`));
});
describe('Loading', () => {
it('should have a title', async () => {
const title = await test.page.title();
expect(title).toBe('Casper Client');
});
it('should have a state_root_hash', async () => {
await test.page.waitForSelector('[e2e-id="state_root_hash"]');
const state_root_hash = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="state_root_hash"]')?.textContent;
});
const pattern = /^state root hash is ([0-9a-f]{64})$/i;
expect(state_root_hash).toMatch(pattern);
test.state_root_hash_default = (state_root_hash.match(pattern) || [])[1] || '';
expect(test.state_root_hash_default).toBeDefined();
});
it('should have action to get_node_status by default', async () => {
await test.page.waitForSelector('[e2e-id="selectActionElt"]');
const action = await test.page.evaluate(() => {
return (document.querySelector('[e2e-id="selectActionElt"]') as HTMLSelectElement).value;
});
expect(action).toBe('get_node_status');
await getResult();
});
it('should have chain_name and rpc_address', async () => {
await test.page.waitForSelector('[e2e-id="selectActionElt"]');
const chainname = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="chain_name"]')?.textContent;
});
const rpc_address = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="rpc_address"]')?.textContent;
});
expect(chainname).toBe(config.chain_name);
expect(rpc_address).toBe(config.app_address);
});
it('should clear result', async () => {
await test.page.waitForSelector('[e2e-id="clear result"]');
let result = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
expect(result).toBeDefined();
await clear();
result = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
expect(result).toBeUndefined();
});
});
describe('Setting public key and get account info', () => {
it('should set public key', async () => {
await test.page.waitForSelector('[e2e-id="publicKeyElt"]');
await clearInput('[e2e-id="publicKeyElt"]');
await test.page.type('[e2e-id="publicKeyElt"]', test.account);
await test.page.$eval('[e2e-id="publicKeyElt"]', (e: { blur: () => any; }) => e.blur());
const account_input = await test.page.evaluate(() => {
return (document.querySelector('[e2e-id="publicKeyElt"]') as HTMLInputElement).value;
});
const pattern = /^[0-9a-f]{66}$/i;
expect(account_input).toMatch(pattern);
await test.page.waitForSelector('[e2e-id="main_purse"]');
await test.page.waitForSelector('[e2e-id="account_hash"]');
});
it('should have a main purse uref', async () => {
await test.page.waitForSelector('[e2e-id="main_purse"]');
const main_purse = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="main_purse"]')?.textContent;
});
const pattern = /^main purse is uref-[0-9a-f\-]{68}$/i;
expect(main_purse).toMatch(pattern);
});
it('should have an account hash', async () => {
await test.page.waitForSelector('[e2e-id="account_hash"]');
const account_hash = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="account_hash"]')?.textContent;
});
const pattern = /^account hash is account-hash-[0-9a-f]{64}$/i;
expect(account_hash).toMatch(pattern);
});
});
describe('Contract install deploy', () => {
beforeEach(async () => {
await test.page.reload();
await seletAction('install_deploy');
await setSecretKey();
await test.page.waitForSelector('[e2e-id="paymentAmountElt"]');
await test.page.waitForSelector('[e2e-id="argsSimpleElt"]');
await clearInput('[e2e-id="argsSimpleElt"]');
await test.page.waitForSelector('[e2e-id="argsJsonElt"]');
await clearInput('[e2e-id="argsJsonElt"]');
});
it('should install hello contract', async () => {
await test.page.type('[e2e-id="paymentAmountElt"]', config.payment_amount);
await test.page.type('[e2e-id="argsSimpleElt"]', config.args_simple);
await setWasm(config.contract_hello);
await submit();
await test.page.waitForSelector('[e2e-id="result"]');
let deploy = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
expect(deploy).toBeDefined();
deploy = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
deploy = JSON.parse(deploy);
expect(deploy?.deploy_hash).toBeDefined();
test.deploy_hash = deploy.deploy_hash;
});
});
describe('Contract install transaction', () => {
beforeEach(async () => {
await test.page.reload();
await seletAction('install');
await setSecretKey();
await test.page.waitForSelector('[e2e-id="paymentAmountElt"]');
await test.page.waitForSelector('[e2e-id="argsSimpleElt"]');
await clearInput('[e2e-id="argsSimpleElt"]');
await test.page.waitForSelector('[e2e-id="argsJsonElt"]');
await clearInput('[e2e-id="argsJsonElt"]');
});
it('should install cep78 contract', async () => {
await test.page.type('[e2e-id="paymentAmountElt"]', config.payment_amount_contract_cep78);
await test.page.type('[e2e-id="argsJsonElt"]', config.args_json);
await setWasm(config.contract_cep78);
await submit();
await test.page.waitForSelector('[e2e-id="result"]');
let transaction = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
expect(transaction).toBeDefined();
transaction = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
transaction = JSON.parse(transaction);
expect(transaction?.transaction_hash).toBeDefined();
test.transaction_hash = transaction.transaction_hash?.Version1?.toString();
});
});
describe.skip('Rpc call get_account', () => {
beforeAll(async () => {
await test.page.reload();
await seletAction('get_account');
});
afterEach(async () => {
await clear();
});
it('should get_account from public key', async () => {
await test.page.waitForSelector('[e2e-id="accountIdentifierElt"]');
await clearInput('[e2e-id="accountIdentifierElt"]');
await test.page.type('[e2e-id="accountIdentifierElt"]', test.account);
await submit();
const result = await getResult();
const pattern = /\"account-hash-[0-9a-f]{64}\"/i;
expect(result).toMatch(pattern);
});
it('should get_account from account hash', async () => {
await test.page.waitForSelector('[e2e-id="accountIdentifierElt"]');
await clearInput('[e2e-id="accountIdentifierElt"]');
await test.page.type('[e2e-id="accountIdentifierElt"]', test.account_hash);
await submit();
const result = await getResult();
const pattern = new RegExp(`"${test.account_hash}"`, 'i');
expect(result).toMatch(pattern);
});
it('should get_account from public key with block', async () => {
await test.page.waitForSelector('[e2e-id="accountIdentifierElt"]');
await clearInput('[e2e-id="accountIdentifierElt"]');
await test.page.type('[e2e-id="accountIdentifierElt"]', test.account);
await test.page.waitForSelector('[e2e-id="blockIdentifierHeightElt"]');
await test.page.type('[e2e-id="blockIdentifierHeightElt"]', test.block_height);
await submit();
let result = await getResult();
const pattern = /\"account-hash-[0-9a-f]{64}\"/i;
expect(result).toMatch(pattern);
await clear();
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await test.page.type('[e2e-id="blockIdentifierHashElt"]', test.block_hash);
await submit();
result = await getResult();
expect(result).toMatch(pattern);
});
});
describe('Rpc call get_auction_info', () => {
beforeAll(async () => {
await test.page.reload();
await seletAction('get_auction_info');
});
afterEach(async () => {
await clear();
});
it('should get_auction_info', async () => {
await submit();
await getResult();
});
});
describe('Rpc call get_balance', () => {
beforeAll(async () => {
await test.page.reload();
await test.page.waitForSelector('[e2e-id="publicKeyElt"]');
await clearInput('[e2e-id="publicKeyElt"]');
await test.page.type('[e2e-id="publicKeyElt"]', test.account);
await test.page.$eval('[e2e-id="publicKeyElt"]', (e: { blur: () => any; }) => e.blur());
await test.page.waitForSelector('[e2e-id="main_purse"]');
await seletAction('get_balance');
await test.page.waitForSelector('[e2e-id="purseUrefElt"]');
await test.page.waitForSelector('[e2e-id="stateRootHashElt"]');
});
afterEach(async () => {
await clear();
});
it('should get_balance with state root hash', async () => {
await test.page.type('[e2e-id="stateRootHashElt"]', test.state_root_hash_default);
let main_purse = await test.page.evaluate(() => {
return (document.querySelector('[e2e-id="purseUrefElt"]') as HTMLInputElement).value;
});
expect(main_purse).toBeDefined();
await submit();
await getResult();
});
it('should get_balance without state root hash', async () => {
await clearInput('[e2e-id="stateRootHashElt"]');
await submit();
await getResult();
});
});
describe('Rpc call get_block', () => {
beforeAll(async () => {
await test.page.reload();
await seletAction('get_block');
await test.page.waitForSelector('[e2e-id="blockIdentifierHeightElt"]');
await test.page.waitForSelector('[e2e-id="blockIdentifierHashElt"]');
});
afterEach(async () => {
await clear();
});
it('should get_block', async () => {
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await clearInput('[e2e-id="blockIdentifierHashElt"]');
await submit();
await getResult();
});
it('should get_block with block height', async () => {
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await clearInput('[e2e-id="blockIdentifierHashElt"]');
await test.page.type('[e2e-id="blockIdentifierHeightElt"]', test.block_height);
await submit();
await getResult();
});
it('should get_block with block hash', async () => {
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await clearInput('[e2e-id="blockIdentifierHashElt"]');
await test.page.type('[e2e-id="blockIdentifierHashElt"]', test.block_hash);
await submit();
await getResult();
});
});
describe('Rpc call get_block_transfers', () => {
beforeAll(async () => {
await test.page.reload();
await seletAction('get_block_transfers');
await test.page.waitForSelector('[e2e-id="blockIdentifierHeightElt"]');
});
afterEach(async () => {
await clear();
});
it('should get_block_transfers', async () => {
await submit();
await getResult();
});
it('should get_block_transfers with block height', async () => {
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await test.page.type('[e2e-id="blockIdentifierHeightElt"]', test.block_height);
await submit();
await getResult();
});
it('should get_block_transfers with block hash', async () => {
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await clearInput('[e2e-id="blockIdentifierHashElt"]');
await test.page.type('[e2e-id="blockIdentifierHashElt"]', test.block_hash);
await submit();
await getResult();
});
});
describe('Rpc call get_chainspec', () => {
beforeAll(async () => {
await test.page.reload();
await seletAction('get_chainspec');
});
afterEach(async () => {
await clear();
});
it('should get_chainspec', async () => {
await submit();
await getResult();
});
});
describe('Rpc call get_era_info', () => {
beforeAll(async () => {
await test.page.reload();
await seletAction('get_era_info');
await test.page.waitForSelector('[e2e-id="blockIdentifierHashElt"]');
await test.page.waitForSelector('[e2e-id="blockIdentifierHeightElt"]');
});
afterEach(async () => {
await clear();
});
it('should get_era_info', async () => {
await submit();
await getResult();
});
it('should get_era_info with block height', async () => {
await test.page.waitForSelector('[e2e-id="blockIdentifierHeightElt"]');
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await test.page.type('[e2e-id="blockIdentifierHeightElt"]', test.block_height);
await submit();
await getResult();
});
it('should get_era_info with block hash', async () => {
await test.page.waitForSelector('[e2e-id="blockIdentifierHeightElt"]');
await test.page.waitForSelector('[e2e-id="blockIdentifierHashElt"]');
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await clearInput('[e2e-id="blockIdentifierHashElt"]');
await test.page.type('[e2e-id="blockIdentifierHashElt"]', test.block_hash);
await submit();
await getResult();
});
});
describe('Rpc call get_node_status', () => {
beforeAll(async () => {
await test.page.reload();
await seletAction('get_node_status');
});
afterEach(async () => {
await clear();
});
it('should get_node_status', async () => {
await submit();
await getResult();
});
});
describe('Rpc call get_peers', () => {
beforeAll(async () => {
await test.page.reload();
await seletAction('get_peers');
});
afterEach(async () => {
await clear();
});
it('should get_peers', async () => {
await submit();
await getResult();
});
});
describe('Rpc call get_state_root_hash', () => {
beforeAll(async () => {
await test.page.reload();
await seletAction('get_state_root_hash');
});
afterEach(async () => {
await clear();
});
it('should get_state_root_hash', async () => {
await submit();
await getResult();
});
});
describe('Rpc call get_validator_changes', () => {
beforeAll(async () => {
await test.page.reload();
await seletAction('get_validator_changes');
});
afterEach(async () => {
await clear();
});
it('should get_validator_changes', async () => {
await submit();
await getResult();
});
});
describe('Rpc call list_rpcs', () => {
beforeAll(async () => {
await test.page.reload();
await seletAction('list_rpcs');
});
afterEach(async () => {
await clear();
});
it('should list_rpcs', async () => {
await submit();
await getResult();
});
});
describe('Rpc call query_balance', () => {
beforeAll(async () => {
await test.page.reload();
await test.page.waitForSelector('[e2e-id="publicKeyElt"]');
await clearInput('[e2e-id="publicKeyElt"]');
await test.page.type('[e2e-id="publicKeyElt"]', test.account);
await test.page.$eval('[e2e-id="publicKeyElt"]', (e: { blur: () => any; }) => e.blur());
await test.page.waitForSelector('[e2e-id="main_purse"]');
await seletAction('query_balance');
await test.page.waitForSelector('[e2e-id="stateRootHashElt"]');
await test.page.waitForSelector('[e2e-id="purseIdentifierElt"]');
});
afterEach(async () => {
await clear();
});
it('should query_balance with purse identifier', async () => {
await test.page.type('[e2e-id="stateRootHashElt"]', test.state_root_hash_default);
await submit();
await getResult();
});
it('should query_balance without state root hash', async () => {
await clearInput('[e2e-id="stateRootHashElt"]');
await submit();
await getResult();
});
it('should query_balance with public key', async () => {
await clearInput('[e2e-id="purseIdentifierElt"]');
await test.page.type('[e2e-id="purseIdentifierElt"]', test.account);
await submit();
await getResult();
});
it('should query_balance with account hash', async () => {
await clearInput('[e2e-id="purseIdentifierElt"]');
await test.page.type('[e2e-id="purseIdentifierElt"]', test.account_hash);
await submit();
await getResult();
});
it('should query_balance with block height', async () => {
await test.page.waitForSelector('[e2e-id="blockIdentifierHeightElt"]');
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await test.page.type('[e2e-id="blockIdentifierHeightElt"]', test.block_height);
await submit();
await getResult();
});
it('should query_balance with block hash', async () => {
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await clearInput('[e2e-id="blockIdentifierHashElt"]');
await test.page.type('[e2e-id="blockIdentifierHashElt"]', test.block_hash);
await submit();
await getResult();
});
});
describe('Rpc call query_balance details', () => {
beforeAll(async () => {
await test.page.reload();
await test.page.waitForSelector('[e2e-id="publicKeyElt"]');
await clearInput('[e2e-id="publicKeyElt"]');
await test.page.type('[e2e-id="publicKeyElt"]', test.account);
await test.page.$eval('[e2e-id="publicKeyElt"]', (e: { blur: () => any; }) => e.blur());
await test.page.waitForSelector('[e2e-id="main_purse"]');
await seletAction('query_balance_details');
await test.page.waitForSelector('[e2e-id="stateRootHashElt"]');
await test.page.waitForSelector('[e2e-id="purseIdentifierElt"]');
});
afterEach(async () => {
await clear();
});
it('should query_balance details with purse identifier', async () => {
await test.page.type('[e2e-id="stateRootHashElt"]', test.state_root_hash_default);
await submit();
await getResult();
});
it('should query_balance details without state root hash', async () => {
await clearInput('[e2e-id="stateRootHashElt"]');
await submit();
await getResult();
});
it('should query_balance details with public key', async () => {
await clearInput('[e2e-id="purseIdentifierElt"]');
await test.page.type('[e2e-id="purseIdentifierElt"]', test.account);
await submit();
await getResult();
});
it('should query_balance details with account hash', async () => {
await clearInput('[e2e-id="purseIdentifierElt"]');
await test.page.type('[e2e-id="purseIdentifierElt"]', test.account_hash);
await submit();
await getResult();
});
it('should query_balance details with block height', async () => {
await test.page.waitForSelector('[e2e-id="blockIdentifierHeightElt"]');
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await test.page.type('[e2e-id="blockIdentifierHeightElt"]', test.block_height);
await submit();
await getResult();
});
it('should query_balance details with block hash', async () => {
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await clearInput('[e2e-id="blockIdentifierHashElt"]');
await test.page.type('[e2e-id="blockIdentifierHashElt"]', test.block_hash);
await submit();
await getResult();
});
});
describe('Rpc call get_deploy', () => {
beforeAll(async () => {
await test.page.reload();
await seletAction('get_deploy');
});
afterEach(async () => {
await clear();
});
it('should get_deploy', async () => {
expect(test.deploy_hash).toBeDefined();
await test.page.waitForSelector('[e2e-id="deployHashElt"]');
await clearInput('[e2e-id="deployHashElt"]');
await test.page.type('[e2e-id="deployHashElt"]', test.deploy_hash);
await submit();
await getResult();
});
});
describe('Rpc call get_transaction', () => {
beforeAll(async () => {
await test.page.reload();
await seletAction('get_transaction');
});
afterEach(async () => {
await clear();
});
it('should get_transaction', async () => {
expect(test.deploy_hash).toBeDefined();
await test.page.waitForSelector('[e2e-id="transactionHashElt"]');
await clearInput('[e2e-id="transactionHashElt"]');
await test.page.type('[e2e-id="transactionHashElt"]', test.transaction_hash);
await submit();
await getResult();
});
});
describe('Rpc call query_global_state', () => {
beforeAll(async () => {
await test.page.reload();
await test.page.waitForSelector('[e2e-id="publicKeyElt"]');
await clearInput('[e2e-id="publicKeyElt"]');
await test.page.type('[e2e-id="publicKeyElt"]', test.account);
await test.page.$eval('[e2e-id="publicKeyElt"]', (e: { blur: () => any; }) => e.blur());
await test.page.waitForSelector('[e2e-id="main_purse"]');
await seletAction('query_global_state');
await test.page.waitForSelector('[e2e-id="stateRootHashElt"]');
await test.page.waitForSelector('[e2e-id="queryKeyElt"]');
await test.page.waitForSelector('[e2e-id="queryPathElt"]');
await test.page.waitForSelector('[e2e-id="blockIdentifierHeightElt"]');
});
afterEach(async () => {
await clear();
});
it('should query_global_state with account key', async () => {
await test.page.type('[e2e-id="stateRootHashElt"]', test.state_root_hash_default);
await test.page.type('[e2e-id="queryKeyElt"]', test.account_hash);
await submit();
await getResult();
});
it('should query_global_state without state root hash', async () => {
await clearInput('[e2e-id="queryKeyElt"]');
await test.page.type('[e2e-id="queryKeyElt"]', test.account_hash);
await clearInput('[e2e-id="stateRootHashElt"]');
await submit();
await getResult();
});
it('should query_global_state with block height', async () => {
await clearInput('[e2e-id="stateRootHashElt"]');
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await test.page.type('[e2e-id="blockIdentifierHeightElt"]', test.block_height);
await clearInput('[e2e-id="queryKeyElt"]');
await test.page.type('[e2e-id="queryKeyElt"]', test.account_hash);
await submit();
await getResult();
});
it('should query_global_state with block hash', async () => {
await clearInput('[e2e-id="stateRootHashElt"]');
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await clearInput('[e2e-id="blockIdentifierHashElt"]');
await test.page.type('[e2e-id="blockIdentifierHashElt"]', test.block_hash);
await clearInput('[e2e-id="queryKeyElt"]');
await test.page.type('[e2e-id="queryKeyElt"]', test.account_hash);
await submit();
await getResult();
});
it(`should query_global_state with test_hello_key`, async () => {
await clearInput('[e2e-id="stateRootHashElt"]');
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await clearInput('[e2e-id="blockIdentifierHashElt"]');
await clearInput('[e2e-id="stateRootHashElt"]');
await test.page.type('[e2e-id="queryPathElt"]', config.test_hello_key);
await clearInput('[e2e-id="queryKeyElt"]');
await test.page.type('[e2e-id="queryKeyElt"]', test.account_hash);
await submit();
await getResult();
await clearInput('[e2e-id="queryKeyElt"]');
await clearInput('[e2e-id="queryPathElt"]');
});
it(`should query_global_state with account key and path and get entity`, async () => {
expect(test.account).toBeDefined();
expect(config.contract_cep78_key).toBeDefined();
await test.page.reload();
await test.page.waitForSelector('[e2e-id="publicKeyElt"]');
await clearInput('[e2e-id="publicKeyElt"]');
await test.page.type('[e2e-id="publicKeyElt"]', test.account);
await test.page.$eval('[e2e-id="publicKeyElt"]', (e: { blur: () => any; }) => e.blur());
await test.page.waitForSelector('[e2e-id="main_purse"]');
await seletAction('query_global_state');
await clearInput('[e2e-id="queryPathElt"]');
await clearInput('[e2e-id="stateRootHashElt"]');
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await clearInput('[e2e-id="blockIdentifierHashElt"]');
await clearInput('[e2e-id="stateRootHashElt"]');
await clearInput('[e2e-id="queryKeyElt"]');
await test.page.type('[e2e-id="queryKeyElt"]', test.account_hash);
await submit();
await getResult();
let result = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
let result_json = JSON.parse(result);
// Get account entity
expect(result_json?.stored_value.CLValue.parsed).toBeDefined();
test.entity_account = result_json?.stored_value.CLValue.parsed.toString();
// Test a global key
await clearInput('[e2e-id="queryPathElt"]');
await test.page.type('[e2e-id="queryPathElt"]', config.contract_cep78_key + '/collection_name');
await clear();
await submit();
await getResult();
result = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
result_json = JSON.parse(result);
expect(result_json?.stored_value.CLValue.parsed).toEqual(config.collection_name);
});
});
describe('Rpc call get_entity', () => {
beforeAll(async () => {
await get_state_root_hash(); // refresh state root hash
await test.page.reload();
await seletAction('get_entity');
});
afterEach(async () => {
await clear();
});
it('should get_entity from public key', async () => {
await test.page.waitForSelector('[e2e-id="entityIdentifierElt"]');
await clearInput('[e2e-id="entityIdentifierElt"]');
await test.page.type('[e2e-id="entityIdentifierElt"]', test.account);
await submit();
const result = await getResult();
const pattern = /\"account-hash-[0-9a-f]{64}\"/i;
expect(result).toMatch(pattern);
});
it('should get_entity from account hash', async () => {
await test.page.waitForSelector('[e2e-id="entityIdentifierElt"]');
await clearInput('[e2e-id="entityIdentifierElt"]');
await test.page.type('[e2e-id="entityIdentifierElt"]', test.account_hash);
await submit();
const result = await getResult();
const pattern = new RegExp(`"${test.account_hash}"`, 'i');
expect(result).toMatch(pattern);
});
it('should get_entity from public key with block', async () => {
await test.page.waitForSelector('[e2e-id="entityIdentifierElt"]');
await clearInput('[e2e-id="entityIdentifierElt"]');
await test.page.type('[e2e-id="entityIdentifierElt"]', test.account);
await test.page.waitForSelector('[e2e-id="blockIdentifierHeightElt"]');
await test.page.type('[e2e-id="blockIdentifierHeightElt"]', test.block_height);
await submit();
let result = await getResult();
const pattern = /\"account-hash-[0-9a-f]{64}\"/i;
expect(result).toMatch(pattern);
await clear();
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await test.page.type('[e2e-id="blockIdentifierHashElt"]', test.block_hash);
await submit();
result = await getResult();
expect(result).toMatch(pattern);
});
it(`should get_entity from entity account to set contract hash`, async () => {
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await clearInput('[e2e-id="blockIdentifierHashElt"]');
await test.page.waitForSelector('[e2e-id="entityIdentifierElt"]');
await clearInput('[e2e-id="entityIdentifierElt"]');
await test.page.type('[e2e-id="entityIdentifierElt"]', test.entity_account);
await submit();
await getResult();
const result = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
const result_json = JSON.parse(result);
const named_keys = result_json?.entity_result?.AddressableEntity.named_keys as Array<{ name: string; key: string; }>;
test.contract_cep78_entity = named_keys.find(key => key.name === config.contract_cep78_key)?.key || '';
test.contract_cep78_package_hash = named_keys.find(key => key.name === config.package_cep78_key)?.key || '';
expect(test.contract_cep78_entity).toBeDefined();
if (!test.contract_cep78_entity) {
throw 'test.contract_cep78_entity missing';
}
test.contract_cep78_hash = test.contract_cep78_entity.replace('entity-contract', 'hash');
});
});
describe('Contract query_contract_key', () => {
beforeEach(async () => {
await get_state_root_hash(); // refresh state root hash
await test.page.reload();
await seletAction('query_contract_key');
await clearInput('[e2e-id="blockIdentifierHeightElt"]');
await clearInput('[e2e-id="blockIdentifierHashElt"]');
await test.page.waitForSelector('[e2e-id="queryKeyElt"]');
await test.page.waitForSelector('[e2e-id="queryPathElt"]');
});
afterEach(async () => {
await clear();
});
it('should query_contract_key with contract entity', async () => {
await get_block();
await test.page.type('[e2e-id="blockIdentifierHashElt"]', test.block_hash);
await test.page.type('[e2e-id="queryKeyElt"]', test.contract_cep78_entity);
await test.page.type('[e2e-id="queryPathElt"]', 'installer');
await submit();
await getResult();
});
it('should query_contract_key with contract entity without state root hash', async () => {
await test.page.type('[e2e-id="queryKeyElt"]', test.contract_cep78_entity);
await test.page.type('[e2e-id="queryPathElt"]', 'installer');
await submit();
await getResult();
});
});
describe('Contract call entry point deploy', () => {
beforeEach(async () => {
await test.page.reload();
await setSecretKey();
await seletAction('call_entrypoint_deploy');
await test.page.waitForSelector('[e2e-id="paymentAmountElt"]');
await test.page.waitForSelector('[e2e-id="sessionHashElt"]');
await test.page.waitForSelector('[e2e-id="entryPointElt"]');
await test.page.waitForSelector('[e2e-id="argsSimpleElt"]');
await clearInput('[e2e-id="argsSimpleElt"]');
await test.page.waitForSelector('[e2e-id="argsJsonElt"]');
await clearInput('[e2e-id="argsJsonElt"]');
});
afterEach(async () => {
await clear();
});
it('should call entry point with contract hash', async () => {
await test.page.type('[e2e-id="paymentAmountElt"]', config.payment_amount);
await test.page.type('[e2e-id="sessionHashElt"]', test.contract_cep78_hash);
await test.page.type('[e2e-id="entryPointElt"]', config.entrypoint);
let call = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
expect(call).toBeUndefined();
await submit();
await test.page.waitForSelector('[e2e-id="result"]');
call = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
expect(call).toBeDefined();
});
it('should should call entry point with contract name', async () => {
await test.page.type('[e2e-id="paymentAmountElt"]', config.payment_amount);
await test.page.waitForSelector('[e2e-id="sessionNameElt"]');
await test.page.type('[e2e-id="sessionNameElt"]', config.contract_cep78_key);
await test.page.type('[e2e-id="entryPointElt"]', config.entrypoint);
let call = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
expect(call).toBeUndefined();
await submit();
await test.page.waitForSelector('[e2e-id="result"]');
call = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
expect(call).toBeDefined();
});
it('should should call entry point with contract hash and args simple', async () => {
let args_simple_mint =
`token_meta_data:String='test_meta_data',token_owner:Key='${test.account_hash}'`;
await test.page.type('[e2e-id="paymentAmountElt"]', config.payment_amount);
await test.page.type('[e2e-id="sessionHashElt"]', test.contract_cep78_hash);
await test.page.type('[e2e-id="entryPointElt"]', config.entrypoint);
await test.page.type('[e2e-id="argsSimpleElt"]', args_simple_mint);
let call = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
expect(call).toBeUndefined();
await submit();
await test.page.waitForSelector('[e2e-id="result"]');
call = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
expect(call).toBeDefined();
});
it('should should call entry point with contract hash and args json', async () => {
let args_json_mint = `[{"name": "token_meta_data", "type": "String", "value": "test_meta_data_json"},
{"name": "token_owner", "type": "Key", "value": "${test.account_hash}"}]`;
await test.page.type('[e2e-id="paymentAmountElt"]', config.payment_amount);
await test.page.type('[e2e-id="sessionHashElt"]', test.contract_cep78_hash);
await test.page.type('[e2e-id="entryPointElt"]', config.entrypoint);
await test.page.type('[e2e-id="argsJsonElt"]', args_json_mint);
let call = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
expect(call).toBeUndefined();
await submit();
await test.page.waitForSelector('[e2e-id="result"]');
call = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
expect(call).toBeDefined();
});
it('should should call entry point with package hash and args simple', async () => {
let args_simple_mint =
`token_meta_data:String='test_meta_data',token_owner:Key='${test.account_hash}'`;
await test.page.type('[e2e-id="paymentAmountElt"]', config.payment_amount);
await test.page.type('[e2e-id="sessionHashElt"]', test.contract_cep78_package_hash);
await test.page.type('[e2e-id="entryPointElt"]', config.entrypoint);
await test.page.type('[e2e-id="argsSimpleElt"]', args_simple_mint);
await test.page.waitForSelector('[e2e-id="callPackageElt"]');
await test.page.click('[e2e-id="callPackageElt"]');
await test.page.waitForSelector('[e2e-id="versionElt"]');
await test.page.type('[e2e-id="versionElt"]', "1");
let call = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
expect(call).toBeUndefined();
await submit();
await test.page.waitForSelector('[e2e-id="result"]');
call = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
expect(call).toBeDefined();
});
});
describe('Contract call entry point transaction', () => {
beforeEach(async () => {
await test.page.reload();
await setSecretKey();
await seletAction('call_entrypoint');
await test.page.waitForSelector('[e2e-id="paymentAmountElt"]');
await test.page.waitForSelector('[e2e-id="entityHashElt"]');
await test.page.waitForSelector('[e2e-id="entryPointElt"]');
await test.page.waitForSelector('[e2e-id="argsSimpleElt"]');
await clearInput('[e2e-id="argsSimpleElt"]');
await test.page.waitForSelector('[e2e-id="argsJsonElt"]');
await clearInput('[e2e-id="argsJsonElt"]');
});
afterEach(async () => {
await clear();
});
it('should call entry point with entity hash', async () => {
await test.page.type('[e2e-id="paymentAmountElt"]', config.payment_amount);
await test.page.type('[e2e-id="entityHashElt"]', test.contract_cep78_entity);
await test.page.type('[e2e-id="entryPointElt"]', config.entrypoint);
let call = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
expect(call).toBeUndefined();
await submit();
await test.page.waitForSelector('[e2e-id="result"]');
call = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
expect(call).toBeDefined();
});
it('should should call entry point with entity name', async () => {
await test.page.type('[e2e-id="paymentAmountElt"]', config.payment_amount);
await test.page.waitForSelector('[e2e-id="entityAliasElt"]');
await test.page.type('[e2e-id="entityAliasElt"]', config.contract_cep78_key);
await test.page.type('[e2e-id="entryPointElt"]', config.entrypoint);
let call = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
expect(call).toBeUndefined();
await submit();
await test.page.waitForSelector('[e2e-id="result"]');
call = await test.page.evaluate(() => {
return document.querySelector('[e2e-id="result"]')?.textContent;
});
expect(call).toBeDefined();
});
it('should should call entry point with entity hash and args simple', async () => {
let args_simple_mint =
`token_meta_data:String='test_meta_data',token_owner:Key='${test.account_hash}'`;
await test.page.type('[e2e-id="paymentAmountElt"]', config.payment_amount);
await test.page.type('[e2e-id="entityHashElt"]', test.contract_cep78_entity);
await test.page.type('[e2e-id="entryPointElt"]', config.entrypoint);
await test.page.type('[e2e-id="argsSimpleElt"]', args_simple_mint);