You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

90 lines
2.3 KiB
Solidity

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "forge-std/Test.sol";
import {SendIt} from "../src/SendIt.sol";
import {NFT721} from "../src/sampleERC721.sol";
import {NFT1155} from "../src/sampleERC1155.sol";
contract SendItTest is Test {
using stdStorage for StdStorage;
SendIt public sendit;
NFT721 public nft721;
NFT1155 public nft1155;
function setUp() public {
sendit = new SendIt();
nft721 = new NFT721();
nft1155 = new NFT1155();
}
// Tokens
function test721BulkTransferSuccess() public {
uint256 amt = 20;
uint256 fee = sendit.usageFee();
uint256 val = fee * amt;
uint256[] memory tokenIndexes = new uint256[](amt);
address[] memory recipients = new address[](amt);
for (uint256 i; i < amt; i++) {
tokenIndexes[i] = i + 1;
recipients[i] = address(1);
}
vm.deal(address(5), 1 ether);
vm.startPrank(address(5));
nft721.mint(amt);
nft721.setApprovalForAll(address(sendit), true);
sendit.contractBulkTransfer{value: val}(
address(nft721),
tokenIndexes,
recipients,
false
);
vm.stopPrank();
}
function testFail721NonTokenOwnerCanSend() public {
uint256 amt = 1;
uint256 fee = sendit.usageFee();
uint256 val = fee * amt;
uint256[] memory tokenIndexes = new uint256[](amt);
address[] memory recipients = new address[](amt);
tokenIndexes[0] = 23;
recipients[0] = address(1);
vm.deal(address(5), 1 ether);
vm.startPrank(address(5));
nft721.mint(amt);
// vm.stopPrank();
nft721.setApprovalForAll(address(sendit), true);
sendit.contractBulkTransfer{value: val}(
address(nft721),
tokenIndexes,
recipients,
false
);
}
function test1155BulkTransferSuccess() public {
//
}
// meta
function testUpdateVault() public {
vm.prank(address(1));
sendit.updateVault(address(3));
assertEq(sendit.addressVault(address(1)), address(3));
}
// admin
// TODO
// only token owner can bulk transfer
// can only proceed after approval set
// only owner can updateFee
// only owner can withdraw
}