-
Notifications
You must be signed in to change notification settings - Fork 17
/
BaseCCForwarder.t.sol
313 lines (268 loc) · 10.5 KB
/
BaseCCForwarder.t.sol
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
// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.0;
import '../src/contracts/CrossChainForwarder.sol';
import './BaseTest.sol';
import {FailingAdapter} from './mocks/FailingAdapter.sol';
import {SuccessAdapter} from './mocks/SuccessAdapter.sol';
contract BaseCCForwarderTest is BaseTest, CrossChainForwarder {
address internal constant CROSS_CHAIN_CONTROLLER = address(123029525691); // can be hardcoded as its not consequential to testing
uint256 internal constant GAS_LIMIT = 500_000;
enum AdapterSuccessType {
ALL_FAILING,
ALL_SUCCESS,
SOME_SUCCESS
}
struct UsedAdapter {
ICrossChainForwarder.ChainIdBridgeConfig bridgeAdapterConfig;
bool success;
bytes returnData;
}
mapping(uint256 => UsedAdapter[]) internal _currentlyUsedAdaptersByChain;
mapping(address => bool) internal _adapterSuccess;
function setUp() public {}
constructor()
CrossChainForwarder(
new ICrossChainForwarder.ForwarderBridgeAdapterConfigInput[](0),
new address[](0),
new ICrossChainForwarder.OptimalBandwidthByChain[](0)
)
{}
// ------------------- Setter modifiers --------------------------
modifier executeAsOwner(address owner) {
vm.assume(owner != address(0));
_transferOwnership(owner);
vm.startPrank(owner);
_;
vm.stopPrank();
}
modifier executeAsGuardian(address guardian) {
vm.assume(guardian != address(0));
_updateGuardian(guardian);
vm.startPrank(guardian);
_;
vm.stopPrank();
}
modifier approveSender(address sender) {
vm.assume(sender != address(0));
_approveSender(sender);
_;
}
function _deployFailingAdapter() internal returns (address) {
FailingAdapter.TrustedRemotesConfig[]
memory trustedRemotes = new FailingAdapter.TrustedRemotesConfig[](1);
trustedRemotes[0].originForwarder = address(1);
trustedRemotes[0].originChainId = 1;
return address(new FailingAdapter(trustedRemotes));
}
function _deploySuccessAdapter() internal returns (address) {
SuccessAdapter.TrustedRemotesConfig[]
memory trustedRemotes = new SuccessAdapter.TrustedRemotesConfig[](0);
return address(new SuccessAdapter(trustedRemotes));
}
modifier enableBridgeAdaptersForPath(
uint256 destinationChainId,
uint256 numberOfAdapters,
AdapterSuccessType adaptersType
) {
// get adapters for destination chain id
delete _currentlyUsedAdaptersByChain[destinationChainId];
for (uint256 i = 1; i < numberOfAdapters + 1; i++) {
address currentChainBridgeAdapter;
if (
adaptersType == AdapterSuccessType.ALL_SUCCESS ||
(adaptersType == AdapterSuccessType.SOME_SUCCESS && i % 2 == 0)
) {
currentChainBridgeAdapter = _deploySuccessAdapter();
_adapterSuccess[currentChainBridgeAdapter] = true;
} else {
currentChainBridgeAdapter = _deployFailingAdapter();
_adapterSuccess[currentChainBridgeAdapter] = false;
}
address destinationBridgeAdapter = address(
uint160(uint(keccak256(abi.encodePacked(i + numberOfAdapters + 1))))
);
bytes memory empty;
bytes memory returnData = _adapterSuccess[currentChainBridgeAdapter]
? empty
: abi.encodeWithSignature('Error(string)', 'error message');
UsedAdapter memory usedBridgeAdapter = UsedAdapter({
bridgeAdapterConfig: ICrossChainForwarder.ChainIdBridgeConfig({
destinationBridgeAdapter: destinationBridgeAdapter,
currentChainBridgeAdapter: currentChainBridgeAdapter
}),
success: _adapterSuccess[currentChainBridgeAdapter],
returnData: returnData
});
_currentlyUsedAdaptersByChain[destinationChainId].push(usedBridgeAdapter);
_enableBridgeAdapterForPath(
destinationChainId,
currentChainBridgeAdapter,
destinationBridgeAdapter
);
}
_;
}
modifier setOptimalBandwidth(uint256 destinationChainId, uint256 optimalBandwidth) {
OptimalBandwidthByChain[] memory optimalBandwidthByChain = new OptimalBandwidthByChain[](1);
optimalBandwidthByChain[0].optimalBandwidth = optimalBandwidth;
optimalBandwidthByChain[0].chainId = destinationChainId;
_updateOptimalBandwidthByChain(optimalBandwidthByChain);
_;
}
// ------------------- Validators modifiers --------------------------
modifier validateEnvelopeNonceIncrement() {
uint256 beforeNonce = _currentEnvelopeNonce;
_;
assertEq(beforeNonce + 1, _currentEnvelopeNonce);
}
modifier validateTransactionNonceIncrement() {
uint256 beforeNonce = _currentTransactionNonce;
_;
assertEq(beforeNonce + 1, _currentTransactionNonce);
}
modifier validateEnvelopeNonceStayedSame() {
uint256 beforeNonce = _currentEnvelopeNonce;
_;
assertEq(beforeNonce, _currentEnvelopeNonce);
}
modifier validateTransactionNonceStayedSame() {
uint256 beforeNonce = _currentTransactionNonce;
_;
assertEq(beforeNonce, _currentTransactionNonce);
}
modifier validateEnvelopRegistry(ExtendedTransaction memory extendedTx) {
assertEq(_registeredEnvelopes[extendedTx.envelopeId], false);
_;
assertEq(_registeredEnvelopes[extendedTx.envelopeId], true);
}
modifier validateTransactionRegistry(ExtendedTransaction memory extendedTx) {
bool beforeRegistry = _forwardedTransactions[extendedTx.transactionId];
_;
assertEq(beforeRegistry, false);
assertEq(_forwardedTransactions[extendedTx.transactionId], true);
}
modifier validateRetryTransactionRegistry(ExtendedTransaction memory extendedTx) {
_;
assertEq(_forwardedTransactions[extendedTx.transactionId], true);
}
modifier validateTransactionNotRegistered(ExtendedTransaction memory extendedTx) {
assertEq(_forwardedTransactions[extendedTx.transactionId], false);
_;
assertEq(_forwardedTransactions[extendedTx.transactionId], false);
}
modifier validateOptimalBandwidthUsed(
ExtendedTransaction memory extendedTx,
uint256 optimalBandwidth
) {
_;
uint256 destinationChainId = extendedTx.envelope.destinationChainId;
UsedAdapter[] memory usedAdapters = _currentlyUsedAdaptersByChain[destinationChainId];
uint256 successfulAdapters;
uint256 length = optimalBandwidth >= usedAdapters.length
? usedAdapters.length
: optimalBandwidth;
for (uint256 i = 0; i < length; i++) {
if (usedAdapters[i].success) {
successfulAdapters++;
}
}
uint256 numberOfAdapters = this.getForwarderBridgeAdaptersByChain(destinationChainId).length;
if (optimalBandwidth == 0 || optimalBandwidth >= numberOfAdapters) {
assertEq(successfulAdapters, numberOfAdapters);
} else {
assertEq(successfulAdapters, optimalBandwidth);
}
}
// ----- internal tests helpers ---------------
function _registerEnvelope(ExtendedTransaction memory extendedTx) internal {
_registeredEnvelopes[extendedTx.envelopeId] = true;
}
function _registerTransaction(ExtendedTransaction memory extendedTx) internal {
_forwardedTransactions[extendedTx.transactionId] = true;
}
function _testForwardMessage(ExtendedTransaction memory extendedTx) internal {
_mockAdaptersForwardMessage(extendedTx.envelope.destinationChainId);
bool successEmitted;
UsedAdapter[] memory usedAdapters = _currentlyUsedAdaptersByChain[
extendedTx.envelope.destinationChainId
];
for (uint256 i = 0; i < usedAdapters.length; i++) {
if (usedAdapters[i].success == true && !successEmitted) {
vm.expectEmit(true, true, true, true);
emit EnvelopeRegistered(extendedTx.envelopeId, extendedTx.envelope);
successEmitted = true;
}
}
ChainIdBridgeConfig[] memory shuffledAdapters = _getShuffledBridgeAdaptersByChain(
extendedTx.envelope.destinationChainId
);
for (uint256 i = 0; i < shuffledAdapters.length; i++) {
for (uint256 j = 0; j < usedAdapters.length; j++) {
if (
usedAdapters[j].bridgeAdapterConfig.currentChainBridgeAdapter ==
shuffledAdapters[i].currentChainBridgeAdapter &&
usedAdapters[j].bridgeAdapterConfig.destinationBridgeAdapter ==
shuffledAdapters[i].destinationBridgeAdapter
) {
vm.expectEmit(true, true, true, true);
emit TransactionForwardingAttempted(
extendedTx.transactionId,
extendedTx.envelopeId,
extendedTx.transactionEncoded,
extendedTx.envelope.destinationChainId,
usedAdapters[j].bridgeAdapterConfig.currentChainBridgeAdapter,
usedAdapters[j].bridgeAdapterConfig.destinationBridgeAdapter,
usedAdapters[j].success,
usedAdapters[j].returnData
);
}
}
}
(bytes32 returnedEnvelopeId, bytes32 returnedTransactionId) = this.forwardMessage(
extendedTx.envelope.destinationChainId,
extendedTx.envelope.destination,
GAS_LIMIT,
MESSAGE
);
assertEq(extendedTx.envelopeId, returnedEnvelopeId);
assertEq(extendedTx.transactionId, returnedTransactionId);
}
// ----------- Helper methods -------------------
function _mockAdaptersForwardMessage(uint256 destinationChainId) internal {
ICrossChainForwarder.ChainIdBridgeConfig[] memory bridgeAdapters = this
.getForwarderBridgeAdaptersByChain(destinationChainId);
for (uint256 i = 0; i < bridgeAdapters.length; i++) {
if (_adapterSuccess[bridgeAdapters[i].currentChainBridgeAdapter]) {
vm.mockCall(
bridgeAdapters[i].currentChainBridgeAdapter,
abi.encodeWithSelector(IBaseAdapter.forwardMessage.selector),
abi.encode()
);
}
}
}
function _enableBridgeAdapterForPath(
uint256 destinationChainId,
address currentChainBridgeAdapter,
address destinationBridgeAdapter
) internal {
ICrossChainForwarder.ForwarderBridgeAdapterConfigInput[]
memory bridgeAdaptersInfo = new ICrossChainForwarder.ForwarderBridgeAdapterConfigInput[](1);
bridgeAdaptersInfo[0] = ICrossChainForwarder.ForwarderBridgeAdapterConfigInput({
currentChainBridgeAdapter: currentChainBridgeAdapter,
destinationBridgeAdapter: destinationBridgeAdapter,
destinationChainId: destinationChainId
});
vm.mockCall(
address(currentChainBridgeAdapter),
abi.encodeWithSelector(IBaseAdapter.setupPayments.selector),
abi.encode()
);
_enableBridgeAdapters(bridgeAdaptersInfo);
}
function _approveSender(address sender) internal {
address[] memory sendersToApprove = new address[](1);
sendersToApprove[0] = sender;
_updateSenders(sendersToApprove, true);
}
}