forked from ethereum/pyethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
661405e
commit 9b5b5d6
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import os | ||
import ethereum.testutils as testutils | ||
from ethereum.slogging import get_logger | ||
import ethereum.abi as abi | ||
logger = get_logger() | ||
|
||
def test_abi_encode_fixed_size_array(): | ||
abi.encode_abi(['uint16[2]'], [[5, 6]]) | ||
|
||
|
||
# SETUP TESTS IN GLOBAL NAME SPACE | ||
def gen_func(filename, testname, testdata): | ||
return lambda: do_test_state(filename, testname, testdata) | ||
|
||
def do_test_state(filename, testname=None, testdata=None, limit=99999999): | ||
logger.debug('running test:%r in %r' % (testname, filename)) | ||
testutils.check_abi_test(testutils.fixture_to_bytes(testdata)) | ||
|
||
fixtures = testutils.get_tests_from_file_or_dir( | ||
os.path.join(testutils.fixture_path, 'ABITests')) | ||
|
||
filenames = sorted(list(fixtures.keys())) | ||
for filename in filenames: | ||
tests = fixtures[filename] | ||
for testname, testdata in list(tests.items()): | ||
func_name = 'test_%s_%s' % (filename, testname) | ||
globals()[func_name] = gen_func(filename, testname, testdata) |