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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
import pytest
from eth_utils import (
to_bytes,
to_hex,
to_int,
to_text,
)
@pytest.mark.parametrize(
"val, expected",
(
(b"\x01", b"\x01"),
(b"\xff", b"\xff"),
(b"\x00", b"\x00"),
(bytearray(b"\x01"), b"\x01"),
(bytearray(b"\xff"), b"\xff"),
(bytearray(b"\x00"), b"\x00"),
(memoryview(b"\x01"), b"\x01"),
(memoryview(b"\xff"), b"\xff"),
(memoryview(b"\x00"), b"\x00"),
(0x1, b"\x01"),
(0x0001, b"\x01"),
(0xFF, b"\xff"),
(0, b"\x00"),
(256, b"\x01\x00"),
(True, b"\x01"),
(False, b"\x00"),
),
)
def test_to_bytes_primitive(val, expected):
assert to_bytes(val) == expected
@pytest.mark.parametrize(
"val, expected",
(
("0x", b""),
("0x0", b"\x00"),
("0x1", b"\x01"),
("0", b"\x00"),
("1", b"\x01"),
("0xFF", b"\xff"),
("0x100", b"\x01\x00"),
("0x0000", b"\x00\x00"),
("0000", b"\x00\x00"),
),
)
def test_to_bytes_hexstr(val, expected):
assert to_bytes(hexstr=val) == expected
@pytest.mark.parametrize("val, expected", (("cowmö", b"cowm\xc3\xb6"), ("", b"")))
def test_to_bytes_text(val, expected):
assert to_bytes(text=val) == expected
def test_to_text_identity():
assert to_text(text="pass-through") == "pass-through"
@pytest.mark.parametrize(
"val, expected",
(
(b"", ""),
(bytearray(b""), ""),
(memoryview(b""), ""),
("0x", ""),
(b"cowm\xc3\xb6", "cowmö"),
(bytearray(b"cowm\xc3\xb6"), "cowmö"),
(memoryview(b"cowm\xc3\xb6"), "cowmö"),
("0x636f776dc3b6", "cowmö"),
(0x636F776DC3B6, "cowmö"),
("0xa", "\n"),
),
)
def test_to_text(val, expected):
assert to_text(val) == expected
@pytest.mark.parametrize(
"val, expected",
(("0x", ""), ("0xa", "\n"), ("0x636f776dc3b6", "cowmö"), ("636f776dc3b6", "cowmö")),
)
def test_to_text_hexstr(val, expected):
assert to_text(hexstr=val) == expected
@pytest.mark.parametrize(
"val, expected",
(
(b"\x00", 0),
(b"\x01", 1),
(b"\x00\x01", 1),
(b"\x01\x00", 256),
(bytearray(b"\x00"), 0),
(bytearray(b"\x01"), 1),
(bytearray(b"\x00\x01"), 1),
(bytearray(b"\x01\x00"), 256),
(memoryview(b"\x01"), 1),
(memoryview(b"\xff"), 255),
(memoryview(b"\x00"), 0),
(True, 1),
(False, 0),
("255", TypeError),
("-1", TypeError),
("0x0", TypeError),
("0x1", TypeError),
),
)
def test_to_int(val, expected):
if isinstance(expected, type):
with pytest.raises(expected):
to_int(val)
else:
assert to_int(val) == expected
@pytest.mark.parametrize(
"val, expected",
(
("0", 0),
("-1", -1),
("255", 255),
("0x0", ValueError),
("0x1", ValueError),
("1.1", ValueError),
("a", ValueError),
),
)
def test_to_int_text(val, expected):
if isinstance(expected, type):
with pytest.raises(expected):
to_int(text=val)
else:
assert to_int(text=val) == expected
@pytest.mark.parametrize(
"val, expected",
(
("0x0", 0),
("0x1", 1),
("0x01", 1),
("0x10", 16),
("0", 0),
("1", 1),
("01", 1),
("10", 16),
),
)
def test_to_int_hexstr(val, expected):
assert to_int(hexstr=val) == expected
@pytest.mark.parametrize(
"val, expected",
(
(b"\x00", "0x00"),
(b"\x01", "0x01"),
(b"\x10", "0x10"),
(b"\x01\x00", "0x0100"),
(b"\x00\x0F", "0x000f"),
(b"", "0x"),
(bytearray(b"\x00"), "0x00"),
(bytearray(b"\x01"), "0x01"),
(bytearray(b"\x10"), "0x10"),
(bytearray(b"\x01\x00"), "0x0100"),
(bytearray(b"\x00\x0F"), "0x000f"),
(bytearray(b""), "0x"),
(memoryview(b"\x00"), "0x00"),
(memoryview(b"\x01"), "0x01"),
(memoryview(b"\x10"), "0x10"),
(memoryview(b"\x01\x00"), "0x0100"),
(memoryview(b"\x00\x0F"), "0x000f"),
(memoryview(b""), "0x"),
(0, "0x0"),
(1, "0x1"),
(16, "0x10"),
(256, "0x100"),
(0x0, "0x0"),
(0x0F, "0xf"),
(False, "0x0"),
(True, "0x1"),
),
)
def test_to_hex(val, expected):
assert to_hex(val) == expected
@pytest.mark.parametrize("val, expected", (("", "0x"), ("cowmö", "0x636f776dc3b6")))
def test_to_hex_text(val, expected):
assert to_hex(text=val) == expected
@pytest.mark.parametrize(
"val, expected",
(
("0x0", "0x0"),
("0x1", "0x1"),
("0x0001", "0x0001"),
("0x10", "0x10"),
("0xF", "0xf"),
("F", "0xf"),
),
)
def test_to_hex_cleanup_only(val, expected):
assert to_hex(hexstr=val) == expected
def test_to_hex_exception():
with pytest.raises(TypeError, match="Unsupported type: The primitive argument"):
to_hex(primitive="string")
|