@@ -66,7 +66,7 @@ contract SequencerInboxTest is Test {
66
66
bool isArbHosted ,
67
67
bool isDelayBufferable ,
68
68
BufferConfig memory bufferConfig
69
- ) internal returns (SequencerInbox, Bridge) {
69
+ ) internal returns (SequencerInbox, Bridge, address ) {
70
70
RollupMock rollupMock = new RollupMock (rollupOwner);
71
71
Bridge bridgeImpl = new Bridge ();
72
72
Bridge bridge =
@@ -93,7 +93,7 @@ contract SequencerInboxTest is Test {
93
93
vm.prank (rollupOwner);
94
94
bridge.setSequencerInbox (address (seqInbox));
95
95
96
- return (seqInbox, bridge);
96
+ return (seqInbox, bridge, address (seqInboxImpl) );
97
97
}
98
98
99
99
function deployFeeTokenBasedRollup () internal returns (SequencerInbox, ERC20Bridge ) {
@@ -227,7 +227,7 @@ contract SequencerInboxTest is Test {
227
227
function testAddSequencerL2BatchFromOrigin (
228
228
BufferConfig memory bufferConfig
229
229
) public {
230
- (SequencerInbox seqInbox , Bridge bridge ) = deployRollup (false , false , bufferConfig);
230
+ (SequencerInbox seqInbox , Bridge bridge , ) = deployRollup (false , false , bufferConfig);
231
231
address delayedInboxSender = address (140 );
232
232
uint8 delayedInboxKind = 3 ;
233
233
bytes32 messageDataHash = RAND.Bytes32 ();
@@ -355,7 +355,7 @@ contract SequencerInboxTest is Test {
355
355
abi.encodeWithSelector (ArbSys.arbOSVersion.selector ),
356
356
abi.encode (uint256 (11 ))
357
357
);
358
- (SequencerInbox seqInbox , Bridge bridge ) = deployRollup (true , false , bufferConfig);
358
+ (SequencerInbox seqInbox , Bridge bridge , ) = deployRollup (true , false , bufferConfig);
359
359
360
360
address delayedInboxSender = address (140 );
361
361
uint8 delayedInboxKind = 3 ;
@@ -414,7 +414,7 @@ contract SequencerInboxTest is Test {
414
414
}
415
415
416
416
function testAddSequencerL2BatchFromOriginReverts () public {
417
- (SequencerInbox seqInbox , Bridge bridge ) = deployRollup (false , false , bufferConfigDefault);
417
+ (SequencerInbox seqInbox , Bridge bridge , ) = deployRollup (false , false , bufferConfigDefault);
418
418
address delayedInboxSender = address (140 );
419
419
uint8 delayedInboxKind = 3 ;
420
420
bytes32 messageDataHash = RAND.Bytes32 ();
@@ -517,7 +517,7 @@ contract SequencerInboxTest is Test {
517
517
BufferConfig memory bufferConfig
518
518
) public returns (SequencerInbox, SequencerInbox) {
519
519
vm.assume (DelayBuffer.isValidBufferConfig (bufferConfig));
520
- (SequencerInbox seqInbox ,) = deployRollup (false , false , bufferConfigDefault);
520
+ (SequencerInbox seqInbox ,, ) = deployRollup (false , false , bufferConfigDefault);
521
521
SequencerInbox seqInboxImpl = new SequencerInbox (maxDataSize, dummyReader4844, false , true );
522
522
vm.prank (proxyAdmin);
523
523
TransparentUpgradeableProxy (payable (address (seqInbox))).upgradeToAndCall (
@@ -606,7 +606,7 @@ contract SequencerInboxTest is Test {
606
606
BufferConfig memory bufferConfig
607
607
) public {
608
608
vm.assume (DelayBuffer.isValidBufferConfig (bufferConfig));
609
- (SequencerInbox seqInbox ,) = deployRollup (false , true , bufferConfig);
609
+ (SequencerInbox seqInbox ,, ) = deployRollup (false , true , bufferConfig);
610
610
vm.prank (rollupOwner);
611
611
seqInbox.setBufferConfig (bufferConfig);
612
612
}
@@ -615,24 +615,27 @@ contract SequencerInboxTest is Test {
615
615
BufferConfig memory bufferConfigInvalid
616
616
) public {
617
617
vm.assume (! DelayBuffer.isValidBufferConfig (bufferConfigInvalid));
618
- (SequencerInbox seqInbox ,) = deployRollup (false , true , bufferConfigDefault);
618
+ (SequencerInbox seqInbox ,, ) = deployRollup (false , true , bufferConfigDefault);
619
619
vm.expectRevert (abi.encodeWithSelector (BadBufferConfig.selector ));
620
620
vm.prank (rollupOwner);
621
621
seqInbox.setBufferConfig (bufferConfigInvalid);
622
622
}
623
623
624
- function testSetMaxTimeVariationOverflow (
624
+ function testSetMaxTimeVariation (
625
625
uint256 delayBlocks ,
626
626
uint256 futureBlocks ,
627
627
uint256 delaySeconds ,
628
628
uint256 futureSeconds
629
629
) public {
630
- vm.assume (delayBlocks > uint256 (type (uint64 ).max));
631
- vm.assume (futureBlocks > uint256 (type (uint64 ).max));
632
- vm.assume (delaySeconds > uint256 (type (uint64 ).max));
633
- vm.assume (futureSeconds > uint256 (type (uint64 ).max));
634
- (SequencerInbox seqInbox ,) = deployRollup (false , false , bufferConfigDefault);
635
- vm.expectRevert (abi.encodeWithSelector (BadMaxTimeVariation.selector ));
630
+ (SequencerInbox seqInbox ,,) = deployRollup (false , false , bufferConfigDefault);
631
+ bool checkValue = true ;
632
+ if (
633
+ delayBlocks > uint256 (type (uint64 ).max) || futureBlocks > uint256 (type (uint64 ).max)
634
+ || delaySeconds > uint256 (type (uint64 ).max) || futureSeconds > uint256 (type (uint64 ).max)
635
+ ) {
636
+ vm.expectRevert (abi.encodeWithSelector (BadMaxTimeVariation.selector ));
637
+ checkValue = false ;
638
+ }
636
639
vm.prank (rollupOwner);
637
640
seqInbox.setMaxTimeVariation (
638
641
ISequencerInbox.MaxTimeVariation ({
@@ -642,5 +645,63 @@ contract SequencerInboxTest is Test {
642
645
futureSeconds: futureSeconds
643
646
})
644
647
);
648
+ (uint256 _delayBlocks , uint256 _futureBlocks , uint256 _delaySeconds , uint256 _futureSeconds )
649
+ = seqInbox.maxTimeVariation ();
650
+ if (checkValue) {
651
+ assertEq (_delayBlocks, delayBlocks);
652
+ assertEq (_futureBlocks, futureBlocks);
653
+ assertEq (_delaySeconds, delaySeconds);
654
+ assertEq (_futureSeconds, futureSeconds);
655
+ }
656
+ }
657
+
658
+ function test_updateRollupAddress () public {
659
+ (SequencerInbox seqInbox , Bridge bridge ,) = deployRollup (false , true , bufferConfigDefault);
660
+ address rollup = address (bridge.rollup ());
661
+ vm.prank (rollup);
662
+ bridge.updateRollupAddress (IOwnable (address (1337 )));
663
+ vm.mockCall (
664
+ address (rollup),
665
+ 0 ,
666
+ abi.encodeWithSelector (IOwnable.owner.selector ),
667
+ abi.encode (address (this ))
668
+ );
669
+ seqInbox.updateRollupAddress ();
670
+ assertEq (address (seqInbox.rollup ()), address (1337 ), "Invalid rollup " );
671
+ }
672
+
673
+ function test_updateRollupAddress_revert_NotOwner () public {
674
+ (SequencerInbox seqInbox , Bridge bridge ,) = deployRollup (false , true , bufferConfigDefault);
675
+ address rollup = address (bridge.rollup ());
676
+ vm.mockCall (
677
+ address (rollup),
678
+ 0 ,
679
+ abi.encodeWithSelector (IOwnable.owner.selector ),
680
+ abi.encode (address (1337 ))
681
+ );
682
+ vm.expectRevert (abi.encodeWithSelector (NotOwner.selector , address (this ), address (1337 )));
683
+ seqInbox.updateRollupAddress ();
684
+ }
685
+
686
+ function test_postUpgradeInit_revert_NotDelayBufferable () public {
687
+ (SequencerInbox seqInbox ,, address seqInboxImpl ) =
688
+ deployRollup (false , false , bufferConfigDefault);
689
+ vm.expectRevert (abi.encodeWithSelector (NotDelayBufferable.selector ));
690
+ vm.prank (proxyAdmin);
691
+ TransparentUpgradeableProxy (payable (address (seqInbox))).upgradeToAndCall (
692
+ address (seqInboxImpl),
693
+ abi.encodeWithSelector (SequencerInbox.postUpgradeInit.selector , bufferConfigDefault)
694
+ );
695
+ }
696
+
697
+ function test_postUpgradeInit_revert_AlreadyInit () public {
698
+ (SequencerInbox seqInbox ,, address seqInboxImpl ) =
699
+ deployRollup (false , true , bufferConfigDefault);
700
+ vm.expectRevert (abi.encodeWithSelector (AlreadyInit.selector ));
701
+ vm.prank (proxyAdmin);
702
+ TransparentUpgradeableProxy (payable (address (seqInbox))).upgradeToAndCall (
703
+ address (seqInboxImpl),
704
+ abi.encodeWithSelector (SequencerInbox.postUpgradeInit.selector , bufferConfigDefault)
705
+ );
645
706
}
646
707
}
0 commit comments