-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy path14_voucherKernel.ts
736 lines (657 loc) · 23.7 KB
/
14_voucherKernel.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
import {ethers} from 'hardhat';
import {Signer, ContractFactory, Contract} from 'ethers';
import {expect} from 'chai';
import {calculateDeploymentAddresses} from '../testHelpers/contractAddress';
import constants from '../testHelpers/constants';
import Users from '../testHelpers/users';
import Utils from '../testHelpers/utils';
import UtilsBuilder from '../testHelpers/utilsBuilder';
import {
BosonRouter,
VoucherSets,
Vouchers,
VoucherKernel,
Cashier,
TokenRegistry,
MockERC20Permit,
MockERC721Receiver,
} from '../typechain';
const {keccak256, solidityPack} = ethers.utils;
let VoucherSets_Factory: ContractFactory;
let Vouchers_Factory: ContractFactory;
let VoucherKernel_Factory: ContractFactory;
let Cashier_Factory: ContractFactory;
let BosonRouter_Factory: ContractFactory;
let TokenRegistry_Factory: ContractFactory;
let MockERC20Permit_Factory: ContractFactory;
let MockERC721Receiver_Factory: ContractFactory;
import revertReasons from '../testHelpers/revertReasons';
import {waffle} from 'hardhat';
import ERC721receiver from '../artifacts/contracts/mocks/MockERC721Receiver.sol/MockERC721Receiver.json';
const {deployMockContract} = waffle;
import {eventNames} from '../testHelpers/events';
let utils: Utils;
let users;
let contractAddresses;
describe('VOUCHER KERNEL', () => {
before(async () => {
const signers: Signer[] = await ethers.getSigners();
users = new Users(signers);
VoucherSets_Factory = await ethers.getContractFactory('VoucherSets');
Vouchers_Factory = await ethers.getContractFactory('Vouchers');
VoucherKernel_Factory = await ethers.getContractFactory('VoucherKernel');
Cashier_Factory = await ethers.getContractFactory('Cashier');
BosonRouter_Factory = await ethers.getContractFactory('BosonRouter');
TokenRegistry_Factory = await ethers.getContractFactory('TokenRegistry');
MockERC20Permit_Factory = await ethers.getContractFactory(
'MockERC20Permit'
);
MockERC721Receiver_Factory = await ethers.getContractFactory(
'MockERC721Receiver'
);
await setPeriods();
});
let contractVoucherSets: VoucherSets,
contractVouchers: Vouchers,
contractVoucherKernel: VoucherKernel,
contractCashier: Cashier,
contractBosonRouter: BosonRouter,
contractBSNTokenPrice: MockERC20Permit,
contractBSNTokenDeposit: MockERC20Permit,
contractTokenRegistry: TokenRegistry,
contractMockERC721Receiver: MockERC721Receiver;
async function setPeriods() {
const timestamp = await Utils.getCurrTimestamp();
constants.PROMISE_VALID_FROM = timestamp;
constants.PROMISE_VALID_TO = timestamp + 2 * constants.SECONDS_IN_DAY;
}
async function deployContracts() {
const sixtySeconds = 60;
contractAddresses = await calculateDeploymentAddresses(
users.deployer.address,
[
'TokenRegistry',
'VoucherSets',
'Vouchers',
'VoucherKernel',
'Cashier',
'BosonRouter',
]
);
contractTokenRegistry = (await TokenRegistry_Factory.deploy()) as Contract &
TokenRegistry;
contractVoucherSets = (await VoucherSets_Factory.deploy(
'https://token-cdn-domain/{id}.json',
contractAddresses.Cashier,
contractAddresses.VoucherKernel
)) as Contract & VoucherSets;
contractVouchers = (await Vouchers_Factory.deploy(
'https://token-cdn-domain/orders/metadata/',
'Boson Smart Voucher',
'BSV',
contractAddresses.Cashier,
contractAddresses.VoucherKernel
)) as Contract & Vouchers;
contractVoucherKernel = (await VoucherKernel_Factory.deploy(
contractAddresses.BosonRouter,
contractAddresses.Cashier,
contractAddresses.VoucherSets,
contractAddresses.Vouchers
)) as Contract & VoucherKernel;
contractCashier = (await Cashier_Factory.deploy(
contractAddresses.BosonRouter,
contractAddresses.VoucherKernel,
contractAddresses.VoucherSets,
contractAddresses.Vouchers
)) as Contract & Cashier;
contractBosonRouter = (await BosonRouter_Factory.deploy(
contractAddresses.VoucherKernel,
contractAddresses.TokenRegistry,
contractAddresses.Cashier
)) as Contract & BosonRouter;
contractBSNTokenPrice = (await MockERC20Permit_Factory.deploy(
'BosonTokenPrice',
'BPRC'
)) as Contract & MockERC20Permit;
contractBSNTokenDeposit = (await MockERC20Permit_Factory.deploy(
'BosonTokenDeposit',
'BDEP'
)) as Contract & MockERC20Permit;
contractMockERC721Receiver =
(await MockERC721Receiver_Factory.deploy()) as Contract &
MockERC721Receiver;
await contractTokenRegistry.deployed();
await contractVoucherSets.deployed();
await contractVouchers.deployed();
await contractVoucherKernel.deployed();
await contractCashier.deployed();
await contractBosonRouter.deployed();
await contractBSNTokenPrice.deployed();
await contractBSNTokenDeposit.deployed();
await contractMockERC721Receiver.deployed();
await contractVoucherSets.setApprovalForAll(
contractVoucherKernel.address,
true
);
await contractVouchers.setApprovalForAll(
contractVoucherKernel.address,
true
);
await contractVoucherKernel.setComplainPeriod(sixtySeconds);
await contractVoucherKernel.setCancelFaultPeriod(sixtySeconds);
await contractTokenRegistry.setTokenLimit(
contractBSNTokenPrice.address,
constants.TOKEN_LIMIT
);
await contractTokenRegistry.setTokenLimit(
contractBSNTokenDeposit.address,
constants.TOKEN_LIMIT
);
await contractTokenRegistry.setETHLimit(constants.ETHER_LIMIT);
//Set Boson Token as it's own wrapper so that the same interface can be called in the code
await contractTokenRegistry.setTokenWrapperAddress(
contractBSNTokenPrice.address,
contractBSNTokenPrice.address
);
await contractTokenRegistry.setTokenWrapperAddress(
contractBSNTokenDeposit.address,
contractBSNTokenDeposit.address
);
}
describe('With normal deployment', () => {
function promiseKeyForVoucherKernel(contractAddress, seller, sellerNonce) {
return keccak256(
solidityPack(
['address', 'uint256', 'uint256', 'uint256', 'address'],
[
seller.address,
sellerNonce,
constants.PROMISE_VALID_FROM,
constants.PROMISE_VALID_TO,
contractAddress,
]
)
);
}
beforeEach(async () => {
await deployContracts();
});
it('Should emit events when deployed', async () => {
const signers: Signer[] = await ethers.getSigners();
const users = new Users(signers);
expect(contractVoucherKernel.deployTransaction)
.to.emit(contractVoucherKernel, eventNames.LOG_BOSON_ROUTER_SET)
.withArgs(
ethers.utils.getAddress(contractAddresses.BosonRouter),
users.deployer.address
);
expect(contractVoucherKernel.deployTransaction)
.to.emit(contractVoucherKernel, eventNames.LOG_CASHIER_SET)
.withArgs(
ethers.utils.getAddress(contractAddresses.Cashier),
users.deployer.address
);
expect(contractVoucherKernel.deployTransaction)
.to.emit(contractVoucherKernel, eventNames.LOG_VOUCHER_SET_TOKEN_SET)
.withArgs(
ethers.utils.getAddress(contractAddresses.VoucherSets),
users.deployer.address
);
expect(contractVoucherKernel.deployTransaction)
.to.emit(contractVoucherKernel, eventNames.LOG_VOUCHER_TOKEN_SET)
.withArgs(
ethers.utils.getAddress(contractAddresses.Vouchers),
users.deployer.address
);
expect(contractVoucherKernel.deployTransaction)
.to.emit(contractVoucherKernel, eventNames.LOG_COMPLAIN_PERIOD_CHANGED)
.withArgs(7 * constants.SECONDS_IN_DAY, users.deployer.address);
expect(contractVoucherKernel.deployTransaction)
.to.emit(
contractVoucherKernel,
eventNames.LOG_CANCEL_FAULT_PERIOD_CHANGED
)
.withArgs(7 * constants.SECONDS_IN_DAY, users.deployer.address);
});
it('[NEGATIVE] Should revert if attacker tries to call method that should be called only from bosonRouter', async () => {
const attackerInstance = contractVoucherKernel.connect(
users.attacker.signer
);
await expect(attackerInstance.pause()).to.be.revertedWith(
revertReasons.ONLY_FROM_ROUTER
);
await expect(attackerInstance.unpause()).to.be.revertedWith(
revertReasons.ONLY_FROM_ROUTER
);
await expect(
attackerInstance.createTokenSupplyId(
users.other1.address,
constants.PROMISE_VALID_FROM,
constants.PROMISE_VALID_TO,
constants.PROMISE_PRICE1,
constants.PROMISE_DEPOSITSE1,
constants.PROMISE_DEPOSITBU1,
constants.QTY_10
)
).to.be.revertedWith(revertReasons.ONLY_FROM_ROUTER);
await expect(
attackerInstance.createPaymentMethod(
constants.ONE,
1,
constants.ZERO_ADDRESS,
constants.ZERO_ADDRESS
)
).to.be.revertedWith(revertReasons.ONLY_FROM_ROUTER);
await expect(
attackerInstance.fillOrder(
constants.ONE,
users.seller.address,
users.buyer.address,
1
)
).to.be.revertedWith(revertReasons.ONLY_FROM_ROUTER);
await expect(
attackerInstance.redeem(constants.ONE, users.buyer.address)
).to.be.revertedWith(revertReasons.ONLY_FROM_ROUTER);
await expect(
attackerInstance.refund(constants.ONE, users.buyer.address)
).to.be.revertedWith(revertReasons.ONLY_FROM_ROUTER);
await expect(
attackerInstance.complain(constants.ONE, users.buyer.address)
).to.be.revertedWith(revertReasons.ONLY_FROM_ROUTER);
await expect(
attackerInstance.cancelOrFault(constants.ONE, users.seller.address)
).to.be.revertedWith(revertReasons.ONLY_FROM_ROUTER); // should be uncommented after https://github.com/bosonprotocol/contracts/issues/195
await expect(
attackerInstance.cancelOrFaultVoucherSet(
constants.ONE,
users.seller.address
)
).to.be.revertedWith(revertReasons.ONLY_FROM_ROUTER);
});
it('[NEGATIVE] Should revert if attacker tries to call method that should be called only from cashier', async () => {
const attackerInstance = contractVoucherKernel.connect(
users.attacker.signer
);
await expect(
attackerInstance.setPaymentReleased(constants.ONE)
).to.be.revertedWith(revertReasons.UNAUTHORIZED_CASHIER);
await expect(
attackerInstance.setDepositsReleased(
constants.ONE,
constants.ONE,
constants.ONE
)
).to.be.revertedWith(revertReasons.UNAUTHORIZED_CASHIER);
await expect(
attackerInstance.setSupplyHolderOnTransfer(
constants.ONE,
users.seller.address
)
).to.be.revertedWith(revertReasons.UNAUTHORIZED_CASHIER);
});
it('Should return correct promise keys', async () => {
await setPeriods();
utils = await UtilsBuilder.create()
.ETHETH()
.buildAsync(
contractVoucherSets,
contractVouchers,
contractVoucherKernel,
contractCashier,
contractBosonRouter
);
// create few orders
for (let i = 0; i < 5; i++) {
await utils.createOrder(
users.seller,
constants.PROMISE_VALID_FROM,
constants.PROMISE_VALID_TO,
constants.PROMISE_PRICE1,
constants.PROMISE_DEPOSITSE1,
constants.PROMISE_DEPOSITBU1,
constants.QTY_10
);
}
// test that promise keys as expected
for (let i = 0; i < 5; i++) {
expect(await contractVoucherKernel.getPromiseKey(i)).to.equal(
promiseKeyForVoucherKernel(
contractVoucherKernel.address,
users.seller,
i
),
`Promise key ${i} mismatch`
);
}
});
it('Should return correct promise id from voucher ID', async () => {
await setPeriods();
utils = await UtilsBuilder.create()
.ETHETH()
.buildAsync(
contractVoucherSets,
contractVouchers,
contractVoucherKernel,
contractCashier,
contractBosonRouter
);
const tokenSupplyKey = await utils.createOrder(
users.seller,
constants.PROMISE_VALID_FROM,
constants.PROMISE_VALID_TO,
constants.PROMISE_PRICE1,
constants.PROMISE_DEPOSITSE1,
constants.PROMISE_DEPOSITBU1,
constants.QTY_10
);
// create few orders
for (let i = 0; i < 5; i++) {
const tokenVoucherId = await utils.commitToBuy(
users.buyer,
users.seller,
tokenSupplyKey,
constants.PROMISE_PRICE1,
constants.PROMISE_DEPOSITBU1
);
expect(
await contractVoucherKernel.getPromiseIdFromVoucherId(tokenVoucherId)
).to.equal(
promiseKeyForVoucherKernel(
contractVoucherKernel.address,
users.seller,
0
),
`Promise key ${i} mismatch`
);
}
});
it('[NEGATIVE] Should revert for wrong token voucher id', async () => {
await expect(
contractVoucherKernel.getPromiseIdFromVoucherId(constants.ZERO)
).to.be.revertedWith(revertReasons.UNSPECIFIED_ID);
});
it('Should return correct type id', async () => {
await setPeriods();
utils = await UtilsBuilder.create()
.ETHETH()
.buildAsync(
contractVoucherSets,
contractVouchers,
contractVoucherKernel,
contractCashier,
contractBosonRouter
);
expect(await contractVoucherKernel.getTypeId()).to.equal(
0,
'Wrong type id'
);
for (let i = 0; i < 5; i++) {
await utils.createOrder(
users.seller,
constants.PROMISE_VALID_FROM,
constants.PROMISE_VALID_TO,
constants.PROMISE_PRICE1,
constants.PROMISE_DEPOSITSE1,
constants.PROMISE_DEPOSITBU1,
constants.QTY_10
);
expect(await contractVoucherKernel.getTypeId()).to.equal(
i + 1,
`Wrong type id ${i + 1}`
);
}
});
it('Should return correct boson router address', async () => {
expect(await contractVoucherKernel.getBosonRouterAddress()).to.equal(
contractBosonRouter.address,
'Wrong boson router address'
);
});
it('Should return correct cashier address', async () => {
expect(await contractVoucherKernel.getCashierAddress()).to.equal(
contractCashier.address,
'Wrong boson router address'
);
});
it('[NEGATIVE] Should revert if fillOrder is called with wrong token Id Supply', async () => {
// spoof boson router address
await contractBosonRouter.pause();
await contractVoucherKernel.setBosonRouterAddress(users.deployer.address);
await contractVoucherKernel.unpause();
await expect(
contractVoucherKernel.fillOrder(
constants.ZERO,
users.seller.address,
users.buyer.address,
0
)
).to.be.revertedWith(revertReasons.UNSPECIFIED_ID);
});
it('[NEGATIVE] Should revert if triggerExpiration voucher id is zero', async () => {
await expect(
contractVoucherKernel.triggerExpiration(constants.ZERO)
).to.be.revertedWith(revertReasons.UNSPECIFIED_ID);
});
it('[NEGATIVE] Should revert if triggerFinalizeVoucher voucher id is zero', async () => {
await expect(
contractVoucherKernel.triggerFinalizeVoucher(constants.ZERO)
).to.be.revertedWith(revertReasons.UNSPECIFIED_ID);
});
describe('Spoof boson router', () => {
let tokenSupplyId;
beforeEach(async () => {
await setPeriods();
utils = await UtilsBuilder.create()
.ETHETH()
.buildAsync(
contractVoucherSets,
contractVouchers,
contractVoucherKernel,
contractCashier,
contractBosonRouter
);
tokenSupplyId = await utils.createOrder(
users.seller,
constants.PROMISE_VALID_FROM,
constants.PROMISE_VALID_TO,
constants.PROMISE_PRICE1,
constants.PROMISE_DEPOSITSE1,
constants.PROMISE_DEPOSITBU1,
constants.QTY_10
);
// spoof boson router address
await contractBosonRouter.pause();
await contractVoucherKernel.setBosonRouterAddress(
users.deployer.address
);
await contractVoucherKernel.unpause();
});
it('[NEGATIVE] Should revert if fillOrder is called with wrong holder', async () => {
await expect(
contractVoucherKernel.fillOrder(
tokenSupplyId,
users.seller.address,
constants.ZERO_ADDRESS,
constants.ZERO
)
).to.be.revertedWith(revertReasons.ZERO_ADDRESS_NOT_ALLOWED);
});
it('[NEGATIVE] Should revert if fillOrder is called with holder contract that does not support ERC721', async () => {
const nonERC721SupportingContract = contractCashier;
await expect(
contractVoucherKernel.fillOrder(
tokenSupplyId,
users.seller.address,
nonERC721SupportingContract.address,
1
)
).to.be.revertedWith(revertReasons.UNSUPPORTED_ERC721_RECEIVED);
});
it('[NEGATIVE] Should revert if fillOrder is called with holder contract that does not implement onERC721Received', async () => {
const mockERC721Receiver = await deployMockContract(
users.deployer.signer,
ERC721receiver.abi
); //deploys mock
await mockERC721Receiver.mock.onERC721Received.returns('0x00000000');
await expect(
contractVoucherKernel.fillOrder(
tokenSupplyId,
users.seller.address,
mockERC721Receiver.address,
1
)
).to.be.revertedWith(revertReasons.UNSUPPORTED_ERC721_RECEIVED);
});
it('[NEGATIVE] Should revert with same revert reason as any arbitrary revert reason of the holder contract', async () => {
const mockERC721Receiver = await deployMockContract(
users.deployer.signer,
ERC721receiver.abi
); //deploys mock
const arbitraryRevertReason = 'arbitrary revert reason';
await mockERC721Receiver.mock.onERC721Received.revertsWithReason(
arbitraryRevertReason
);
await expect(
contractVoucherKernel.fillOrder(
tokenSupplyId,
users.seller.address,
mockERC721Receiver.address,
1
)
).to.be.revertedWith(arbitraryRevertReason);
});
it('Should be possible to call fillOrder with holder contract that can receive ERC721', async () => {
await expect(
contractVoucherKernel.fillOrder(
tokenSupplyId,
users.seller.address,
contractMockERC721Receiver.address,
constants.ZERO
)
).to.not.be.reverted;
});
});
describe('Spoof cashier', () => {
beforeEach(async () => {
await setPeriods();
utils = await UtilsBuilder.create()
.ETHETH()
.buildAsync(
contractVoucherSets,
contractVouchers,
contractVoucherKernel,
contractCashier,
contractBosonRouter
);
await utils.createOrder(
users.seller,
constants.PROMISE_VALID_FROM,
constants.PROMISE_VALID_TO,
constants.PROMISE_PRICE1,
constants.PROMISE_DEPOSITSE1,
constants.PROMISE_DEPOSITBU1,
constants.QTY_10
);
// spoof boson router address
await contractBosonRouter.pause();
await contractVoucherKernel.setCashierAddress(users.deployer.address);
await contractBosonRouter.unpause();
});
it('[NEGATIVE] Should revert if setPaymentReleased voucher id is zero', async () => {
await expect(
contractVoucherKernel.setPaymentReleased(constants.ZERO)
).to.be.revertedWith(revertReasons.UNSPECIFIED_ID);
});
it('[NEGATIVE] Should revert if setDepositReleased voucher id is zero', async () => {
await expect(
contractVoucherKernel.setDepositsReleased(
constants.ZERO,
constants.ONE,
constants.ONE
)
).to.be.revertedWith(revertReasons.UNSPECIFIED_ID);
});
});
it('[NEGATIVE][createTokenSupplyId] Should revert if quantity is zero', async () => {
await deployContracts();
// spoof boson router address
await contractBosonRouter.pause();
await contractVoucherKernel.setBosonRouterAddress(users.deployer.address);
await contractVoucherKernel.unpause();
await expect(
contractVoucherKernel.createTokenSupplyId(
users.other1.address,
constants.PROMISE_VALID_FROM,
constants.PROMISE_VALID_TO,
constants.PROMISE_PRICE1,
constants.PROMISE_DEPOSITSE1,
constants.PROMISE_DEPOSITBU1,
constants.ZERO
)
).to.be.revertedWith(revertReasons.INVALID_QUANTITY_LONG);
});
describe('createTokenSupplyId', async () => {
beforeEach(async () => {
await deployContracts();
// spoof boson router address
await contractBosonRouter.pause();
await contractVoucherKernel.setBosonRouterAddress(
users.deployer.address
);
await contractVoucherKernel.unpause();
});
it('[createTokenSupplyId] Should not revert if validFrom is 5 minutes or more than ValidTo', async () => {
const timestamp = await Utils.getCurrTimestamp();
const validFrom = timestamp + constants.SECONDS_IN_DAY;
// Difference of at least 5 minutes between valid from and valid to
const validTo1 =
timestamp + constants.SECONDS_IN_DAY + 5 * constants.ONE_MINUTE;
await expect(
contractVoucherKernel.createTokenSupplyId(
users.other1.address,
validFrom,
validTo1,
constants.PROMISE_PRICE1,
constants.PROMISE_DEPOSITSE1,
constants.PROMISE_DEPOSITBU1,
constants.QTY_10
)
).to.not.be.reverted;
const validTo2 =
timestamp + constants.SECONDS_IN_DAY + 6 * constants.ONE_MINUTE;
await expect(
contractVoucherKernel.createTokenSupplyId(
users.other1.address,
validFrom,
validTo2,
constants.PROMISE_PRICE1,
constants.PROMISE_DEPOSITSE1,
constants.PROMISE_DEPOSITBU1,
constants.QTY_10
)
).to.not.be.reverted;
});
it('[NEGATIVE][createTokenSupplyId] Should revert if validFrom is less than 5 minutes than validTo', async () => {
const timestamp = await Utils.getCurrTimestamp();
const validFrom = timestamp + constants.SECONDS_IN_DAY;
// Difference of less than 5 minutes between valid from and valid to
const validTo =
timestamp + constants.SECONDS_IN_DAY + 4 * constants.ONE_MINUTE;
await expect(
contractVoucherKernel.createTokenSupplyId(
users.other1.address,
validFrom,
validTo,
constants.PROMISE_PRICE1,
constants.PROMISE_DEPOSITSE1,
constants.PROMISE_DEPOSITBU1,
constants.QTY_10
)
).to.be.revertedWith(
revertReasons.VALID_FROM_MUST_BE_AT_LEAST_5_MINUTES_LESS_THAN_VALID_TO
);
});
});
});
});