Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: tests #39

Draft
wants to merge 27 commits into
base: main
Choose a base branch
from
Draft

feat: tests #39

wants to merge 27 commits into from

Conversation

fadeev
Copy link
Member

@fadeev fadeev commented Dec 26, 2024

No description provided.

Copy link

coderabbitai bot commented Dec 26, 2024

Important

Review skipped

Draft detected.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@fadeev fadeev changed the title tests feat: tests Dec 26, 2024
@fadeev
Copy link
Member Author

fadeev commented Dec 26, 2024

forge test
Ran 1 test for test/UniversalNFTCoreTest.sol:UniversalNFTIntegrationTest
[FAIL: vm.getCode: no matching artifact found] setUp() (gas: 0)
Suite result: FAILED. 0 passed; 1 failed; 0 skipped; finished in 5.51ms (0.00ns CPU time)

Ran 1 test suite in 129.45ms (5.51ms CPU time): 0 tests passed, 1 failed, 0 skipped (1 total tests)

Failing tests:
Encountered 1 failing test in test/UniversalNFTCoreTest.sol:UniversalNFTIntegrationTest
[FAIL: vm.getCode: no matching artifact found] setUp() (gas: 0)

Comment on lines +105 to +128
function onCall(
MessageContext calldata context,
bytes calldata message
) external payable onlyGateway returns (bytes4) {
if (context.sender != universal) revert Unauthorized();

(
address receiver,
uint256 tokenId,
string memory uri,
uint256 gasAmount,
address sender
) = abi.decode(message, (address, uint256, string, uint256, address));

_safeMint(receiver, tokenId);
_setTokenURI(tokenId, uri);
if (gasAmount > 0) {
if (sender == address(0)) revert InvalidAddress();
(bool success, ) = payable(sender).call{value: gasAmount}("");
if (!success) revert GasTokenTransferFailed();
}
emit TokenTransferReceived(receiver, tokenId, uri);
return "";
}

Check warning

Code scanning / Slither

Low-level calls Warning

Comment on lines +66 to +132
function transferCrossChain(
uint256 tokenId,
address receiver,
address destination
) public payable {
if (msg.value == 0) revert ZeroMsgValue();
if (receiver == address(0)) revert InvalidAddress();

string memory uri = tokenURI(tokenId);
_burn(tokenId);

emit TokenTransfer(receiver, destination, tokenId, uri);

(address gasZRC20, uint256 gasFee) = IZRC20(destination)
.withdrawGasFeeWithGasLimit(gasLimitAmount);
if (destination != gasZRC20) revert InvalidAddress();

address WZETA = gateway.zetaToken();
IWETH9(WZETA).deposit{value: msg.value}();
if (!IWETH9(WZETA).approve(uniswapRouter, msg.value)) {
revert ApproveFailed();
}

uint256 out = SwapHelperLib.swapTokensForExactTokens(
uniswapRouter,
WZETA,
gasFee,
gasZRC20,
msg.value
);

uint256 remaining = msg.value - out;
if (remaining > 0) {
IWETH9(WZETA).withdraw(remaining);
(bool success, ) = msg.sender.call{value: remaining}("");
if (!success) revert TransferFailed();
}

bytes memory message = abi.encode(
receiver,
tokenId,
uri,
0,
msg.sender
);
CallOptions memory callOptions = CallOptions(gasLimitAmount, false);

RevertOptions memory revertOptions = RevertOptions(
address(this),
true,
address(0),
abi.encode(tokenId, uri, msg.sender),
gasLimitAmount
);

if (!IZRC20(gasZRC20).approve(address(gateway), gasFee)) {
revert ApproveFailed();
}

gateway.call(
abi.encodePacked(connected[destination]),
destination,
message,
callOptions,
revertOptions
);
}

Check warning

Code scanning / Slither

Low-level calls Warning

Comment on lines +41 to +52
function __UniversalTokenCore_init(
address gatewayAddress,
address universalAddress,
uint256 gas
) internal {
if (gatewayAddress == address(0)) revert InvalidAddress();
if (universalAddress == address(0)) revert InvalidAddress();
if (gas == 0) revert InvalidGasLimit();
gateway = GatewayEVM(gatewayAddress);
universal = universalAddress;
gasLimitAmount = gas;
}

Check warning

Code scanning / Slither

Conformance to Solidity naming conventions Warning

Comment on lines +93 to +112
function onCall(
MessageContext calldata context,
bytes calldata message
) external payable onlyGateway returns (bytes4) {
if (context.sender != universal) revert Unauthorized();
(
address receiver,
uint256 amount,
uint256 gasAmount,
address sender
) = abi.decode(message, (address, uint256, uint256, address));
_mint(receiver, amount);
if (gasAmount > 0) {
if (sender == address(0)) revert InvalidAddress();
(bool success, ) = payable(sender).call{value: gasAmount}("");
if (!success) revert GasTokenTransferFailed();
}
emit TokenTransferReceived(receiver, amount);
return "";
}

