tests/extmod: Add test for uzlib.DecompIO.
This commit is contained in:
parent
a6864a13c7
commit
fafd587514
|
@ -0,0 +1,19 @@
|
|||
try:
|
||||
import zlib
|
||||
except ImportError:
|
||||
import uzlib as zlib
|
||||
import uio as io
|
||||
|
||||
|
||||
# Raw DEFLATE bitstream
|
||||
buf = io.BytesIO(b'\xcbH\xcd\xc9\xc9\x07\x00')
|
||||
inp = zlib.DecompIO(buf)
|
||||
print(buf.seek(0, 1))
|
||||
print(inp.read(1))
|
||||
print(buf.seek(0, 1))
|
||||
print(inp.read(2))
|
||||
print(inp.read())
|
||||
print(buf.seek(0, 1))
|
||||
print(inp.read(1))
|
||||
print(inp.read())
|
||||
print(buf.seek(0, 1))
|
|
@ -0,0 +1,9 @@
|
|||
0
|
||||
b'h'
|
||||
2
|
||||
b'el'
|
||||
b'lo'
|
||||
7
|
||||
b''
|
||||
b''
|
||||
7
|
Loading…
Reference in New Issue