* Refine Order for Web3 compat. & add conversions Changed some of the fields in the Order class so that it can be passed to our contracts via Web3. Added conversion utilities so that an Order can be easily converted to and from a JSON-compatible dict (specifically by encoding/decoding the `bytes` fields), to facilitate validation against the JSON schema. Also modified JSON order schema to accept integers in addition to stringified integers. * Fixes for json_schemas Has-types indicator file, py.typed, was not being included in package. Schemas were not being properly gathered into package installation. * Add test/demo of Exchange.getOrderInfo() * web3 bug workaround * Fix problem packaging contract artifacts * Move contract addresses to their own package * Move contract artifacts to their own package * Add scripts to install, test & lint all components * prettierignore files in local python dev env * Correct missing coverage analysis for sra_client * CI cache lint: don't save, re-use from test-python * tag hacks as hacks * correct merge mistake * remove local strip_0x() in favor of eth_utils * remove json schemas from old order_utils location * correct merge mistake * doctest json schemas via command-line, not code
43 lines
1.3 KiB
Python
43 lines
1.3 KiB
Python
"""Tests of zero_ex.json_schemas"""
|
|
|
|
|
|
from zero_ex.order_utils import make_empty_order, order_to_jsdict
|
|
from zero_ex.json_schemas import _LOCAL_RESOLVER, assert_valid
|
|
|
|
|
|
NULL_ADDRESS = "0x0000000000000000000000000000000000000000"
|
|
|
|
EMPTY_ORDER = {
|
|
"makerAddress": NULL_ADDRESS,
|
|
"takerAddress": NULL_ADDRESS,
|
|
"senderAddress": NULL_ADDRESS,
|
|
"feeRecipientAddress": NULL_ADDRESS,
|
|
"makerAssetData": NULL_ADDRESS,
|
|
"takerAssetData": NULL_ADDRESS,
|
|
"salt": "0",
|
|
"makerFee": "0",
|
|
"takerFee": "0",
|
|
"makerAssetAmount": "0",
|
|
"takerAssetAmount": "0",
|
|
"expirationTimeSeconds": "0",
|
|
"exchangeAddress": NULL_ADDRESS,
|
|
}
|
|
|
|
|
|
def test_assert_valid_caches_resources():
|
|
"""Test that the JSON ref resolver in `assert_valid()` caches resources
|
|
|
|
In order to test the cache we much access the private class of
|
|
`json_schemas` and reset the LRU cache on `_LocalRefResolver`.
|
|
For this to happen, we need to disable errror `W0212`
|
|
on _LOCAL_RESOLVER
|
|
"""
|
|
_LOCAL_RESOLVER._remote_cache.cache_clear() # pylint: disable=W0212
|
|
|
|
assert_valid(order_to_jsdict(make_empty_order()), "/orderSchema")
|
|
cache_info = (
|
|
_LOCAL_RESOLVER._remote_cache.cache_info() # pylint: disable=W0212
|
|
)
|
|
assert cache_info.currsize == 4
|
|
assert cache_info.hits > 0
|