Check notice

Code scanning / Slither

Reentrancy vulnerabilities Low

Comment on lines +93 to +112
function onCall(
MessageContext calldata context,
bytes calldata message
) external payable onlyGateway returns (bytes4) {
if (context.sender != universal) revert Unauthorized();
(
address receiver,
uint256 amount,
uint256 gasAmount,
address sender
) = abi.decode(message, (address, uint256, uint256, address));
_mint(receiver, amount);
if (gasAmount > 0) {
if (sender == address(0)) revert InvalidAddress();
(bool success, ) = payable(sender).call{value: gasAmount}("");
if (!success) revert GasTokenTransferFailed();
}
emit TokenTransferReceived(receiver, amount);
return "";
}

Check warning

Code scanning / Slither

Low-level calls Warning

Comment on lines +40 to +51
function __UniversalTokenCore_init(
address gatewayAddress,
uint256 gas,
address uniswapRouterAddress
) internal {
if (gatewayAddress == address(0) || uniswapRouterAddress == address(0))
revert InvalidAddress();
if (gas == 0) revert InvalidGasLimit();
gateway = GatewayZEVM(payable(gatewayAddress));
uniswapRouter = uniswapRouterAddress;
gasLimitAmount = gas;
}

Check warning

Code scanning / Slither

Conformance to Solidity naming conventions Warning

Comment on lines +66 to +127
function transferCrossChain(
address destination,
address receiver,
uint256 amount
) public payable {
if (msg.value == 0) revert ZeroMsgValue();
if (receiver == address(0)) revert InvalidAddress();

_burn(msg.sender, amount);

emit TokenTransfer(destination, receiver, amount);

(address gasZRC20, uint256 gasFee) = IZRC20(destination)
.withdrawGasFeeWithGasLimit(gasLimitAmount);
if (destination != gasZRC20) revert InvalidAddress();

address WZETA = gateway.zetaToken();

IWETH9(WZETA).deposit{value: msg.value}();
if (!IWETH9(WZETA).approve(uniswapRouter, msg.value)) {
revert ApproveFailed();
}

uint256 out = SwapHelperLib.swapTokensForExactTokens(
uniswapRouter,
WZETA,
gasFee,
gasZRC20,
msg.value
);

uint256 remaining = msg.value - out;

if (remaining > 0) {
IWETH9(WZETA).withdraw(remaining);
(bool success, ) = msg.sender.call{value: remaining}("");
if (!success) revert TransferFailed();
}

bytes memory message = abi.encode(receiver, amount, 0, msg.sender);

CallOptions memory callOptions = CallOptions(gasLimitAmount, false);

RevertOptions memory revertOptions = RevertOptions(
address(this),
true,
address(0),
abi.encode(amount, msg.sender),
gasLimitAmount
);

if (!IZRC20(gasZRC20).approve(address(gateway), gasFee)) {
revert ApproveFailed();
}
gateway.call(
abi.encodePacked(connected[destination]),
destination,
message,
callOptions,
revertOptions
);
}

Check warning

Code scanning / Slither

Low-level calls Warning

Comment on lines +129 to +174
function onCall(
MessageContext calldata context,
address zrc20,
uint256 amount,
bytes calldata message
) external override onlyGateway {
if (context.sender != connected[zrc20]) revert Unauthorized();
(
address destination,
address receiver,
uint256 tokenAmount,
address sender
) = abi.decode(message, (address, address, uint256, address));
if (destination == address(0)) {
_mint(receiver, tokenAmount);
} else {
(address gasZRC20, uint256 gasFee) = IZRC20(destination)
.withdrawGasFeeWithGasLimit(gasLimitAmount);
if (destination != gasZRC20) revert InvalidAddress();
uint256 out = SwapHelperLib.swapExactTokensForTokens(
uniswapRouter,
zrc20,
amount,
destination,
0
);
if (!IZRC20(destination).approve(address(gateway), out)) {
revert ApproveFailed();
}
gateway.withdrawAndCall(
abi.encodePacked(connected[destination]),
out - gasFee,
destination,
abi.encode(receiver, tokenAmount, out - gasFee, sender),
CallOptions(gasLimitAmount, false),
RevertOptions(
address(this),
true,
address(0),
abi.encode(tokenAmount, sender),
0
)
);
}
emit TokenTransferToDestination(destination, receiver, amount);
}
@fadeev fadeev changed the base branch from main to refactor-abstract-contract December 26, 2024 16:04
@fadeev
Copy link
Member Author

fadeev commented Jan 6, 2025

