Skip to content

Commit f029900

Browse files
committed
feat: test zenith sequencer fns
1 parent 082b108 commit f029900

File tree

2 files changed

+68
-9
lines changed

2 files changed

+68
-9
lines changed

.gas-snapshot

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
ZenithTest:test_addSequencer() (gas: 88191)
12
ZenithTest:test_badSignature() (gas: 37477)
23
ZenithTest:test_configureEnter() (gas: 82311)
34
ZenithTest:test_disallowedEnter() (gas: 17916)
@@ -7,13 +8,16 @@ ZenithTest:test_enterToken_defaultChain() (gas: 62915)
78
ZenithTest:test_enterTransact() (gas: 60890)
89
ZenithTest:test_enter_defaultChain() (gas: 24033)
910
ZenithTest:test_fallback() (gas: 21534)
10-
ZenithTest:test_incorrectHostBlock() (gas: 35288)
11-
ZenithTest:test_notSequencer() (gas: 34201)
12-
ZenithTest:test_onePerBlock() (gas: 68453)
11+
ZenithTest:test_incorrectHostBlock() (gas: 35310)
12+
ZenithTest:test_notSequencer() (gas: 34223)
13+
ZenithTest:test_notSequencerAdmin() (gas: 10193)
14+
ZenithTest:test_onePerBlock() (gas: 68463)
1315
ZenithTest:test_onlyTokenAdmin() (gas: 16926)
1416
ZenithTest:test_receive() (gas: 21384)
17+
ZenithTest:test_removeSequencer() (gas: 39857)
1518
ZenithTest:test_setUp() (gas: 16968)
16-
ZenithTest:test_submitBlock() (gas: 61187)
19+
ZenithTest:test_setUp() (gas: 8434)
20+
ZenithTest:test_submitBlock() (gas: 63468)
1721
ZenithTest:test_transact() (gas: 58562)
1822
ZenithTest:test_transact_defaultChain() (gas: 57475)
1923
ZenithTest:test_withdraw() (gas: 59033)

test/Zenith.t.sol

+60-5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ contract ZenithTest is Test {
2323
bytes32 blockDataHash
2424
);
2525

26+
event SequencerSet(address indexed sequencer, bool indexed permissioned);
27+
2628
function setUp() public {
2729
address[] memory initialEnterTokens;
2830
target = new Zenith(block.chainid + 1, address(this), initialEnterTokens, address(this));
@@ -39,13 +41,18 @@ contract ZenithTest is Test {
3941
commit = target.blockCommitment(header);
4042
}
4143

44+
function test_setUp() public {
45+
assertEq(target.sequencerAdmin(), address(this));
46+
assertEq(target.deployBlockNumber(), block.number);
47+
}
48+
4249
// cannot submit block with incorrect host block number
4350
function test_incorrectHostBlock() public {
4451
// change to incorrect host block number
4552
header.hostBlockNumber = 100;
4653
commit = target.blockCommitment(header);
4754

48-
// sign block commitmenet with sequencer key
55+
// sign block commitment with sequencer key
4956
(uint8 v, bytes32 r, bytes32 s) = vm.sign(sequencerKey, commit);
5057

5158
vm.expectRevert(Zenith.IncorrectHostBlock.selector);
@@ -54,20 +61,24 @@ contract ZenithTest is Test {
5461

5562
// can submit block successfully with acceptable header & correct signature provided
5663
function test_submitBlock() public {
57-
// sign block commitmenet with correct sequencer key
64+
// sign block commitment with correct sequencer key
5865
(uint8 v, bytes32 r, bytes32 s) = vm.sign(sequencerKey, commit);
5966

67+
assertEq(target.lastSubmittedAtBlock(header.rollupChainId), 0);
68+
6069
// should emit BlockSubmitted event
6170
vm.expectEmit();
6271
emit BlockSubmitted(
6372
vm.addr(sequencerKey), header.rollupChainId, header.gasLimit, header.rewardAddress, header.blockDataHash
6473
);
6574
target.submitBlock(header, v, r, s, blockData);
75+
76+
assertEq(target.lastSubmittedAtBlock(header.rollupChainId), block.number);
6677
}
6778

6879
// cannot submit block with invalid sequencer signer from non-permissioned key
6980
function test_notSequencer() public {
70-
// sign block commitmenet with NOT sequencer key
81+
// sign block commitment with NOT sequencer key
7182
(uint8 v, bytes32 r, bytes32 s) = vm.sign(notSequencerKey, commit);
7283

7384
vm.expectRevert(abi.encodeWithSelector(Zenith.BadSignature.selector, vm.addr(notSequencerKey)));
@@ -76,7 +87,7 @@ contract ZenithTest is Test {
7687

7788
// cannot submit block with sequencer signature over different block header data
7889
function test_badSignature() public {
79-
// sign original block commitmenet with sequencer key
90+
// sign original block commitment with sequencer key
8091
(uint8 v, bytes32 r, bytes32 s) = vm.sign(sequencerKey, commit);
8192

8293
// change header data from what was signed by sequencer
@@ -90,7 +101,7 @@ contract ZenithTest is Test {
90101

91102
// cannot submit two rollup blocks within one host block
92103
function test_onePerBlock() public {
93-
// sign block commitmenet with correct sequencer key
104+
// sign block commitment with correct sequencer key
94105
(uint8 v, bytes32 r, bytes32 s) = vm.sign(sequencerKey, commit);
95106

96107
// should emit BlockSubmitted event
@@ -105,4 +116,48 @@ contract ZenithTest is Test {
105116
vm.expectRevert(Zenith.OneRollupBlockPerHostBlock.selector);
106117
target.submitBlock(header, v, r, s, blockData);
107118
}
119+
120+
function test_addSequencer() public {
121+
address newSequencer = vm.addr(notSequencerKey);
122+
assertFalse(target.isSequencer(newSequencer));
123+
124+
vm.expectEmit();
125+
emit SequencerSet(newSequencer, true);
126+
target.addSequencer(newSequencer);
127+
128+
assertTrue(target.isSequencer(newSequencer));
129+
130+
// can sign block now with new sequencer key
131+
(uint8 v, bytes32 r, bytes32 s) = vm.sign(notSequencerKey, commit);
132+
vm.expectEmit();
133+
emit BlockSubmitted(
134+
newSequencer, header.rollupChainId, header.gasLimit, header.rewardAddress, header.blockDataHash
135+
);
136+
target.submitBlock(header, v, r, s, blockData);
137+
}
138+
139+
function test_removeSequencer() public {
140+
address sequencer = vm.addr(sequencerKey);
141+
assertTrue(target.isSequencer(sequencer));
142+
143+
vm.expectEmit();
144+
emit SequencerSet(sequencer, false);
145+
target.removeSequencer(sequencer);
146+
147+
assertFalse(target.isSequencer(sequencer));
148+
149+
// cannot sign block with the sequencer key
150+
(uint8 v, bytes32 r, bytes32 s) = vm.sign(sequencerKey, commit);
151+
vm.expectRevert(abi.encodeWithSelector(Zenith.BadSignature.selector, vm.addr(sequencerKey)));
152+
target.submitBlock(header, v, r, s, blockData);
153+
}
154+
155+
function test_notSequencerAdmin() public {
156+
vm.startPrank(address(0x01));
157+
vm.expectRevert(Zenith.OnlySequencerAdmin.selector);
158+
target.addSequencer(address(0x02));
159+
160+
vm.expectRevert(Zenith.OnlySequencerAdmin.selector);
161+
target.removeSequencer(address(0x02));
162+
}
108163
}

0 commit comments

Comments
 (0)