Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/vyperlang/vyper into chor…
Browse files Browse the repository at this point in the history
…e/deployable_source_map
  • Loading branch information
tserg committed May 8, 2024
2 parents 8f7a4fc + 93147be commit a84aacc
Show file tree
Hide file tree
Showing 49 changed files with 985 additions and 268 deletions.
9 changes: 5 additions & 4 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,11 @@ def pytest_addoption(parser):
@pytest.fixture(scope="module")
def output_formats():
output_formats = compiler.OUTPUT_FORMATS.copy()
del output_formats["bb"]
del output_formats["bb_runtime"]
del output_formats["cfg"]
del output_formats["cfg_runtime"]

to_drop = ("bb", "bb_runtime", "cfg", "cfg_runtime", "archive", "archive_b64", "solc_json")
for s in to_drop:
del output_formats[s]

return output_formats


Expand Down
5 changes: 4 additions & 1 deletion tests/evm_backends/pyevm_env.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import copy
import logging
from contextlib import contextmanager
from typing import Optional
Expand Down Expand Up @@ -65,7 +66,7 @@ def _state(self) -> StateAPI:
def _vm(self) -> VirtualMachineAPI:
return self._chain.get_vm()

@cached_property
@property
def _context(self) -> ExecutionContext:
context = self._state.execution_context
assert isinstance(context, ExecutionContext) # help mypy
Expand All @@ -74,10 +75,12 @@ def _context(self) -> ExecutionContext:
@contextmanager
def anchor(self):
snapshot_id = self._state.snapshot()
ctx = copy.copy(self._state.execution_context)
try:
yield
finally:
self._state.revert(snapshot_id)
self._state.execution_context = ctx

def get_balance(self, address: str) -> int:
return self._state.get_balance(_addr(address))
Expand Down
3 changes: 3 additions & 0 deletions tests/evm_backends/revm_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ def __init__(
@contextmanager
def anchor(self):
snapshot_id = self._evm.snapshot()
block = BlockEnv(number=self._evm.env.block.number, timestamp=self._evm.env.block.timestamp)
try:
yield
finally:
Expand All @@ -40,6 +41,8 @@ def anchor(self):
# snapshot_id is reverted by the transaction already.
# revm updates are needed to make the journal more robust.
pass
self._evm.set_block_env(block)
# self._evm.set_tx_env(tx)

def get_balance(self, address: str) -> int:
return self._evm.get_balance(address)
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/examples/auctions/test_blind_auction.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
TEST_INCREMENT = 1


@pytest.fixture
@pytest.fixture(scope="module")
def auction_contract(env, get_contract):
with open("examples/auctions/blind_auction.vy") as f:
contract_code = f.read()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
EXPIRY = 16


@pytest.fixture
@pytest.fixture(scope="module")
def auction_start(env):
return env.timestamp + 1


@pytest.fixture
@pytest.fixture(scope="module")
def auction_contract(env, get_contract, auction_start):
with open("examples/auctions/simple_open_auction.vy") as f:
contract_code = f.read()
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/examples/company/test_company.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest


@pytest.fixture
@pytest.fixture(scope="module")
def c(env, get_contract):
with open("examples/stock/company.vy") as f:
contract_code = f.read()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest


@pytest.fixture
@pytest.fixture(scope="module")
def c(env, get_contract):
with open("examples/crowdfund.vy") as f:
contract_code = f.read()
Expand Down
6 changes: 3 additions & 3 deletions tests/functional/examples/factory/test_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import vyper


@pytest.fixture
@pytest.fixture(scope="module")
def create_token(get_contract):
with open("examples/tokens/ERC20.vy") as f:
code = f.read()
Expand All @@ -15,7 +15,7 @@ def create_token():
return create_token


@pytest.fixture
@pytest.fixture(scope="module")
def create_exchange(env, get_contract):
with open("examples/factory/Exchange.vy") as f:
code = f.read()
Expand All @@ -29,7 +29,7 @@ def create_exchange(token, factory):
return create_exchange


@pytest.fixture
@pytest.fixture(scope="module")
def factory(get_contract):
with open("examples/factory/Exchange.vy") as f:
code = f.read()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,14 @@

from tests.utils import ZERO_ADDRESS


@pytest.fixture
def market_maker(get_contract):
with open("examples/market_maker/on_chain_market_maker.vy") as f:
contract_code = f.read()
return get_contract(contract_code)


TOKEN_NAME = "Vypercoin"
TOKEN_SYMBOL = "FANG"
TOKEN_DECIMALS = 18
TOKEN_INITIAL_SUPPLY = 21 * 10**6
TOKEN_TOTAL_SUPPLY = TOKEN_INITIAL_SUPPLY * (10**TOKEN_DECIMALS)


@pytest.fixture
@pytest.fixture(scope="module")
def erc20(get_contract):
with open("examples/tokens/ERC20.vy") as f:
contract_code = f.read()
Expand All @@ -27,6 +19,13 @@ def erc20(get_contract):
)


@pytest.fixture(scope="module")
def market_maker(get_contract, erc20):
with open("examples/market_maker/on_chain_market_maker.vy") as f:
contract_code = f.read()
return get_contract(contract_code)