Throws an error when adding liquidity:

    ├─ [24267] WETH9::approve(ERC1967Proxy: [0xc7183455a4C133Ae270771860664b6B7ec320bB1], 10000000000000000000 [1e19])
    │   ├─ emit Approval(owner: UniversalNFTIntegrationTest: [0x7FA9385bE102ac3EAc297483Dd6233D62b3e1496], spender: ERC1967Proxy: [0xc7183455a4C133Ae270771860664b6B7ec320bB1], value: 10000000000000000000 [1e19])
    │   └─ ← [Return] true
    ├─ [24267] WETH9::approve(0xF62849F9A0B5Bf2913b396098F7c7019b51A820a, 10000000000000000000 [1e19])
    │   ├─ emit Approval(owner: UniversalNFTIntegrationTest: [0x7FA9385bE102ac3EAc297483Dd6233D62b3e1496], spender: 0xF62849F9A0B5Bf2913b396098F7c7019b51A820a, value: 10000000000000000000 [1e19])
    │   └─ ← [Return] true
    ├─ [24363] ZRC20::approve(0xF62849F9A0B5Bf2913b396098F7c7019b51A820a, 10000000000000000000 [1e19])
    │   ├─ emit Approval(owner: UniversalNFTIntegrationTest: [0x7FA9385bE102ac3EAc297483Dd6233D62b3e1496], spender: 0xF62849F9A0B5Bf2913b396098F7c7019b51A820a, value: 10000000000000000000 [1e19])
    │   └─ ← [Return] true
    ├─ [2245991] 0x2e234DAe75C793f67A35089C9d99245E1C58470b::createPair(WETH9: [0x5615dEB798BB3E4dFa0139dFa1b3D433Cc23b72f], ZRC20: [0x5F0b1a82749cb4E2278EC87F8BF6B618dC71a8bf])
    │   ├─ [2072718] → new <unknown>@0x828288bD33Ac27ec2E3e07595Dda80A5E45B8263
    │   │   └─ ← [Return] 10019 bytes of code
    │   ├─ [44713] 0x828288bD33Ac27ec2E3e07595Dda80A5E45B8263::initialize(WETH9: [0x5615dEB798BB3E4dFa0139dFa1b3D433Cc23b72f], ZRC20: [0x5F0b1a82749cb4E2278EC87F8BF6B618dC71a8bf])
    │   │   └─ ← [Stop] 
    │   ├─ emit PairCreated(token0: WETH9: [0x5615dEB798BB3E4dFa0139dFa1b3D433Cc23b72f], token1: ZRC20: [0x5F0b1a82749cb4E2278EC87F8BF6B618dC71a8bf], pair: 0x828288bD33Ac27ec2E3e07595Dda80A5E45B8263, : 1)
    │   └─ ← [Return] 0x828288bD33Ac27ec2E3e07595Dda80A5E45B8263
    ├─ [264] 0xF62849F9A0B5Bf2913b396098F7c7019b51A820a::factory() [staticcall]
    │   └─ ← [Return] 0x2e234DAe75C793f67A35089C9d99245E1C58470b
    ├─ [287] 0xF62849F9A0B5Bf2913b396098F7c7019b51A820a::WETH() [staticcall]
    │   └─ ← [Return] WETH9: [0x5615dEB798BB3E4dFa0139dFa1b3D433Cc23b72f]
    ├─ [5185] 0xF62849F9A0B5Bf2913b396098F7c7019b51A820a::addLiquidity(WETH9: [0x5615dEB798BB3E4dFa0139dFa1b3D433Cc23b72f], ZRC20: [0x5F0b1a82749cb4E2278EC87F8BF6B618dC71a8bf], 10000000000000000000 [1e19], 10000000000000000000 [1e19], 1000000000000000000 [1e18], 1000000000000000000 [1e18], UniversalNFTIntegrationTest: [0x7FA9385bE102ac3EAc297483Dd6233D62b3e1496], 301)
    │   ├─ [564] 0x2e234DAe75C793f67A35089C9d99245E1C58470b::getPair(WETH9: [0x5615dEB798BB3E4dFa0139dFa1b3D433Cc23b72f], ZRC20: [0x5F0b1a82749cb4E2278EC87F8BF6B618dC71a8bf]) [staticcall]
    │   │   └─ ← [Return] 0x828288bD33Ac27ec2E3e07595Dda80A5E45B8263
    │   └─ ← [Revert] EvmError: Revert
    └─ ← [Revert] EvmError: Revert

Suite result: FAILED. 0 passed; 1 failed; 0 skipped; finished in 1.17s (0.00ns CPU time)

Base automatically changed from refactor-abstract-contract to main January 7, 2025 08:02
Comment on lines +104 to +113
router.addLiquidity( // throws error
address(zetaToken),
address(zrc20),
10 ether,
10 ether,
1 ether,
1 ether,
owner,
block.timestamp + 300
);
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@skosito I'm getting errors when trying to add liquidity. Is there anything wrong I'm doing here?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant