forked from bz-hashtag-0780/nft-contract-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeast_nft-tests.js
1372 lines (1166 loc) · 61.8 KB
/
beast_nft-tests.js
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
const assert = require('chai').assert;
const DappLib = require('../src/dapp-lib.js');
const fkill = require('fkill');
describe('Flow Dapp Tests', async() => {
let config = null;
before('setup contract', async() => {
// Setup tasks for tests
config = DappLib.getConfig();
});
after(() => {
fkill(':3570');
});
/************ Basic Beasts ************/
describe('Basic Beasts Tests', async() => {
it(`1. Set up account`, async() => {
let testData0 = {
signer: config.accounts[0],
};
let testData1 = {
signer: config.accounts[1],
};
let testData2 = {
signer: config.accounts[2],
};
let testData3 = {
signer: config.accounts[3],
};
let testData4 = {
signer: config.accounts[4],
};
await DappLib.basicBeastSetupAccount(testData0);
await DappLib.basicBeastSetupAccount(testData1);
await DappLib.basicBeastSetupAccount(testData2);
await DappLib.basicBeastSetupAccount(testData3);
await DappLib.basicBeastSetupAccount(testData4);
});
it(`2. Create EvolutionSet - Admin`, async() => {
let testData1 = {
signer: config.accounts[0],
setName: 'Stark',
setID: '1',
};
let testData2 = {
signer: config.accounts[0],
setName: 'Targaryen',
setID: '2',
};
let testData3 = {
signer: config.accounts[0],
setName: 'Lannister',
setID: '3',
};
let testData4 = {
signer: config.accounts[0],
setName: 'Greyjoy',
setID: '4',
};
await DappLib.basicBeastCreateEvolutionSet(testData1);
await DappLib.basicBeastCreateEvolutionSet(testData2);
await DappLib.basicBeastCreateEvolutionSet(testData3);
await DappLib.basicBeastCreateEvolutionSet(testData4);
let res1 = await DappLib.basicBeastGetEvolutionSetName(testData1);
assert.equal(
res1.result,
'Stark',
'Incorrect. Set name should be Stark'
);
let res2 = await DappLib.basicBeastGetEvolutionSetName(testData2);
assert.equal(
res2.result,
'Targaryen',
'Incorrect. Set name should be Targaryen'
);
let res3 = await DappLib.basicBeastGetEvolutionSetName(testData3);
assert.equal(
res3.result,
'Lannister',
'Incorrect. Set name should be Lannister'
);
let res4 = await DappLib.basicBeastGetEvolutionSetName(testData4);
assert.equal(
res4.result,
'Greyjoy',
'Incorrect. Set name should be Greyjoy'
);
});
it(`3. Cannot create a Non Admin EvolutionSet`, async() => {
let testData1 = {
signer: config.accounts[1],
setName: 'Non admin EvolutionSet',
};
try {
await DappLib.basicBeastCreateEvolutionSet(testData1);
} catch (e) {
let res = await DappLib.basicBeastGetNextEvolutionSetID({});
// next EvolutionSetID should be 5 since there are created 4 in total and setID starts with 1
assert.equal(
res.result,
5,
'❗Incorrect. Non Admin account should not be able to create an EvolutionSet'
);
}
});
it(`4. Create beastTemplates - Admin`, async() => {
let testData1 = {
signer: config.accounts[0],
dexNumber: '1',
name: 'Moon',
image: 'URL',
description: 'Basic beast',
rarity: 'Secret Rare',
skin: 'Normal',
starLevel: '1',
asexual: 'false',
ultimateSkill: 'Fart',
basicSkills: ['Eat', 'Sleep'],
elements: { Fire: 'true' },
data: { Data: 'Data..' },
beastTemplateID: 1,
};
let testData2 = {
signer: config.accounts[0],
dexNumber: '2',
name: 'Sir Moon',
image: 'URL',
description: 'Fine beast',
rarity: 'Secret Rare',
skin: 'Normal',
starLevel: '2',
asexual: 'false',
ultimateSkill: 'Do Math',
basicSkills: ['Eat', 'Sleep'],
elements: { Fire: 'true' },
data: { Data: 'Data..' },
beastTemplateID: 2,
};
let testData3 = {
signer: config.accounts[0],
dexNumber: '3',
name: 'CEO Moon',
image: 'URL',
description: 'Perfect beast',
rarity: 'Secret Rare',
skin: 'Shiny Gold',
starLevel: '3',
asexual: 'false',
ultimateSkill: 'Dance to BTS',
basicSkills: ['Eat', 'Sleep'],
elements: { Fire: 'true' },
data: { Data: 'Data..' },
beastTemplateID: 3,
};
await DappLib.basicBeastCreateBeastTemplate(testData1);
await DappLib.basicBeastCreateBeastTemplate(testData2);
await DappLib.basicBeastCreateBeastTemplate(testData3);
let res1 = await DappLib.basicBeastGetBeastTemplate(testData1);
let res1 = await DappLib.basicBeastGetBeastTemplate(testData2);
let res1 = await DappLib.basicBeastGetBeastTemplate(testData3);
// assert res1
assert.equal(
res1.result.dexNumber,
'1',
"❗Incorrect. The beast's dexNumber should be 1"
);
assert.equal(
res1.result.name,
'Moon',
"❗Incorrect. The beast's name should be Moon"
);
assert.equal(
res1.result.image,
'URL',
"❗Incorrect. The beast's image should be URL"
);
assert.equal(
res1.result.description,
'Basic beast',
"❗Incorrect. The beast's description should be Basic beast"
);
assert.equal(
res1.result.rarity,
'Secret Rare',
"❗Incorrect. The beast's rarity should be Secret Rare"
);
assert.equal(
res1.result.skin,
'Normal',
"❗Incorrect. The beast's skin should be Normal"
);
assert.equal(
res1.result.starLevel,
'1',
"❗Incorrect. The beast's starLevel should be 1"
);
assert.isFalse(
res1.result.asexual,
"❗Incorrect. The beast's asexual should be false"
);
assert.equal(
res1.result.ultimateSkill,
'Fart',
"❗Incorrect. The beast's ultimateSkill should be Fart"
);
assert.deepEqual(
res1.result.basicSkills, ['Eat', 'Sleep'],
"❗Incorrect. The beast's basicSkills should be Eat and Sleep"
);
assert.equal(
Object.keys(
res1.result.elements)[0],
"Fire",
"❗Incorrect. The beast's element's key should be: Fire"
);
assert.isTrue(
res1.result.elements[Object.keys(res1.result)[0]],
"❗Incorrect. The beast's element's value should be: True"
);
assert.equal(
Object.keys(
res1.result.data)[0],
"Data",
"❗Incorrect. The beast's data's key should be: Data"
);
assert.equal(
res1.result.data[Object.keys(res1.result.data)[0]],
"Data..",
"❗Incorrect. The character's data's value should be: Data.."
);
// assert res2
assert.equal(
res2.result.dexNumber,
'2',
"❗Incorrect. The beast's dexNumber should be 2"
);
assert.equal(
res2.result.name,
'Sir Moon',
"❗Incorrect. The beast's name should be Sir Moon"
);
assert.equal(
res2.result.image,
'URL',
"❗Incorrect. The beast's image should be URL"
);
assert.equal(
res2.result.description,
'Fine beast',
"❗Incorrect. The beast's description should be Fine beast"
);
assert.equal(
res2.result.rarity,
'Secret Rare',
"❗Incorrect. The beast's rarity should be Secret Rare"
);
assert.equal(
res2.result.skin,
'Normal',
"❗Incorrect. The beast's skin should be Normal"
);
assert.equal(
res2.result.starLevel,
'2',
"❗Incorrect. The beast's starLevel should be 2"
);
// here
assert.isFalse(
res1.result.asexual,
"❗Incorrect. The beast's asexual should be false"
);
assert.equal(
res1.result.ultimateSkill,
'Fart',
"❗Incorrect. The beast's ultimateSkill should be Fart"
);
assert.deepEqual(
res1.result.basicSkills, ['Eat', 'Sleep'],
"❗Incorrect. The beast's basicSkills should be Eat and Sleep"
);
assert.equal(
Object.keys(
res1.result.elements)[0],
"Fire",
"❗Incorrect. The beast's element's key should be: Fire"
);
assert.isTrue(
res1.result.elements[Object.keys(res1.result)[0]],
"❗Incorrect. The beast's element's value should be: True"
);
assert.equal(
Object.keys(
res1.result.data)[0],
"Data",
"❗Incorrect. The beast's data's key should be: Data"
);
assert.equal(
res1.result.data[Object.keys(res1.result.data)[0]],
"Data..",
"❗Incorrect. The character's data's value should be: Data.."
);
/*
let resDes =
await DappLib.characterxCharactersGetCharacterDescription({
characterID,
});
let resImage = await DappLib.characterxCharactersGetCharacterImage({
characterID,
});
let resCreatedFrom1 =
await DappLib.characterxCharactersGetCharacterCreatedFrom1({
characterID,
});
let resCreatedFrom2 =
await DappLib.characterxCharactersGetCharacterCreatedFrom2({
characterID,
});
let resSex = await DappLib.characterxCharactersGetCharacterSex({
characterID,
});
let resRace = await DappLib.characterxCharactersGetCharacterRace({
characterID,
});
let resRarity =
await DappLib.characterxCharactersGetCharacterRarity({
characterID,
});
let resLineage =
await DappLib.characterxCharactersGetCharacterLineage({
characterID,
});
let resBloodline =
await DappLib.characterxCharactersGetCharacterBloodline({
characterID,
});
let resElement =
await DappLib.characterxCharactersGetCharacterElement({
characterID,
});
let resTraits =
await DappLib.characterxCharactersGetCharacterTraits({
characterID,
});
let resData = await DappLib.characterxCharactersGetCharacterData({
characterID,
});
assert.equal(
resName.result,
'Willi Blue',
"❗Incorrect. The character's name should be: Willi Blue"
);
assert.equal(
resDes.result,
'Character with the coolest name ever',
"❗Incorrect. The character's description should be: Character with the coolest name ever"
);
assert.equal(
resImage.result,
'URL',
"❗Incorrect. The character's image should be: URL"
);
assert.equal(
resCreatedFrom1.result,
0,
"❗Incorrect. The character's createdFrom_1 should be: 0"
);
assert.equal(
resCreatedFrom2.result,
0,
"❗Incorrect. The character's createdFrom_2 should be: 0"
);
assert.equal(
resSex.result,
'Male',
"❗Incorrect. The character's sex should be: Male"
);
assert.equal(
resRace.result,
'Yellow',
"❗Incorrect. The character's race should be: Yellow"
);
assert.equal(
resRarity.result,
'Fancy Intense',
'❗Incorrect. The character rarity should be: Fancy Intense'
);
assert.equal(
Object.keys(resLineage.result)[0],
'Targaryen',
"❗Incorrect. The character's lineage's key should be: Targaryen"
);
assert.equal(
resLineage.result[Object.keys(resLineage.result)[0]],
true,
"❗Incorrect. The character's lineage's value should be: true"
);
assert.equal(
Object.keys(resBloodline.result)[0],
'O',
"❗Incorrect. The character's bloodline's key should be: O"
);
assert.equal(
resBloodline.result[Object.keys(resBloodline.result)[0]],
false,
"❗Incorrect. The character's bloodline's value should be: false"
);
assert.equal(
Object.keys(resElement.result)[0],
'Fire',
"❗Incorrect. The character's element's key should be: Fire"
);
assert.equal(
resElement.result[Object.keys(resElement.result)[0]],
true,
"❗Incorrect. The character's element's value should be: true"
);
assert.equal(
Object.keys(resTraits.result)[0],
'Traits',
"❗Incorrect. The character's traits's key should be: Traits"
);
assert.equal(
resTraits.result[Object.keys(resTraits.result)[0]],
'Traits..',
"❗Incorrect. The character's traits's value should be: Traits.."
);
assert.equal(
Object.keys(resTraits.result)[1],
'Traits 2',
"❗Incorrect. The character's traits's key should be: Traits 2"
);
assert.equal(
resTraits.result[Object.keys(resTraits.result)[1]],
'Traits.. 2',
"❗Incorrect. The character's traits's value should be: Traits.. 2"
);
assert.equal(
Object.keys(resData.result)[0],
'Data',
"❗Incorrect. The character's data's key should be: Data"
);
assert.equal(
resData.result[Object.keys(resData.result)[0]],
'Data..',
"❗Incorrect. The character's data's value should be: Data.."
);*/
});
/*
// As Admin has created a character with characterID = 0. Next characterID should be 1
it(`6. Has correct next character ID`, async() => {
let res1 = await DappLib.characterxCharactersGetNextCharacterID({})
assert.equal(res1.result, 1, "❗Incorrect. The next character ID should be 1")
console.log("Next characterID should be 1: " + res1.result)
});
it(`7. Create a character (Non Admin)`, async() => {
let testData1 = {
signer: config.accounts[1],
name: "Twice",
description: "Once",
image: "URL",
createdFrom_1: "0",
createdFrom_2: "0",
sex: "Female",
race: "Asian",
rarity: "JYP",
lineage: [{ key: "Twicecoaster", value: true }],
bloodline: [{ key: "Korean", value: false }],
element: [{ key: "Japan", value: true }],
traits: [{ key: "China", value: "China.." }],
data: [{ key: "Data", value: "Data.." }]
}
try {
await DappLib.characterxCreateCharacter(testData1)
} catch (e) {
// As Non Admin account should not be able to create a character and the Next character ID should remain 1
let res = await DappLib.characterxCharactersGetNextCharacterID({})
assert.equal(res.result, 1, "❗Incorrect. The next character ID should be 1")
}
});
it(`8. Create a second character (Admin)`, async() => {
let testData1 = {
signer: config.accounts[0],
name: "Willi Blue",
description: "Character with the coolest name ever",
image: "URL",
createdFrom_1: "0",
createdFrom_2: "0",
sex: "Male",
race: "Yellow",
rarity: "Fancy Intense",
lineage: { "Targaryen": "true", "Stark": "false" },
bloodline: { "O": "false" },
element: { "Fire": "true" },
traits: { "Traits": "Traits..", "Traits 2": "Traits.. 2" },
data: { "Data": "Data.." }
}
await DappLib.characterxCreateCharacter(testData1)
let characterID = "1"
let resName = await DappLib.characterxCharactersGetCharacterName({ characterID })
let resDes = await DappLib.characterxCharactersGetCharacterDescription({ characterID })
let resImage = await DappLib.characterxCharactersGetCharacterImage({ characterID })
let resCreatedFrom1 = await DappLib.characterxCharactersGetCharacterCreatedFrom1({ characterID })
let resCreatedFrom2 = await DappLib.characterxCharactersGetCharacterCreatedFrom2({ characterID })
let resSex = await DappLib.characterxCharactersGetCharacterSex({ characterID })
let resRace = await DappLib.characterxCharactersGetCharacterRace({ characterID })
let resRarity = await DappLib.characterxCharactersGetCharacterRarity({ characterID })
let resLineage = await DappLib.characterxCharactersGetCharacterLineage({ characterID })
let resBloodline = await DappLib.characterxCharactersGetCharacterBloodline({ characterID })
let resElement = await DappLib.characterxCharactersGetCharacterElement({ characterID })
let resTraits = await DappLib.characterxCharactersGetCharacterTraits({ characterID })
let resData = await DappLib.characterxCharactersGetCharacterData({ characterID })
assert.equal(resName.result, "Willi Blue", "❗Incorrect. The character's name should be: Willi Blue")
assert.equal(resDes.result, "Character with the coolest name ever", "❗Incorrect. The character's description should be: Character with the coolest name ever")
assert.equal(resImage.result, "URL", "❗Incorrect. The character's image should be: URL")
assert.equal(resCreatedFrom1.result, 0, "❗Incorrect. The character's createdFrom_1 should be: 0")
assert.equal(resCreatedFrom2.result, 0, "❗Incorrect. The character's createdFrom_2 should be: 0")
assert.equal(resSex.result, "Male", "❗Incorrect. The character's sex should be: Male")
assert.equal(resRace.result, "Yellow", "❗Incorrect. The character's race should be: Yellow")
assert.equal(resRarity.result, "Fancy Intense", "❗Incorrect. The character rarity should be: Fancy Intense")
assert.equal(Object.keys(resLineage.result)[0], "Targaryen", "❗Incorrect. The character's lineage's key should be: Targaryen")
assert.equal(resLineage.result[Object.keys(resLineage.result)[0]], true, "❗Incorrect. The character's lineage's value should be: true")
assert.equal(Object.keys(resLineage.result)[1], "Stark", "❗Incorrect. The character's lineage's key should be: Stark")
assert.equal(resLineage.result[Object.keys(resLineage.result)[1]], false, "❗Incorrect. The character's lineage's value should be: false")
assert.equal(Object.keys(resBloodline.result)[0], "O", "❗Incorrect. The character's bloodline's key should be: O")
assert.equal(resBloodline.result[Object.keys(resBloodline.result)[0]], false, "❗Incorrect. The character's bloodline's value should be: false")
assert.equal(Object.keys(resElement.result)[0], "Fire", "❗Incorrect. The character's element's key should be: Fire")
assert.equal(resElement.result[Object.keys(resElement.result)[0]], true, "❗Incorrect. The character's element's value should be: true")
assert.equal(Object.keys(resTraits.result)[0], "Traits", "❗Incorrect. The character's traits's key should be: Traits")
assert.equal(resTraits.result[Object.keys(resTraits.result)[0]], "Traits..", "❗Incorrect. The character's traits's value should be: Traits..")
assert.equal(Object.keys(resTraits.result)[1], "Traits 2", "❗Incorrect. The character's traits's key should be: Traits 2")
assert.equal(resTraits.result[Object.keys(resTraits.result)[1]], "Traits.. 2", "❗Incorrect. The character's traits's value should be: Traits.. 2")
assert.equal(Object.keys(resData.result)[0], "Data", "❗Incorrect. The character's data's key should be: Data")
assert.equal(resData.result[Object.keys(resData.result)[0]], "Data..", "❗Incorrect. The character's data's value should be: Data..")
});
// As Admin has created 2 characters. Next characterID should be 2
it(`9. Has correct next character ID`, async() => {
let res1 = await DappLib.characterxCharactersGetNextCharacterID({})
assert.equal(res1.result, 2, "❗Incorrect. The next character ID should be 1")
console.log("Next character ID should be 2: " + res1.result)
});
it(`10. Get characterID 1's multiple traits`, async() => {
let characterID = 1
let res1 = await DappLib.characterxCharactersGetCharacterTraits({ characterID })
assert.equal(Object.keys(res1.result)[0], "Traits", "❗Incorrect. The character's traits's key should be: Traits")
assert.equal(res1.result[Object.keys(res1.result)[0]], "Traits..", "❗Incorrect. The character's traits's value should be: Traits..")
assert.equal(Object.keys(res1.result)[1], "Traits 2", "❗Incorrect. The character's traits's key should be: Traits 2")
assert.equal(res1.result[Object.keys(res1.result)[1]], "Traits.. 2", "❗Incorrect. The character's traits's value should be: Traits.. 2")
console.log("Character " + characterID + "'s traits is: " + JSON.stringify(res1.result))
});
it(`11. Get characterID 0's data`, async() => {
let characterID = 0
let res1 = await DappLib.characterxCharactersGetCharacterData({ characterID })
assert.equal(Object.keys(res1.result)[0], "Data", "❗Incorrect. The character's data's key should be: Data")
assert.equal(res1.result[Object.keys(res1.result)[0]], "Data..", "❗Incorrect. The character's data's value should be: Data..")
console.log("Character's " + characterID + "'s data is " + JSON.stringify(res1.result))
});
it(`12. Get characterID 0's data field (value)`, async() => {
let testData1 = {
characterID: "0",
field: "Data"
}
let res1 = await DappLib.characterxCharactersGetCharacterDataField(testData1)
assert.equal(res1.result, "Data..", "❗Incorrect. The character's data's value should be: Data..")
console.log("Character's " + characterID + "'s data is " + JSON.stringify(res1.result))
});
it(`13. Get characterID 0's traits field (value)`, async() => {
let testData1 = {
characterID: "0",
field: "Traits"
}
let res1 = await DappLib.characterxCharactersGetCharacterTraitsField(testData1)
assert.equal(res1.result, "Traits..", "❗Incorrect. The character's traits's value should be: Traits..")
console.log("Character's " + characterID + "'s traits field is " + JSON.stringify(res1.result))
});
it(`14. Get characters in setID 0 - before adding any`, async() => {
let setID = 0
let res1 = await DappLib.characterxSetsGetCharactersInSet({ setID })
assert.deepEqual(res1.result, [], "❗Incorrect. setID 0 should be empty - no characters")
console.log("Before adding any. Character(s) in " + setID + ": " + JSON.stringify(res1.result))
});
it(`15. Can not add characterID 0 to setID 0 - Non Admin`, async() => {
let testData1 = {
signer: config.accounts[1],
setID: "0",
characterID: "0"
}
try {
await DappLib.characterxAddCharacterToSet(testData1)
} catch (e) {
let res1 = await DappLib.characterxSetsGetCharactersInSet(testData1)
assert.deepEqual(res1.result, [], "❗Incorrect. setID 0 should be empty")
console.log("Could not add the character " + testData1.characterID + " to set: " + testData1.setID)
}
});
it(`16. Add characterID 0 to setID 0 - Admin`, async() => {
let testData1 = {
signer: config.accounts[0],
setID: "0",
characterID: "0"
}
await DappLib.characterxAddCharacterToSet(testData1)
let res1 = await DappLib.characterxSetsGetCharactersInSet(testData1)
assert.deepEqual(res1.result, [0], "❗Incorrect. setID 0 should contain characterID 0")
});
*/
/*
it(`17. Get characters in setID 0`, async() => {
let setID = 0
let res1 = await DappLib.characterxSetsGetCharactersInSet({ setID })
assert.deepEqual(res1.result, [0], "❗Incorrect. setID 0 should only contain characterID 0")
console.log("Character(s) in " + setID + ": " + JSON.stringify(res1.result))
});
it(`18. Create a third character (Admin)`, async() => {
let testData1 = {
signer: config.accounts[0],
name: "Willi Blue the 3rd",
description: "Character with the coolest name ever",
image: "URL",
createdFrom_1: "0",
createdFrom_2: "0",
sex: "Male",
race: "Yellow",
rarity: "Fancy Intense",
lineage: { "Targaryen": "true" },
bloodline: { "O": "false" },
element: { "Fire": "true" },
traits: { "Traits": "Traits..", "Traits 2": "Traits.. 2" },
data: { "Data": "Data.." }
}
await DappLib.characterxCreateCharacter(testData1)
let characterID = "3"
let resName = await DappLib.characterxCharactersGetCharacterName({ characterID })
let resDes = await DappLib.characterxCharactersGetCharacterDescription({ characterID })
let resImage = await DappLib.characterxCharactersGetCharacterImage({ characterID })
let resCreatedFrom1 = await DappLib.characterxCharactersGetCharacterCreatedFrom1({ characterID })
let resCreatedFrom2 = await DappLib.characterxCharactersGetCharacterCreatedFrom2({ characterID })
let resSex = await DappLib.characterxCharactersGetCharacterSex({ characterID })
let resRace = await DappLib.characterxCharactersGetCharacterRace({ characterID })
let resRarity = await DappLib.characterxCharactersGetCharacterRarity({ characterID })
let resLineage = await DappLib.characterxCharactersGetCharacterLineage({ characterID })
let resBloodline = await DappLib.characterxCharactersGetCharacterBloodline({ characterID })
let resElement = await DappLib.characterxCharactersGetCharacterElement({ characterID })
let resTraits = await DappLib.characterxCharactersGetCharacterTraits({ characterID })
let resData = await DappLib.characterxCharactersGetCharacterData({ characterID })
assert.equal(resName.result, "Willi Blue the 3rd", "❗Incorrect. The character's name should be: Willi Blue")
assert.equal(resDes.result, "Character with the coolest name ever", "❗Incorrect. The character's description should be: Character with the coolest name ever")
assert.equal(resImage.result, "URL", "❗Incorrect. The character's image should be: URL")
assert.equal(resCreatedFrom1.result, 0, "❗Incorrect. The character's createdFrom_1 should be: 0")
assert.equal(resCreatedFrom2.result, 0, "❗Incorrect. The character's createdFrom_2 should be: 0")
assert.equal(resSex.result, "Male", "❗Incorrect. The character's sex should be: Male")
assert.equal(resRace.result, "Yellow", "❗Incorrect. The character's race should be: Yellow")
assert.equal(resRarity.result, "Fancy Intense", "❗Incorrect. The character rarity should be: Fancy Intense")
assert.equal(Object.keys(resLineage.result)[0], "Targaryen", "❗Incorrect. The character's lineage's key should be: Targaryen")
assert.equal(resLineage.result[Object.keys(resLineage.result)[0]], true, "❗Incorrect. The character's lineage's value should be: true")
assert.equal(Object.keys(resBloodline.result)[0], "O", "❗Incorrect. The character's bloodline's key should be: O")
assert.equal(resBloodline.result[Object.keys(resBloodline.result)[0]], false, "❗Incorrect. The character's bloodline's value should be: false")
assert.equal(Object.keys(resElement.result)[0], "Fire", "❗Incorrect. The character's element's key should be: Fire")
assert.equal(resElement.result[Object.keys(resElement.result)[0]], true, "❗Incorrect. The character's element's value should be: true")
assert.equal(Object.keys(resTraits.result)[0], "Traits", "❗Incorrect. The character's traits's key should be: Traits")
assert.equal(resTraits.result[Object.keys(resTraits.result)[0]], "Traits..", "❗Incorrect. The character's traits's value should be: Traits..")
assert.equal(Object.keys(resTraits.result)[1], "Traits 2", "❗Incorrect. The character's traits's key should be: Traits 2")
assert.equal(resTraits.result[Object.keys(resTraits.result)[1]], "Traits.. 2", "❗Incorrect. The character's traits's value should be: Traits.. 2")
assert.equal(Object.keys(resData.result)[0], "Data", "❗Incorrect. The character's data's key should be: Data")
assert.equal(resData.result[Object.keys(resData.result)[0]], "Data..", "❗Incorrect. The character's data's value should be: Data..")
});
it(`19. Create a fourth character (Admin)`, async() => {
let testData1 = {
signer: config.accounts[0],
name: "Willi Blue the 4th",
description: "Character with the coolest name ever",
image: "URL",
createdFrom_1: "0",
createdFrom_2: "0",
sex: "Male",
race: "Yellow",
rarity: "Fancy Intense",
lineage: { "Targaryen": "true" },
bloodline: { "O": "false" },
element: { "Fire": "true" },
traits: { "Traits": "Traits..", "Traits 2": "Traits.. 2" },
data: { "Data": "Data.." }
}
await DappLib.characterxCreateCharacter(testData1)
let characterID = "3"
let resName = await DappLib.characterxCharactersGetCharacterName({ characterID })
let resDes = await DappLib.characterxCharactersGetCharacterDescription({ characterID })
let resImage = await DappLib.characterxCharactersGetCharacterImage({ characterID })
let resCreatedFrom1 = await DappLib.characterxCharactersGetCharacterCreatedFrom1({ characterID })
let resCreatedFrom2 = await DappLib.characterxCharactersGetCharacterCreatedFrom2({ characterID })
let resSex = await DappLib.characterxCharactersGetCharacterSex({ characterID })
let resRace = await DappLib.characterxCharactersGetCharacterRace({ characterID })
let resRarity = await DappLib.characterxCharactersGetCharacterRarity({ characterID })
let resLineage = await DappLib.characterxCharactersGetCharacterLineage({ characterID })
let resBloodline = await DappLib.characterxCharactersGetCharacterBloodline({ characterID })
let resElement = await DappLib.characterxCharactersGetCharacterElement({ characterID })
let resTraits = await DappLib.characterxCharactersGetCharacterTraits({ characterID })
let resData = await DappLib.characterxCharactersGetCharacterData({ characterID })
assert.equal(resName.result, "Willi Blue the 4th", "❗Incorrect. The character's name should be: Willi Blue")
assert.equal(resDes.result, "Character with the coolest name ever", "❗Incorrect. The character's description should be: Character with the coolest name ever")
assert.equal(resImage.result, "URL", "❗Incorrect. The character's image should be: URL")
assert.equal(resCreatedFrom1.result, 0, "❗Incorrect. The character's createdFrom_1 should be: 0")
assert.equal(resCreatedFrom2.result, 0, "❗Incorrect. The character's createdFrom_2 should be: 0")
assert.equal(resSex.result, "Male", "❗Incorrect. The character's sex should be: Male")
assert.equal(resRace.result, "Yellow", "❗Incorrect. The character's race should be: Yellow")
assert.equal(resRarity.result, "Fancy Intense", "❗Incorrect. The character rarity should be: Fancy Intense")
assert.equal(Object.keys(resLineage.result)[0], "Targaryen", "❗Incorrect. The character's lineage's key should be: Targaryen")
assert.equal(resLineage.result[Object.keys(resLineage.result)[0]], true, "❗Incorrect. The character's lineage's value should be: true")
assert.equal(Object.keys(resLineage.result)[1], "Stark", "❗Incorrect. The character's lineage's key should be: Stark")
assert.equal(resLineage.result[Object.keys(resLineage.result)[1]], false, "❗Incorrect. The character's lineage's value should be: false")
assert.equal(Object.keys(resBloodline.result)[0], "O", "❗Incorrect. The character's bloodline's key should be: O")
assert.equal(resBloodline.result[Object.keys(resBloodline.result)[0]], false, "❗Incorrect. The character's bloodline's value should be: false")
assert.equal(Object.keys(resElement.result)[0], "Fire", "❗Incorrect. The character's element's key should be: Fire")
assert.equal(resElement.result[Object.keys(resElement.result)[0]], true, "❗Incorrect. The character's element's value should be: true")
assert.equal(Object.keys(resTraits.result)[0], "Traits", "❗Incorrect. The character's traits's key should be: Traits")
assert.equal(resTraits.result[Object.keys(resTraits.result)[0]], "Traits..", "❗Incorrect. The character's traits's value should be: Traits..")
assert.equal(Object.keys(resTraits.result)[1], "Traits 2", "❗Incorrect. The character's traits's key should be: Traits 2")
assert.equal(resTraits.result[Object.keys(resTraits.result)[1]], "Traits.. 2", "❗Incorrect. The character's traits's value should be: Traits.. 2")
assert.equal(Object.keys(resData.result)[0], "Data", "❗Incorrect. The character's data's key should be: Data")
assert.equal(resData.result[Object.keys(resData.result)[0]], "Data..", "❗Incorrect. The character's data's value should be: Data..")
});
it(`20. Can not add characterID 1 and 2 to setID 0 - Non Admin`, async() => {
let testData1 = {
signer: config.accounts[1],
setID: "0",
characters: ["0", "1"]
}
try {
await DappLib.characterxAddCharactersToSet(testData1)
} catch (e) {
let res1 = await DappLib.characterxSetsGetCharactersInSet(testData1)
assert.deepEqual(res1.result, [0], "❗Incorrect. setID 0 should only contain characterID 0")
}
});
it(`21. Add characterID 1 and 2 to setID 0 - Admin`, async() => {
let testData1 = {
signer: config.accounts[0],
setID: "0",
characters: ["1", "2"]
}
await DappLib.characterxAddCharactersToSet(testData1)
// let res1 = await DappLib.characterxSetsGetCharactersInSet({ setID })
let res1 = await DappLib.characterxSetsGetCharactersInSet(testData1)
assert.deepEqual(res1.result, [0, 1, 2], "❗Incorrect. setID 0 should contain characterID 0, 1, 2")
});
it(`22. Get characters in setID 0`, async() => {
let setID = 0
let res1 = await DappLib.characterxSetsGetCharactersInSet({ setID })
assert.deepEqual(res1.result, [0, 1, 2], "❗Incorrect. setID 0 should contain characterID 0, 1, 2")
console.log("Character(s) in " + setID + ": " + JSON.stringify(res1.result))
});
// Characters with character ID 2 and 3 has already been added to set ID 0
it(`23. Can not add character ID 2 and 3 to set ID 0 - Admin`, async() => {
let testData1 = {
signer: config.accounts[0],
setID: "0",
characters: ["1", "2"]
}
try {
await DappLib.characterxAddCharactersToSet(testData1)
} catch (e) {
let res1 = await DappLib.characterxSetsGetCharactersInSet(testData1)
assert.deepEqual(res1.result, [0, 1, 2], "❗Incorrect. setID 0 should contain characterID 0, 1, 2")
console.log("Character ID 1 and 2 already exist in set ID 0")
}
});*/
/*
it(`24. Get total supply - before minting charaters`, async() => {
let res1 = await DappLib.characterxGetTotalSupply({})
assert.equal(res1.result, 0, "❗Incorrect. Total supply should be 0")
console.log("Total supply is: " + res1.result)
});
it(`25. Can not mint characterID 0, setID 0 to accounts[2] - Non Admin`, async() => {
let testData1 = {
signer: config.accounts[1],
setID: "0",
characterID: "0",
recipientAddr: config.accounts[2]
}
try {
await DappLib.characterxMintCharacter(testData1)
} catch (e) {
let res1 = await DappLib.characterxGetTotalSupply({})
assert.equal(res1.result, 0, "❗Incorrect. Total supply should be 0")
console.log("Total supply should be 0: " + res1.result)
}
});
it(`26. Mint characterID 0, setID 0 to Admin account - Admin`, async() => {
let testData1 = {
signer: config.accounts[0],
setID: "0",
characterID: "0",
recipientAddr: config.accounts[0]
}
await DappLib.characterxMintCharacter(testData1)
let res1 = await DappLib.characterxGetTotalSupply({})
assert.equal(res1.result, 1, "❗Incorrect. The total supply should be 1")
console.log("Total supply should be 1: " + res1.result)
});
it(`. Get collections character id`, async() => {
let testData1 = {
account: config.accounts[0],
id: "0"
}
let res1 = await DappLib.characterxCollectionsGetCharacterCharacterID(testData1)
assert.equal(res1.result, 0, "❗Incorrect. The character ID should be 0")
console.log("Total collection's characterID is: " + res1.result)
});
it(`24. Get total supply`, async() => {
let res1 = await DappLib.characterxGetTotalSupply({})
assert.equal(res1.result, 1, "❗Incorrect. Total supply should be 0")
console.log("Total supply is: " + res1.result)
});
*/
/*
it(`27. Can not batch mint characterID 1, setID 0 to accounts[2] - Non Admin`, async() => {
let testData1 = {
signer: config.accounts[1],
setID: "0",
characterID: "1",
quantity: "5",
recipientAddr: config.accounts[0]
}
try {
await DappLib.characterxBatchMintCharacter(testData1)
} catch (e) {
let res1 = await DappLib.characterxGetTotalSupply({})
assert.equal(res1.result, 2, "❗Incorrect. The total supply should be 2")
console.log("Total supply should be 2: " + res1.result)
}
});
it(`28. Batch mint characterID 1, setID 0, quantity 5 to accounts[2] and Admin account - Admin`, async() => {
let testData1 = {
signer: config.accounts[0],
setID: "0",
characterID: "1",
quantity: "5",
recipientAddr: config.accounts[0]
}
let testData2 = {
signer: config.accounts[0],
setID: "0",
characterID: "1",
quantity: "5",
recipientAddr: config.accounts[2]
}
await DappLib.characterxBatchMintCharacter(testData1)
let res1 = await DappLib.characterxGetTotalSupply({})
assert.equal(res1.result, 7, "❗Incorrect. Total supply should be 7")
console.log("Total supply should be 12: " + res1.result)
try {
await DappLib.characterxBatchMintCharacter(testData2)
} catch (e) {
let res2 = await DappLib.characterxGetTotalSupply({})
assert.equal(res2.result, 12, "❗Incorrect. Total supply should be 12")
console.log("Total supply should be 12: " + res2.result)
}
});
it(`29. Get total supply - after minting charaters`, async() => {
let res1 = await DappLib.characterxGetTotalSupply({})
assert.equal(res1.result, 12, "❗Incorrect. Total supply should be 12")
console.log("Total supply is 12: " + res1.result)
});