aboutsummaryrefslogtreecommitdiffstats
path: root/python-packages/json_schemas/test
diff options
context:
space:
mode:
authorHsuan Lee <hsuan@cobinhood.com>2019-01-19 18:42:04 +0800
committerHsuan Lee <hsuan@cobinhood.com>2019-01-19 18:42:04 +0800
commit7ae38906926dc09bc10670c361af0d2bf0050426 (patch)
tree5fb10ae366b987db09e4ddb4bc3ba0f75404ad08 /python-packages/json_schemas/test
parentb5fd3c72a08aaa6957917d74c333387a16edf66b (diff)
downloaddexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.tar
dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.tar.gz
dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.tar.bz2
dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.tar.lz
dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.tar.xz
dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.tar.zst
dexon-sol-tools-7ae38906926dc09bc10670c361af0d2bf0050426.zip
Update dependency packages
Diffstat (limited to 'python-packages/json_schemas/test')
-rw-r--r--python-packages/json_schemas/test/__init__.py1
-rw-r--r--python-packages/json_schemas/test/test_json_schemas.py42
2 files changed, 0 insertions, 43 deletions
diff --git a/python-packages/json_schemas/test/__init__.py b/python-packages/json_schemas/test/__init__.py
deleted file mode 100644
index ce724e180..000000000
--- a/python-packages/json_schemas/test/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-"""Tests of zero_ex.json_schemas."""
diff --git a/python-packages/json_schemas/test/test_json_schemas.py b/python-packages/json_schemas/test/test_json_schemas.py
deleted file mode 100644
index 1d1efdd12..000000000
--- a/python-packages/json_schemas/test/test_json_schemas.py
+++ /dev/null
@@ -1,42 +0,0 @@
-"""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