aboutsummaryrefslogtreecommitdiffstats
path: root/python-packages/order_utils/test/test_asset_data_utils.py
blob: 07936871457020a818ff62af0aba734b8ac1d895 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
"""Tests of 0x.order_utils.asset_data_utils."""

import pytest

from zero_ex.order_utils.asset_data_utils import (
    decode_erc20_asset_data,
    decode_erc721_asset_data,
    encode_erc20_asset_data,
    encode_erc721_asset_data,
    ERC20_ASSET_DATA_BYTE_LENGTH,
    ERC721_ASSET_DATA_MINIMUM_BYTE_LENGTH,
)


def test_encode_erc20_asset_data_type_error():
    """Test that passing in a non-string raises a TypeError."""
    with pytest.raises(TypeError):
        encode_erc20_asset_data(123)


def test_decode_erc20_asset_data_type_error():
    """Test that passing in a non-string raises a TypeError."""
    with pytest.raises(TypeError):
        decode_erc20_asset_data(123)


def test_decode_erc20_asset_data_too_short():
    """Test that passing an insufficiently long string raises a ValueError."""
    with pytest.raises(ValueError):
        decode_erc20_asset_data(" " * (ERC20_ASSET_DATA_BYTE_LENGTH - 1))


def test_decode_erc20_asset_data_invalid_proxy_id():
    """Test that passing data with an invalid proxy ID raises a ValueError."""
    with pytest.raises(ValueError):
        decode_erc20_asset_data(
            "0xffffffff" + (" " * ERC20_ASSET_DATA_BYTE_LENGTH)
        )


def test_encode_erc721_asset_data_type_error_on_token_address():
    """Test that passing a non-string for token_address raises a TypeError."""
    with pytest.raises(TypeError):
        encode_erc721_asset_data(123, 123)


def test_encode_erc721_asset_data_type_error_on_token_id():
    """Test that passing a non-int for token_id raises a TypeError."""
    with pytest.raises(TypeError):
        encode_erc721_asset_data("asdf", "asdf")


def test_decode_erc721_asset_data_type_error():
    """Test that passing a non-string for asset_data raises a TypeError."""
    with pytest.raises(TypeError):
        decode_erc721_asset_data(123)


def test_decode_erc721_asset_data_with_asset_data_too_short():
    """Test that passing in too short of a string raises a ValueError."""
    with pytest.raises(ValueError):
        decode_erc721_asset_data(
            " " * (ERC721_ASSET_DATA_MINIMUM_BYTE_LENGTH - 1)
        )


def test_decode_erc721_asset_data_invalid_proxy_id():
    """Test that passing in too short of a string raises a ValueError."""
    with pytest.raises(ValueError):
        decode_erc721_asset_data(
            "0xffffffff" + " " * (ERC721_ASSET_DATA_MINIMUM_BYTE_LENGTH - 1)
        )