summaryrefslogtreecommitdiffstatshomepage
path: root/tests
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-06-15 13:56:21 +1000
committerDamien George <damien.p.george@gmail.com>2017-06-15 13:56:21 +1000
commit8c5632a869f10445dc5091c39ec73ca49cf83454 (patch)
tree932b9754b867c3173d899d53fca804a1bd03ffb6 /tests
parent2bf5a947b2b01f2be6c7b05707391dd09b240ad0 (diff)
downloadmicropython-8c5632a869f10445dc5091c39ec73ca49cf83454.tar.gz
micropython-8c5632a869f10445dc5091c39ec73ca49cf83454.zip
py/objint: Support "big" byte-order in int.to_bytes().
Diffstat (limited to 'tests')
-rw-r--r--tests/basics/int_bytes.py6
-rw-r--r--tests/basics/int_bytes_intbig.py2
-rw-r--r--tests/basics/int_bytes_notimpl.py4
-rw-r--r--tests/basics/int_bytes_notimpl.py.exp1
4 files changed, 8 insertions, 5 deletions
diff --git a/tests/basics/int_bytes.py b/tests/basics/int_bytes.py
index 93c00bba10..5198792625 100644
--- a/tests/basics/int_bytes.py
+++ b/tests/basics/int_bytes.py
@@ -8,3 +8,9 @@ print(int.from_bytes(b"\x00\x01\0\0\0\0\0\0", "little"))
# check that extra zero bytes don't change the internal int value
print(int.from_bytes(bytes(20), "little") == 0)
print(int.from_bytes(b"\x01" + bytes(20), "little") == 1)
+
+# big-endian conversion
+print((10).to_bytes(1, "big"))
+print((100).to_bytes(10, "big"))
+print(int.from_bytes(b"\0\0\0\0\0\0\0\0\0\x01", "big"))
+print(int.from_bytes(b"\x01\0", "big"))
diff --git a/tests/basics/int_bytes_intbig.py b/tests/basics/int_bytes_intbig.py
index 0e0ad1cbb7..147362bef1 100644
--- a/tests/basics/int_bytes_intbig.py
+++ b/tests/basics/int_bytes_intbig.py
@@ -1,4 +1,5 @@
print((2**64).to_bytes(9, "little"))
+print((2**64).to_bytes(9, "big"))
b = bytes(range(20))
@@ -7,6 +8,7 @@ ib = int.from_bytes(b, "big")
print(il)
print(ib)
print(il.to_bytes(20, "little"))
+print(ib.to_bytes(20, "big"))
# check that extra zero bytes don't change the internal int value
print(int.from_bytes(b + bytes(10), "little") == int.from_bytes(b, "little"))
diff --git a/tests/basics/int_bytes_notimpl.py b/tests/basics/int_bytes_notimpl.py
deleted file mode 100644
index b149f44966..0000000000
--- a/tests/basics/int_bytes_notimpl.py
+++ /dev/null
@@ -1,4 +0,0 @@
-try:
- print((10).to_bytes(1, "big"))
-except Exception as e:
- print(type(e))
diff --git a/tests/basics/int_bytes_notimpl.py.exp b/tests/basics/int_bytes_notimpl.py.exp
deleted file mode 100644
index 606649a693..0000000000
--- a/tests/basics/int_bytes_notimpl.py.exp
+++ /dev/null
@@ -1 +0,0 @@
-<class 'NotImplementedError'>