* Rename existing wrapper, to match contract name * base contract: make member var public * json_schemas.py: stop storing copies of schemas! * .gitignore generated erc20_token.py wrapper * json schemas: allow uppercase digits in address * existing exchange wrapper: re-order methods to match method order in Solidity contract, to reduce noise in upcoming diffs of newly generated code vs. old manually-written code. * existing exchange wrapper: rename method params To match contract method param names * existing exchange wrapper: remove redundant member * existing exchange wrapper: make signatures bytes Not strings. * abi-gen/test-cli: show context on diff failure * abi-gen-templates/Py: fix broken event interface Previous changes had removed the `token_address` parameter from all generated methods, but this instance was missed because there weren't tests/examples using events for the first contract for which wrappers were generated (ERC20Token). * abi-gen: remove unused method parameters * abi-gen: convert Py method params to snake case * abi-gen: rewrite Python tuple handling * python-generated-wrappers: include Exchange * abi-gen-templates/Py: easy linter fixes * abi-gen-templates/Py: satisfy docstring linters * abi-gen-templates/Py: normalize bytes before use * contract_wrappers.py: replace Exchange w/generated * contract_wrappers.py: rm manually written Exchange * contract_wrappers.py/doctest: rename variables * abi-gen: fix misspelling in docstring Co-Authored-By: Fabio B <me@fabioberger.com> * Py docs: error on warning, and test build in CI * abi-gen: doc Py bytes params as requiring UTF-8 * abi-gen: git mv diff.sh test-cli/ * abi-gen: put Py wrapper in module folder, not file This leaves space for user-defined additions to the same module, such as for custom types, as shown herein. * abi-gen: customizable param validation for Python * contract_wrappers.py: JSON schema Order validation * CircleCI Build Artifacts For abi-gen command-line test output, for generated Python contract wrappers as output by abi-gen, for generated Python contract wrappers as reformatted and included in the Python package area, and for the "build" output folder in each Python package, which includes the generated documentation. * CHANGELOG updates for all components * abi-gen: grammar in comments Co-Authored-By: Fabio B <me@fabioberger.com> * abi-gen: CHANGELOG spelling correction Co-Authored-By: Fabio B <me@fabioberger.com> * order_utils.py: reverse (chronological) CHANGELOG * abi-gen-templates: reset CHANGELOG patch version * CHANGELOGs: use multiple entries where appropriate * abi-gen: enable devdoc solc output in test-cli * abi-gen-templates/Py: consolidate return type * abi-gen/test-cli: non-pure fixture contract method Added a method to the "dummy" test fixture contract that isn't pure. All of the other prior method cases were pure. * abi-gen/Py: fix const methods missing return type * abi-gen/Py: fix wrong return types on some methods Specifically, wrapper methods wrapping contract methods that modify contract state and return no return value. There was no test case for this. Now there is. * contract_wrappers.py: rm generated code in `clean` * Parallelize Py monorepo scripts (test, lint, etc)
143 lines
5.5 KiB
Python
143 lines
5.5 KiB
Python
"""Tests of zero_ex.order_utils.signature_utils."""
|
|
|
|
import pytest
|
|
from web3 import Web3
|
|
|
|
from zero_ex.order_utils import is_valid_signature, sign_hash_to_bytes
|
|
|
|
|
|
def test_is_valid_signature__provider_wrong_type():
|
|
"""Test that giving a non-HTTPProvider raises a TypeError."""
|
|
with pytest.raises(TypeError):
|
|
is_valid_signature(
|
|
123,
|
|
"0x6927e990021d23b1eb7b8789f6a6feaf98fe104bb0cf8259421b79f9a34222b"
|
|
+ "0",
|
|
"0x1B61a3ed31b43c8780e905a260a35faefcc527be7516aa11c0256729b5b351b"
|
|
+ "c3340349190569279751135161d22529dc25add4f6069af05be04cacbda2ace"
|
|
+ "225403",
|
|
"0x5409ed021d9299bf6814279a6a1411a7e866a631",
|
|
)
|
|
|
|
|
|
def test_is_valid_signature__data_not_string():
|
|
"""Test that giving non-string `data` raises a TypeError."""
|
|
with pytest.raises(TypeError):
|
|
is_valid_signature(
|
|
Web3.HTTPProvider("http://127.0.0.1:8545"),
|
|
123,
|
|
"0x1B61a3ed31b43c8780e905a260a35faefcc527be7516aa11c0256729b5b351b"
|
|
+ "c3340349190569279751135161d22529dc25add4f6069af05be04cacbda2ace"
|
|
+ "225403",
|
|
"0x5409ed021d9299bf6814279a6a1411a7e866a631",
|
|
)
|
|
|
|
|
|
def test_is_valid_signature__data_not_hex_string():
|
|
"""Test that giving non-hex-string `data` raises a ValueError."""
|
|
with pytest.raises(ValueError):
|
|
is_valid_signature(
|
|
Web3.HTTPProvider("http://127.0.0.1:8545"),
|
|
"jjj",
|
|
"0x1B61a3ed31b43c8780e905a260a35faefcc527be7516aa11c0256729b5b351b"
|
|
+ "c3340349190569279751135161d22529dc25add4f6069af05be04cacbda2ace"
|
|
+ "225403",
|
|
"0x5409ed021d9299bf6814279a6a1411a7e866a631",
|
|
)
|
|
|
|
|
|
def test_is_valid_signature__signature_not_string():
|
|
"""Test that passng a non-string signature raises a TypeError."""
|
|
with pytest.raises(TypeError):
|
|
is_valid_signature(
|
|
Web3.HTTPProvider("http://127.0.0.1:8545"),
|
|
"0x6927e990021d23b1eb7b8789f6a6feaf98fe104bb0cf8259421b79f9a34222b"
|
|
+ "0",
|
|
123,
|
|
"0x5409ed021d9299bf6814279a6a1411a7e866a631",
|
|
)
|
|
|
|
|
|
def test_is_valid_signature__signature_not_hex_string():
|
|
"""Test that passing a non-hex-string signature raises a ValueError."""
|
|
with pytest.raises(ValueError):
|
|
is_valid_signature(
|
|
Web3.HTTPProvider("http://127.0.0.1:8545"),
|
|
"0x6927e990021d23b1eb7b8789f6a6feaf98fe104bb0cf8259421b79f9a34222b"
|
|
+ "0",
|
|
"jjj",
|
|
"0x5409ed021d9299bf6814279a6a1411a7e866a631",
|
|
)
|
|
|
|
|
|
def test_is_valid_signature__signer_address_not_string():
|
|
"""Test that giving a non-address `signer_address` raises a ValueError."""
|
|
with pytest.raises(TypeError):
|
|
is_valid_signature(
|
|
Web3.HTTPProvider("http://127.0.0.1:8545"),
|
|
"0x6927e990021d23b1eb7b8789f6a6feaf98fe104bb0cf8259421b79f9a34222b"
|
|
+ "0",
|
|
"0x1B61a3ed31b43c8780e905a260a35faefcc527be7516aa11c0256729b5b351b"
|
|
+ "c3340349190569279751135161d22529dc25add4f6069af05be04cacbda2ace"
|
|
+ "225403",
|
|
123,
|
|
)
|
|
|
|
|
|
def test_is_valid_signature__signer_address_not_hex_string():
|
|
"""Test that giving a non-hex-str `signer_address` raises a ValueError."""
|
|
with pytest.raises(ValueError):
|
|
is_valid_signature(
|
|
Web3.HTTPProvider("http://127.0.0.1:8545"),
|
|
"0x6927e990021d23b1eb7b8789f6a6feaf98fe104bb0cf8259421b79f9a34222b"
|
|
+ "0",
|
|
"0x1B61a3ed31b43c8780e905a260a35faefcc527be7516aa11c0256729b5b351b"
|
|
+ "c3340349190569279751135161d22529dc25add4f6069af05be04cacbda2ace"
|
|
+ "225403",
|
|
"jjj",
|
|
)
|
|
|
|
|
|
def test_is_valid_signature__signer_address_not_valid_address():
|
|
"""Test that giving a non-address for `signer_address` raises an error."""
|
|
with pytest.raises(ValueError):
|
|
is_valid_signature(
|
|
Web3.HTTPProvider("http://127.0.0.1:8545"),
|
|
"0x6927e990021d23b1eb7b8789f6a6feaf98fe104bb0cf8259421b79f9a34222b"
|
|
+ "0",
|
|
"0x1B61a3ed31b43c8780e905a260a35faefcc527be7516aa11c0256729b5b351b"
|
|
+ "c3340349190569279751135161d22529dc25add4f6069af05be04cacbda2ace"
|
|
+ "225403",
|
|
"0xff",
|
|
)
|
|
|
|
|
|
def test_is_valid_signature__unsupported_sig_types():
|
|
"""Test that passing in a sig w/invalid type raises error.
|
|
|
|
To induce this error, the last byte of the signature is tweaked from 03 to
|
|
ff."""
|
|
(is_valid, reason) = is_valid_signature(
|
|
Web3.HTTPProvider("http://127.0.0.1:8545"),
|
|
"0x6927e990021d23b1eb7b8789f6a6feaf98fe104bb0cf8259421b79f9a34222b0",
|
|
"0x1B61a3ed31b43c8780e905a260a35faefcc527be7516aa11c0256729b5b351bc334"
|
|
+ "0349190569279751135161d22529dc25add4f6069af05be04cacbda2ace2254ff",
|
|
"0x5409ed021d9299bf6814279a6a1411a7e866a631",
|
|
)
|
|
assert is_valid is False
|
|
assert reason == "SIGNATURE_UNSUPPORTED"
|
|
|
|
|
|
def test_sign_hash_to_bytes__golden_path():
|
|
"""Test the happy path through sign_hash_to_bytes()."""
|
|
provider = Web3.HTTPProvider("http://127.0.0.1:8545")
|
|
signature = sign_hash_to_bytes(
|
|
provider,
|
|
Web3(provider).personal.listAccounts[0], # pylint: disable=no-member
|
|
"0x34decbedc118904df65f379a175bb39ca18209d6ce41d5ed549d54e6e0a95004",
|
|
)
|
|
assert (
|
|
signature
|
|
== b"1b117902c86dfb95fe0d1badd983ee166ad259b27acb220174cbb4460d872871137feabdfe76e05924b484789f79af4ee7fa29ec006cedce1bbf369320d034e10b03" # noqa: E501 (line too long)
|
|
)
|