aboutsummaryrefslogtreecommitdiffstats
path: root/python-packages/json_schemas/test/test_json_schemas.py
diff options
context:
space:
mode:
authorF. Eugene Aumson <feuGeneA@users.noreply.github.com>2018-12-13 09:47:25 +0800
committerF. Eugene Aumson <feuGeneA@users.noreply.github.com>2018-12-15 05:53:15 +0800
commitb6c8126589a94c2986c591ad7741cd3787a96e58 (patch)
treea4befde8c6ae5b364bd91ffe176ff0c6b1fd66ff /python-packages/json_schemas/test/test_json_schemas.py
parentf9a6c45a038206c863d745fdf9c98f463f03e269 (diff)
downloaddexon-sol-tools-b6c8126589a94c2986c591ad7741cd3787a96e58.tar
dexon-sol-tools-b6c8126589a94c2986c591ad7741cd3787a96e58.tar.gz
dexon-sol-tools-b6c8126589a94c2986c591ad7741cd3787a96e58.tar.bz2
dexon-sol-tools-b6c8126589a94c2986c591ad7741cd3787a96e58.tar.lz
dexon-sol-tools-b6c8126589a94c2986c591ad7741cd3787a96e58.tar.xz
dexon-sol-tools-b6c8126589a94c2986c591ad7741cd3787a96e58.tar.zst
dexon-sol-tools-b6c8126589a94c2986c591ad7741cd3787a96e58.zip
Move zero_ex.json_schemas to its own package
Diffstat (limited to 'python-packages/json_schemas/test/test_json_schemas.py')
-rw-r--r--python-packages/json_schemas/test/test_json_schemas.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/python-packages/json_schemas/test/test_json_schemas.py b/python-packages/json_schemas/test/test_json_schemas.py
new file mode 100644
index 000000000..d0e9840b3
--- /dev/null
+++ b/python-packages/json_schemas/test/test_json_schemas.py
@@ -0,0 +1,41 @@
+"""Tests of zero_ex.json_schemas"""
+
+
+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(EMPTY_ORDER, "/orderSchema")
+ cache_info = (
+ _LOCAL_RESOLVER._remote_cache.cache_info() # pylint: disable=W0212
+ )
+ assert cache_info.currsize == 4
+ assert cache_info.hits == 10