@@ -23,6 +23,8 @@ contract ZenithTest is Test {
23
23
bytes32 blockDataHash
24
24
);
25
25
26
+ event SequencerSet (address indexed sequencer , bool indexed permissioned );
27
+
26
28
function setUp () public {
27
29
address [] memory initialEnterTokens;
28
30
target = new Zenith (block .chainid + 1 , address (this ), initialEnterTokens, address (this ));
@@ -39,13 +41,18 @@ contract ZenithTest is Test {
39
41
commit = target.blockCommitment (header);
40
42
}
41
43
44
+ function test_setUp () public {
45
+ assertEq (target.sequencerAdmin (), address (this ));
46
+ assertEq (target.deployBlockNumber (), block .number );
47
+ }
48
+
42
49
// cannot submit block with incorrect host block number
43
50
function test_incorrectHostBlock () public {
44
51
// change to incorrect host block number
45
52
header.hostBlockNumber = 100 ;
46
53
commit = target.blockCommitment (header);
47
54
48
- // sign block commitmenet with sequencer key
55
+ // sign block commitment with sequencer key
49
56
(uint8 v , bytes32 r , bytes32 s ) = vm.sign (sequencerKey, commit);
50
57
51
58
vm.expectRevert (Zenith.IncorrectHostBlock.selector );
@@ -54,20 +61,24 @@ contract ZenithTest is Test {
54
61
55
62
// can submit block successfully with acceptable header & correct signature provided
56
63
function test_submitBlock () public {
57
- // sign block commitmenet with correct sequencer key
64
+ // sign block commitment with correct sequencer key
58
65
(uint8 v , bytes32 r , bytes32 s ) = vm.sign (sequencerKey, commit);
59
66
67
+ assertEq (target.lastSubmittedAtBlock (header.rollupChainId), 0 );
68
+
60
69
// should emit BlockSubmitted event
61
70
vm.expectEmit ();
62
71
emit BlockSubmitted (
63
72
vm.addr (sequencerKey), header.rollupChainId, header.gasLimit, header.rewardAddress, header.blockDataHash
64
73
);
65
74
target.submitBlock (header, v, r, s, blockData);
75
+
76
+ assertEq (target.lastSubmittedAtBlock (header.rollupChainId), block .number );
66
77
}
67
78
68
79
// cannot submit block with invalid sequencer signer from non-permissioned key
69
80
function test_notSequencer () public {
70
- // sign block commitmenet with NOT sequencer key
81
+ // sign block commitment with NOT sequencer key
71
82
(uint8 v , bytes32 r , bytes32 s ) = vm.sign (notSequencerKey, commit);
72
83
73
84
vm.expectRevert (abi.encodeWithSelector (Zenith.BadSignature.selector , vm.addr (notSequencerKey)));
@@ -76,7 +87,7 @@ contract ZenithTest is Test {
76
87
77
88
// cannot submit block with sequencer signature over different block header data
78
89
function test_badSignature () public {
79
- // sign original block commitmenet with sequencer key
90
+ // sign original block commitment with sequencer key
80
91
(uint8 v , bytes32 r , bytes32 s ) = vm.sign (sequencerKey, commit);
81
92
82
93
// change header data from what was signed by sequencer
@@ -90,7 +101,7 @@ contract ZenithTest is Test {
90
101
91
102
// cannot submit two rollup blocks within one host block
92
103
function test_onePerBlock () public {
93
- // sign block commitmenet with correct sequencer key
104
+ // sign block commitment with correct sequencer key
94
105
(uint8 v , bytes32 r , bytes32 s ) = vm.sign (sequencerKey, commit);
95
106
96
107
// should emit BlockSubmitted event
@@ -105,4 +116,48 @@ contract ZenithTest is Test {
105
116
vm.expectRevert (Zenith.OneRollupBlockPerHostBlock.selector );
106
117
target.submitBlock (header, v, r, s, blockData);
107
118
}
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
+ }
108
163
}
0 commit comments