Migrate FlashWallet tests to foundry (#637)
* Remove contracts/zero-ex/contracts/test/TestBridge.sol * Move foundry tests to their default location * Wire up base foundry test and start moving FlashWallet tests and mocks to foundry * Move remaining FlashWallet contract tests to foundry * Switch to foundry default cache config
This commit is contained in:
34
contracts/zero-ex/tests/BaseTest.sol
Normal file
34
contracts/zero-ex/tests/BaseTest.sol
Normal file
@@ -0,0 +1,34 @@
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
/*
|
||||
|
||||
Copyright 2023 ZeroEx Intl.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
*/
|
||||
|
||||
pragma solidity ^0.6.5;
|
||||
|
||||
import "forge-std/Test.sol";
|
||||
|
||||
contract BaseTest is Test {
|
||||
address payable internal account1 = payable(vm.addr(1));
|
||||
address payable internal account2 = payable(vm.addr(2));
|
||||
address payable internal account3 = payable(vm.addr(3));
|
||||
|
||||
constructor() public {
|
||||
vm.deal(account1, 1e20);
|
||||
vm.deal(account2, 1e20);
|
||||
vm.deal(account3, 1e20);
|
||||
}
|
||||
}
|
||||
146
contracts/zero-ex/tests/FlashWalletTest.t.sol
Normal file
146
contracts/zero-ex/tests/FlashWalletTest.t.sol
Normal file
@@ -0,0 +1,146 @@
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
/*
|
||||
|
||||
Copyright 2022 ZeroEx Intl.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
*/
|
||||
|
||||
pragma solidity ^0.6.5;
|
||||
|
||||
import "./BaseTest.sol";
|
||||
import "../contracts/src/external/FlashWallet.sol";
|
||||
import "./mocks/TestCallTarget.sol";
|
||||
|
||||
contract FlashWalletTest is BaseTest {
|
||||
address public owner = account1;
|
||||
FlashWallet public wallet;
|
||||
TestCallTarget public callTarget;
|
||||
|
||||
bytes public constant MAGIC_BYTES = hex"1234567800000000000000000000000000000000000000000000000000000000";
|
||||
bytes public constant REVERTING_DATA = hex"1337";
|
||||
|
||||
event CallTargetCalled(address sender, bytes data, uint256 value);
|
||||
|
||||
function setUp() public {
|
||||
vm.startPrank(owner);
|
||||
|
||||
wallet = new FlashWallet();
|
||||
callTarget = new TestCallTarget();
|
||||
|
||||
vm.stopPrank();
|
||||
}
|
||||
|
||||
function test_OwnedByDeployer() public {
|
||||
assertEq(wallet.owner(), account1);
|
||||
}
|
||||
|
||||
function test_executeCall_nonOwnerCannotExecute() public {
|
||||
vm.expectRevert(LibOwnableRichErrorsV06.OnlyOwnerError(account2, owner));
|
||||
vm.startPrank(account2);
|
||||
wallet.executeCall(address(callTarget), "0x1", 123);
|
||||
}
|
||||
|
||||
function test_executeCall_ownerCanCallWithZeroValue() public {
|
||||
vm.expectEmit(true, true, true, true);
|
||||
emit CallTargetCalled(address(wallet), "0x1", 0);
|
||||
vm.startPrank(owner);
|
||||
wallet.executeCall(address(callTarget), "0x1", 0);
|
||||
}
|
||||
|
||||
function test_executeCall_ownerCanCallWithNonZeroValue() public {
|
||||
vm.expectEmit(true, true, true, true);
|
||||
emit CallTargetCalled(address(wallet), "0x1", 1);
|
||||
vm.startPrank(owner);
|
||||
wallet.executeCall{value: 1}(address(callTarget), "0x1", 1);
|
||||
}
|
||||
|
||||
function test_executeCall_ownerCanTransferLessETHThanAttached() public {
|
||||
vm.expectEmit(true, true, true, true);
|
||||
emit CallTargetCalled(address(wallet), "0x1", 1);
|
||||
vm.startPrank(owner);
|
||||
// Send value 2 but execute call with 1
|
||||
wallet.executeCall{value: 2}(address(callTarget), "0x1", 1);
|
||||
}
|
||||
|
||||
function test_executeCall_walletReturnsCallResult() public {
|
||||
vm.startPrank(owner);
|
||||
bytes memory result = wallet.executeCall(address(callTarget), "0x1", 0);
|
||||
assertEq0(result, MAGIC_BYTES);
|
||||
}
|
||||
|
||||
function test_executeCall_walletWrapsCallRevert() public {
|
||||
(, bytes memory resultData) = address(callTarget).call(REVERTING_DATA);
|
||||
bytes memory error = LibWalletRichErrors.WalletExecuteCallFailedError(
|
||||
address(wallet),
|
||||
address(callTarget),
|
||||
REVERTING_DATA,
|
||||
0,
|
||||
resultData
|
||||
);
|
||||
|
||||
vm.expectRevert(error);
|
||||
|
||||
vm.startPrank(owner);
|
||||
wallet.executeCall(address(callTarget), REVERTING_DATA, 0);
|
||||
}
|
||||
|
||||
function test_executeCall_walletCanReceiveETH() public {
|
||||
vm.startPrank(owner);
|
||||
(bool sent, ) = address(wallet).call{value: 1}("");
|
||||
assertTrue(sent, "Failed to send ETH to wallet");
|
||||
assertEq(address(wallet).balance, 1);
|
||||
}
|
||||
|
||||
function test_executeDelegateCall_nonOwnerCannotExecute() public {
|
||||
vm.expectRevert(LibOwnableRichErrorsV06.OnlyOwnerError(account2, owner));
|
||||
vm.startPrank(account2);
|
||||
wallet.executeDelegateCall(address(callTarget), "0x1");
|
||||
}
|
||||
|
||||
function test_executeDelegateCall_ownerCanExecute() public {
|
||||
vm.expectEmit(true, true, true, true);
|
||||
emit CallTargetCalled(owner, "0x1", 0);
|
||||
vm.startPrank(owner);
|
||||
wallet.executeDelegateCall(address(callTarget), "0x1");
|
||||
}
|
||||
|
||||
function test_executeDelegateCall_ownerCanExecuteWithValue() public {
|
||||
vm.expectEmit(true, true, true, true);
|
||||
emit CallTargetCalled(owner, "0x1", 1);
|
||||
vm.startPrank(owner);
|
||||
wallet.executeDelegateCall{value: 1}(address(callTarget), "0x1");
|
||||
}
|
||||
|
||||
function test_executeDelegateCall_walletReturnsCallResult() public {
|
||||
vm.startPrank(owner);
|
||||
bytes memory result = wallet.executeDelegateCall(address(callTarget), "0x1");
|
||||
assertEq0(result, MAGIC_BYTES);
|
||||
}
|
||||
|
||||
function test_executeDelegateCall_walletWrapsCallRevert() public {
|
||||
(, bytes memory resultData) = address(callTarget).call(REVERTING_DATA);
|
||||
bytes memory error = LibWalletRichErrors.WalletExecuteDelegateCallFailedError(
|
||||
address(wallet),
|
||||
address(callTarget),
|
||||
REVERTING_DATA,
|
||||
resultData
|
||||
);
|
||||
|
||||
vm.expectRevert(error);
|
||||
|
||||
vm.startPrank(owner);
|
||||
wallet.executeDelegateCall(address(callTarget), REVERTING_DATA);
|
||||
}
|
||||
}
|
||||
40
contracts/zero-ex/tests/mocks/TestCallTarget.sol
Normal file
40
contracts/zero-ex/tests/mocks/TestCallTarget.sol
Normal file
@@ -0,0 +1,40 @@
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
/*
|
||||
|
||||
Copyright 2020 ZeroEx Intl.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
*/
|
||||
|
||||
pragma solidity ^0.6.5;
|
||||
pragma experimental ABIEncoderV2;
|
||||
|
||||
contract TestCallTarget {
|
||||
event CallTargetCalled(address sender, bytes data, uint256 value);
|
||||
|
||||
bytes4 public constant MAGIC_BYTES = 0x12345678;
|
||||
bytes public constant REVERTING_DATA = hex"1337";
|
||||
|
||||
fallback() external payable {
|
||||
if (keccak256(msg.data) == keccak256(REVERTING_DATA)) {
|
||||
revert("TestCallTarget/REVERT");
|
||||
}
|
||||
emit CallTargetCalled(msg.sender, msg.data, msg.value);
|
||||
bytes4 rval = MAGIC_BYTES;
|
||||
assembly {
|
||||
mstore(0, rval)
|
||||
return(0, 32)
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user