-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_cancel_everything_scope.py
544 lines (456 loc) · 34.3 KB
/
test_cancel_everything_scope.py
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
#!/usr/bin/python
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
from framework_extension import MasterTestFramework
from framework_entity import TestEntity
from framework_info import TestInfo
# Helper
BTC = 0
MSC = 1
TMSC = 2
MIndiv1 = 3
MDiv1 = 4
TIndiv1 = 2147483651
TIndiv2 = 2147483652
TIndiv3 = 2147483653
TIndivMax = 2147483654
TDiv1 = 2147483655
TDiv2 = 2147483656
TDiv3 = 2147483657
TDivMax = 2147483658
TNotCreated = 2147483659
ADD_1 = 1
CANCEL_2 = 2
CANCEL_3 = 3
CANCEL_4 = 4
class MetaDexCancelEverythingScopeTest(MasterTestFramework):
def run_test(self):
"""Tests if the effects valid CANCEL-EVERYTHING commands are limited to the ecosystem they are executed in."""
self.entities = [TestEntity(node) for node in self.nodes]
self.prepare_funding()
self.prepare_properties()
self.initial_distribution()
# TODO: all tests fail, because "cancel-everything" does not respect it's scope
self.test_cancel_everything_test_ecosystem_primary_primary() # TODO: it cancels offers of other ecosystem
self.test_cancel_everything_test_ecosystem_primary_secondary() # TODO: it cancels offers of other ecosystem
self.test_cancel_everything_test_ecosystem_secondary_primary() # TODO: it cancels offers of other ecosystem
self.test_cancel_everything_test_ecosystem_secondary_secondary() # TODO: it cancels offers of other ecosystem
self.test_cancel_everything_main_ecosystem_primary_primary() # TODO: it cancels offers of other ecosystem
self.test_cancel_everything_main_ecosystem_primary_secondary() # TODO: it cancels offers of other ecosystem
self.test_cancel_everything_main_ecosystem_secondary_primary() # TODO: it cancels offers of other ecosystem
self.test_cancel_everything_main_ecosystem_secondary_secondary() # TODO: it cancels offers of other ecosystem
def prepare_funding(self):
"""The miner (node 1) furthermore purchases 50000.0 MSC and 50000.0 TMSC."""
entity_miner = self.entities[0]
entity_miner.send_bitcoins(entity_miner.address)
entity_miner.purchase_mastercoins(500.0)
self.generate_block()
self.check_balance(entity_miner.address, MSC, '50000.00000000', '0.00000000')
self.check_balance(entity_miner.address, TMSC, '50000.00000000', '0.00000000')
def prepare_properties(self):
"""The miner (node 1) creates 8 new properties with the maximum amounts possible.
4 with divisible units: TDiv1, TDiv2, TDiv3, TDivMax
4 with indivisible units: TIndiv1, TIndiv2, TIndiv3, TIndivMax
The tokens are going to be distributed as needed.
Final balances of miner (node 1) are tested to confirm correct property creation."""
node = self.entities[0].node
addr = self.entities[0].address
if len(node.listproperties_MP()) > 2:
AssertionError('There should not be more than two properties, MSC and TMSC, after a clean start')
# tx: 50, ecosystem: 2, 9223372036854775807 indivisible tokens, "TIndiv1"
node.sendrawtx_MP(addr, '0000003202000100000000000054496e646976310000007fffffffffffffff')
# tx: 50, ecosystem: 2, 9223372036854775807 indivisible tokens, "TIndiv2"
node.sendrawtx_MP(addr, '0000003202000100000000000054496e646976320000007fffffffffffffff')
# tx: 50, ecosystem: 2, 9223372036854775807 indivisible tokens, "TIndiv3"
node.sendrawtx_MP(addr, '0000003202000100000000000054496e646976330000007fffffffffffffff')
# tx: 50, ecosystem: 2, 9223372036854775807 indivisible tokens, "TIndivMax"
node.sendrawtx_MP(addr, '0000003202000100000000000054496e6469764d61780000007fffffffffffffff')
# tx: 50, ecosystem: 2, 92233720368.54770000 divisible tokens, "TDiv1"
node.sendrawtx_MP(addr, '0000003202000200000000000054446976310000007fffffffffffffff')
# tx: 50, ecosystem: 2, 92233720368.54770000 divisible tokens, "TDiv2"
node.sendrawtx_MP(addr, '0000003202000200000000000054446976320000007fffffffffffffff')
# tx: 50, ecosystem: 2, 92233720368.54770000 divisible tokens, "TDiv3"
node.sendrawtx_MP(addr, '0000003202000200000000000054446976330000007fffffffffffffff')
# tx: 50, ecosystem: 2, 92233720368.54770000 divisible tokens, "TDivMax"
node.sendrawtx_MP(addr, '00000032020002000000000000544469764d61780000007fffffffffffffff')
# tx: 50, ecosystem: 1, 9223372036854775807 indivisible tokens, "MIndiv1"
node.sendrawtx_MP(addr, '000000320100010000000000004d496e646976310000007fffffffffffffff')
# tx: 50, ecosystem: 1, 92233720368.54770000 divisible tokens, "MDiv1"
node.sendrawtx_MP(addr, '000000320100020000000000004d446976310000007fffffffffffffff')
self.generate_block()
self.check_balance(addr, TIndiv1, '9223372036854775807', '0')
self.check_balance(addr, TIndiv2, '9223372036854775807', '0')
self.check_balance(addr, TIndiv3, '9223372036854775807', '0')
self.check_balance(addr, TIndivMax, '9223372036854775807', '0')
self.check_balance(addr, TDiv1, '92233720368.54775807', '0.00000000')
self.check_balance(addr, TDiv2, '92233720368.54775807', '0.00000000')
self.check_balance(addr, TDiv3, '92233720368.54775807', '0.00000000')
self.check_balance(addr, TDivMax, '92233720368.54775807', '0.00000000')
self.check_balance(addr, MIndiv1, '9223372036854775807', '0')
self.check_balance(addr, MDiv1, '92233720368.54775807', '0.00000000')
def initial_distribution(self):
"""Tokens and bitcoins are sent from the miner (node 1) to A1 (node 2).
A1 (node 2) gets 50.0 BTC, 50.0 MSC, 50.0 TMSC, 50.0 TDiv1 and 50 MIndiv1.
Final balances are tested."""
entity_miner = self.entities[0]
entity_a1 = self.entities[1]
entity_miner.send_bitcoins(entity_a1.address, 50.0)
entity_miner.send(entity_a1.address, MSC, '50.00000000')
entity_miner.send(entity_a1.address, TMSC, '50.00000000')
entity_miner.send(entity_a1.address, MIndiv1, '50')
# A1 does not receive any MDiv1
# A1 does not receive any TIndiv1
entity_miner.send(entity_a1.address, TDiv1, '50.00000000')
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
def test_cancel_everything_test_ecosystem_primary_primary(self):
"""
1. A1 starts with 50.0 MSC, 50.0 TMSC, 50 MIndiv1 and 50.0 TDiv1
2. A1 offers 50.0 MSC for 50.0 MDiv1 and 50.0 TMSC for 50 TIndiv1
3. A1 cancels everything in the test ecosystem (50.0 TMSC, 50 TIndiv1)
4. A1 cancels everything in the main ecosystem (50.0 MSC, 50.0 MDiv1)
After this test A1 should have the same balance as at the beginning."""
entity_a1 = self.entities[1]
# 1. A1 starts with 50.0 MSC, 50.0 TMSC, 50 MIndiv1 and 50.0 TDiv1
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
# 2. A1 offers 50.0 MSC for 50.0 MDiv1 and 50.0 TMSC for 50 TIndiv1
entity_a1.trade('50.00000000', MSC, '50.00000000', MDiv1, ADD_1)
entity_a1.trade('50.00000000', TMSC, '50', TIndiv1, ADD_1)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '0.00000000', '50.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '0.00000000', '50.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
# 3. A1 cancels everything in the test ecosystem (50.0 TMSC, 50 TIndiv1)
entity_a1.trade('50.00000000', TMSC, '50', TIndiv1, CANCEL_4)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '0.00000000', '50.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
# 4. A1 cancels everything in the main ecosystem (50.0 MSC, 50.0 MDiv1)
entity_a1.trade('50.00000000', MSC, '50.00000000', MDiv1, CANCEL_4)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '0.00000000', '50.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
def test_cancel_everything_test_ecosystem_primary_secondary(self):
"""
1. A1 starts with 50.0 MSC, 50.0 TMSC, 50 MIndiv1 and 50.0 TDiv1
2. A1 offers 50.0 MSC for 50.0 MDiv1 and 50.0 TMSC for 50 TIndiv1
3. A1 cancels everything in the test ecosystem (50 TIndiv1, 50.0 TMSC)
4. A1 cancels everything in the main ecosystem (50.0 MDiv1, 50.0 MSC)
After this test A1 should have the same balance as at the beginning."""
entity_a1 = self.entities[1]
# 1. A1 starts with 50.0 MSC, 50.0 TMSC, 50 MIndiv1 and 50.0 TDiv1
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
# 2. A1 offers 50.0 MSC for 50.0 MDiv1 and 50.0 TMSC for 50 TIndiv1
entity_a1.trade('50.00000000', MSC, '50.00000000', MDiv1, ADD_1)
entity_a1.trade('50.00000000', TMSC, '50', TIndiv1, ADD_1)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '0.00000000', '50.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '0.00000000', '50.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
# 3. A1 cancels everything in the test ecosystem (50 TIndiv1, 50.0 TMSC)
entity_a1.trade('50', TIndiv1, '50.00000000', TMSC, CANCEL_4)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '0.00000000', '50.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
# 4. A1 cancels everything in the main ecosystem (50.0 MDiv1, 50.0 MSC)
entity_a1.trade('50.00000000', MDiv1, '50.00000000', MSC, CANCEL_4)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
def test_cancel_everything_test_ecosystem_secondary_primary(self):
"""
1. A1 starts with 50.0 MSC, 50.0 TMSC, 50 MIndiv1 and 50.0 TDiv1
2. A1 offers 50 MIndiv1 for 50.0 MSC and 50.0 TDiv1 for 50.0 TMSC
3. A1 cancels everything in the test ecosystem (50.0 TMSC, 50.0 TDiv1)
4. A1 cancels everything in the main ecosystem (50.0 MSC, 50 MIndiv1)
After this test A1 should have the same balance as at the beginning."""
entity_a1 = self.entities[1]
# 1. A1 starts with 50.0 MSC, 50.0 TMSC, 50 MIndiv1 and 50.0 TDiv1
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
# 2. A1 offers 50 MIndiv1 for 50.0 MSC and 50.0 TDiv1 for 50.0 TMSC
entity_a1.trade('50', MIndiv1, '50.00000000', MSC, ADD_1)
entity_a1.trade('50.00000000', TDiv1, '50.00000000', TMSC, ADD_1)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '0', '50') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '0.00000000', '50.00000000') # SP 2147483655
# 3. A1 cancels everything in the test ecosystem (50.0 TMSC, 50.0 TDiv1)
entity_a1.trade('50.00000000', TMSC, '50.00000000', TDiv1, CANCEL_4)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '0', '50') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
# 4. A1 cancels everything in the main ecosystem (50.0 MSC, 50 MIndiv1)
entity_a1.trade('50.00000000', MSC, '50', MIndiv1, CANCEL_4)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
def test_cancel_everything_test_ecosystem_secondary_secondary(self):
"""
1. A1 starts with 50.0 MSC, 50.0 TMSC, 50 MIndiv1 and 50.0 TDiv1
2. A1 offers 50 MIndiv1 for 50.0 MSC and 50.0 TDiv1 for 50.0 TMSC
3. A1 cancels everything in the test ecosystem (50.0 TDiv1, 50.0 TMSC)
4. A1 cancels everything in the main ecosystem (50 MIndiv1, 50.0 MSC)
After this test A1 should have the same balance as at the beginning."""
entity_a1 = self.entities[1]
# 1. A1 starts with 50.0 MSC, 50.0 TMSC, 50 MIndiv1 and 50.0 TDiv1
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
# 2. A1 offers 50 MIndiv1 for 50.0 MSC and 50.0 TDiv1 for 50.0 TMSC
entity_a1.trade('50', MIndiv1, '50.00000000', MSC, ADD_1)
entity_a1.trade('50.00000000', TDiv1, '50.00000000', TMSC, ADD_1)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '0', '50') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '0.00000000', '50.00000000') # SP 2147483655
# 3. A1 cancels everything in the test ecosystem (50.0 TDiv1, 50.0 TMSC)
entity_a1.trade('50.00000000', TDiv1, '50.00000000', TMSC, CANCEL_4)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '0', '50') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
# 4. A1 cancels everything in the main ecosystem (50 MIndiv1, 50.0 MSC)
entity_a1.trade('50', MIndiv1, '50.00000000', MSC, CANCEL_4)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
def test_cancel_everything_main_ecosystem_primary_primary(self):
"""
1. A1 starts with 50.0 MSC, 50.0 TMSC, 50 MIndiv1 and 50.0 TDiv1
2. A1 offers 50.0 MSC for 50.0 MDiv1 and 50.0 TMSC for 50 TIndiv1
3. A1 cancels everything in the main ecosystem (50.0 MSC, 50.0 MDiv1)
4. A1 cancels everything in the test ecosystem (50.0 TMSC, 50 TIndiv1)
After this test A1 should have the same balance as at the beginning."""
entity_a1 = self.entities[1]
# 1. A1 starts with 50.0 MSC, 50.0 TMSC, 50 MIndiv1 and 50.0 TDiv1
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
# 2. A1 offers 50.0 MSC for 50.0 MDiv1 and 50.0 TMSC for 50 TIndiv1
entity_a1.trade('50.00000000', MSC, '50.00000000', MDiv1, ADD_1)
entity_a1.trade('50.00000000', TMSC, '50', TIndiv1, ADD_1)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '0.00000000', '50.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '0.00000000', '50.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
# 3. A1 cancels everything in the main ecosystem (50.0 MSC, 50.0 MDiv1)
entity_a1.trade('50.00000000', MSC, '50.00000000', MDiv1, CANCEL_4)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '0.00000000', '50.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
# 4. A1 cancels everything in the test ecosystem (50.0 TMSC, 50 TIndiv1)
entity_a1.trade('50.00000000', TMSC, '50', TIndiv1, CANCEL_4)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
def test_cancel_everything_main_ecosystem_primary_secondary(self):
"""
1. A1 starts with 50.0 MSC, 50.0 TMSC, 50 MIndiv1 and 50.0 TDiv1
2. A1 offers 50.0 MSC for 50.0 MDiv1 and 50.0 TMSC for 50 TIndiv1
3. A1 cancels everything in the main ecosystem (50.0 MDiv1, 50.0 MSC)
4. A1 cancels everything in the test ecosystem (50 TIndiv1, 50.0 TMSC)
After this test A1 should have the same balance as at the beginning."""
entity_a1 = self.entities[1]
# 1. A1 starts with 50.0 MSC, 50.0 TMSC, 50 MIndiv1 and 50.0 TDiv1
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
# 2. A1 offers 50.0 MSC for 50.0 MDiv1 and 50.0 TMSC for 50 TIndiv1
entity_a1.trade('50.00000000', MSC, '50.00000000', MDiv1, ADD_1)
entity_a1.trade('50.00000000', TMSC, '50', TIndiv1, ADD_1)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '0.00000000', '50.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '0.00000000', '50.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
# 3. A1 cancels everything in the main ecosystem (50.0 MDiv1, 50.0 MSC)
entity_a1.trade('50.00000000', MDiv1, '50.00000000', MSC, CANCEL_4)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '0.00000000', '50.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
# 4. A1 cancels everything in the test ecosystem (50 TIndiv1, 50.0 TMSC)
entity_a1.trade('50', TIndiv1, '50.00000000', TMSC, CANCEL_4)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
def test_cancel_everything_main_ecosystem_secondary_primary(self):
"""
1. A1 starts with 50.0 MSC, 50.0 TMSC, 50 MIndiv1 and 50.0 TDiv1
2. A1 offers 50.0 MSC for 50.0 MDiv1 and 50.0 TMSC for 50 TIndiv1
3. A1 cancels everything in the main ecosystem (50.0 MSC, 50 MIndiv1)
4. A1 cancels everything in the test ecosystem (50.0 TMSC, 50 TIndiv1)
After this test A1 should have the same balance as at the beginning."""
entity_a1 = self.entities[1]
# 1. A1 starts with 50.0 MSC, 50.0 TMSC, 50 MIndiv1 and 50.0 TDiv1
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
# 2. A1 offers 50.0 MSC for 50.0 MDiv1 and 50.0 TMSC for 50 TIndiv1
entity_a1.trade('50', MIndiv1, '50.00000000', MSC, ADD_1)
entity_a1.trade('50.00000000', TDiv1, '50.00000000', TMSC, ADD_1)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '0', '50') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '0.00000000', '50.00000000') # SP 2147483655
# 3. A1 cancels everything in the main ecosystem (50.0 MSC, 50 MIndiv1)
entity_a1.trade('50.00000000', MSC, '50', MIndiv1, CANCEL_4)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '0.00000000', '50.00000000') # SP 2147483655
# 4. A1 cancels everything in the test ecosystem (50.0 TMSC, 50 TIndiv1)
entity_a1.trade('50.00000000', TMSC, '50', TIndiv1, CANCEL_4)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
def test_cancel_everything_main_ecosystem_secondary_secondary(self):
"""
1. A1 starts with 50.0 MSC, 50.0 TMSC, 50 MIndiv1 and 50.0 TDiv1
2. A1 offers 50.0 MSC for 50.0 MDiv1 and 50.0 TMSC for 50 TIndiv1
3. A1 cancels everything in the main ecosystem (50 MIndiv1, 50.0 MSC)
4. A1 cancels everything in the test ecosystem (50.0 TDiv1, 50.0 TMSC)
After this test A1 should have the same balance as at the beginning."""
entity_a1 = self.entities[1]
# 1. A1 starts with 50.0 MSC, 50.0 TMSC, 50 MIndiv1 and 50.0 TDiv1
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
# 2. A1 offers 50.0 MSC for 50.0 MDiv1 and 50.0 TMSC for 50 TIndiv1
entity_a1.trade('50', MIndiv1, '50.00000000', MSC, ADD_1)
entity_a1.trade('50.00000000', TDiv1, '50.00000000', TMSC, ADD_1)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '0', '50') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '0.00000000', '50.00000000') # SP 2147483655
# 3. A1 cancels everything in the main ecosystem (50 MIndiv1, 50.0 MSC)
entity_a1.trade('50', MIndiv1, '50.00000000', MSC, CANCEL_4)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '0.00000000', '50.00000000') # SP 2147483655
# 4. A1 cancels everything in the test ecosystem (50.0 TDiv1, 50.0 TMSC)
entity_a1.trade('50.00000000', TDiv1, '50.00000000', CANCEL_4)
self.generate_block()
self.check_balance(entity_a1.address, MSC, '50.00000000', '0.00000000') # SP 1
self.check_balance(entity_a1.address, TMSC, '50.00000000', '0.00000000') # SP 2
self.check_balance(entity_a1.address, MIndiv1, '50', '0') # SP 3
self.check_balance(entity_a1.address, MDiv1, '0.00000000', '0.00000000') # SP 4
self.check_balance(entity_a1.address, TIndiv1, '0', '0') # SP 2147483651
self.check_balance(entity_a1.address, TDiv1, '50.00000000', '0.00000000') # SP 2147483655
if __name__ == '__main__':
MetaDexCancelEverythingScopeTest().main()