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

Mock Test Contract #14

Merged
merged 3 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "ethereum/lib/forge-std"]
path = ethereum/lib/forge-std
url = https://github.com/foundry-rs/forge-std
7 changes: 7 additions & 0 deletions ethereum/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ $ anvil
$ forge script script/Counter.s.sol:CounterScript --rpc-url <your_rpc_url> --private-key <your_private_key>
```

### Deploy MockStorage Contract

```shell
$ forge script script/DeployMockStorage.s.sol:DeployMockStorage --broadcast --rpc-url ${ETH_RPC_URL}
```


### Cast

```shell
Expand Down
13 changes: 9 additions & 4 deletions ethereum/foundry.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@

# Full reference https://github.com/foundry-rs/foundry/tree/master/crates/config

[profile.default]
script = "script"
solc = "0.8.26"
src = "src"
out = "out"
libs = ["lib"]
test = "test"
libs = ["dependencies"]
fs_permissions = [{ access = "read-write", path = "./logs" }]

[dependencies] # <= Dependencies will be added under this config
forge-std = { version = "1.8.2", url = "https://github.com/foundry-rs/foundry.git" }
[dependencies]
forge-std = { version = "1.8.2", url = "https://github.com/foundry-rs/foundry.git" }
30 changes: 30 additions & 0 deletions ethereum/script/DeployMockStorage.s.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import {Script} from "@forge-std/src/Script.sol";
import {MockStorage} from "../src/Mock/MockStorage.sol";

contract DeployMockStorage is Script{

uint256 public val1 = 1000;
uint256 public val2 = 2000;
address public addr = 0x9D7f74d0C41E726EC95884E0e97Fa6129e3b5E99;
address public addr2 = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4;

function run() external returns (MockStorage) {

uint256 deployerPrivateKey = vm.envUint("ACCOUNT_PRIVATE_KEY");

vm.startBroadcast(deployerPrivateKey);
MockStorage mockStorage = new MockStorage();
mockStorage.setValue(val1);
mockStorage.setMapValues(val1, addr);
mockStorage.setMapValues(val2, addr2);
mockStorage.setArrValues(addr);
mockStorage.setArrValues(addr2);
vm.stopBroadcast();

return mockStorage;
}

}
32 changes: 32 additions & 0 deletions ethereum/src/Mock/MockStorage.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

contract MockStorage {
uint256 public value;
mapping(uint256 => address) public mapValues;
address[] public arrValues;

function setValue(uint256 _value) public {
value = _value;
}

function getValue() public view returns (uint256) {
return value;
}

function setMapValues(uint256 _value, address _add) public {
mapValues[_value] = _add;
}

function getMapValues(uint256 _value) public view returns (address) {
return mapValues[_value];
}

function setArrValues(address _value) public {
arrValues.push(_value);
}

function getArrValues(uint256 i) public view returns (address) {
return arrValues[i];
}
}
27 changes: 27 additions & 0 deletions ethereum/test/MockStorageTest.t.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import {Script} from "@forge-std/src/Script.sol";
import {MockStorage} from "../src/Mock/MockStorage.sol";
import {DeployMockStorage} from "../script/DeployMockStorage.s.sol";
import {Test, console} from "@forge-std/src/Test.sol";

contract MockStorageTest is Test{
MockStorage mockStorage;

function setUp() external {
DeployMockStorage deployer = new DeployMockStorage();
mockStorage = deployer.run();
}


function testMockStorage() public view {

assert( mockStorage.getValue() == 1000);
assert( mockStorage.getMapValues(1000) == 0x9D7f74d0C41E726EC95884E0e97Fa6129e3b5E99);
assert( mockStorage.getMapValues(2000) == 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4);
assert( mockStorage.getArrValues(0) == 0x9D7f74d0C41E726EC95884E0e97Fa6129e3b5E99);
assert( mockStorage.getArrValues(1) == 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4);

}
}
Loading