def test_initial_state(market_maker):
assert market_maker.totalEthQty() == 0
assert market_maker.totalTokenQty() == 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
from eth_utils import to_wei


@pytest.fixture
@pytest.fixture(scope="module")
def contract_code(get_contract):
with open("examples/safe_remote_purchase/safe_remote_purchase.vy") as f:
contract_code = f.read()
return contract_code


@pytest.fixture
@pytest.fixture(scope="module")
def get_balance(env):
def get_balance():
a0, a1 = env.accounts[:2]
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/examples/storage/test_advanced_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
INITIAL_VALUE = 4


@pytest.fixture
@pytest.fixture(scope="module")
def adv_storage_contract(get_contract):
with open("examples/storage/advanced_storage.vy") as f:
contract_code = f.read()
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/examples/storage/test_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
INITIAL_VALUE = 4


@pytest.fixture
@pytest.fixture(scope="module")
def storage_contract(get_contract):
with open("examples/storage/storage.vy") as f:
contract_code = f.read()
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/examples/tokens/test_erc1155.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
mintConflictBatch = [1, 2, 3]


@pytest.fixture
@pytest.fixture(scope="module")
def erc1155(get_contract, env, tx_failed):
owner, a1, a2, a3, a4, a5 = env.accounts[0:6]
with open("examples/tokens/ERC1155ownable.vy") as f:
Expand Down
4 changes: 2 additions & 2 deletions tests/functional/examples/tokens/test_erc20.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
TOKEN_INITIAL_SUPPLY = 0


@pytest.fixture
@pytest.fixture(scope="module")
def c(get_contract):
with open("examples/tokens/ERC20.vy") as f:
code = f.read()
return get_contract(code, *[TOKEN_NAME, TOKEN_SYMBOL, TOKEN_DECIMALS, TOKEN_INITIAL_SUPPLY])


@pytest.fixture
@pytest.fixture(scope="module")
def c_bad(get_contract):
# Bad contract is used for overflow checks on totalSupply corrupted
with open("examples/tokens/ERC20.vy") as f:
Expand Down
4 changes: 2 additions & 2 deletions tests/functional/examples/tokens/test_erc4626.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
TOKEN_INITIAL_SUPPLY = 0


@pytest.fixture
@pytest.fixture(scope="module")
def token(get_contract):
with open("examples/tokens/ERC20.vy") as f:
return get_contract(
f.read(), TOKEN_NAME, TOKEN_SYMBOL, TOKEN_DECIMALS, TOKEN_INITIAL_SUPPLY
)


@pytest.fixture
@pytest.fixture(scope="module")
def vault(get_contract, token):
with open("examples/tokens/ERC4626.vy") as f:
return get_contract(f.read(), token.address)
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/examples/tokens/test_erc721.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
ERC721_SIG = "0x80ac58cd"


@pytest.fixture
@pytest.fixture(scope="module")
def c(get_contract, env):
with open("examples/tokens/ERC721.vy") as f:
code = f.read()
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/examples/voting/test_ballot.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
PROPOSAL_2_NAME = b"Trump" + b"\x00" * 27


@pytest.fixture
@pytest.fixture(scope="module")
def c(get_contract):
with open("examples/voting/ballot.vy") as f:
contract_code = f.read()
Expand Down
23 changes: 10 additions & 13 deletions tests/functional/examples/wallet/test_wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
from eth_utils import is_same_address, to_bytes, to_checksum_address, to_int

from tests.utils import ZERO_ADDRESS
from vyper.utils import keccak256


@pytest.fixture
@pytest.fixture(scope="module")
def c(env, get_contract):
a0, a1, a2, a3, a4, a5, a6 = env.accounts[:7]
with open("examples/wallet/wallet.vy") as f:
Expand All @@ -19,20 +20,16 @@ def c(env, get_contract):
return c


@pytest.fixture
def sign(keccak):
def _sign(seq, to, value, data, key):
keys = KeyAPI()
comb = seq.to_bytes(32, "big") + b"\x00" * 12 + to + value.to_bytes(32, "big") + data
h1 = keccak(comb)
h2 = keccak(b"\x19Ethereum Signed Message:\n32" + h1)
sig = keys.ecdsa_sign(h2, key)
return [28 if sig.v == 1 else 27, sig.r, sig.s]
def sign(seq, to, value, data, key):
keys = KeyAPI()
comb = seq.to_bytes(32, "big") + b"\x00" * 12 + to + value.to_bytes(32, "big") + data
h1 = keccak256(comb)
h2 = keccak256(b"\x19Ethereum Signed Message:\n32" + h1)
sig = keys.ecdsa_sign(h2, key)
return [28 if sig.v == 1 else 27, sig.r, sig.s]

return _sign


def test_approve(env, c, tx_failed, sign):
def test_approve(env, c, tx_failed):
a0, a1, a2, a3, a4, a5, a6 = env.accounts[:7]
k0, k1, k2, k3, k4, k5, k6, k7 = env._keys[:8]
env.set_balance(a1, 10**18)
Expand Down
Loading

0 comments on commit a84aacc

Please sign in to comment.