circuitpython/tests/unix/extra_coverage.py

80 lines
2.2 KiB
Python
Raw Normal View History

try:
extra_coverage
except NameError:
print("SKIP")
raise SystemExit
2017-01-15 23:04:53 -05:00
import uerrno
import uio
2017-01-15 23:04:53 -05:00
data = extra_coverage()
# test hashing of str/bytes that have an invalid hash
2017-01-15 23:04:53 -05:00
print(data[0], data[1])
print(hash(data[0]))
print(hash(data[1]))
2021-03-15 09:57:36 -04:00
print(hash(bytes(data[0], "utf8")))
print(hash(str(data[1], "utf8")))
2017-01-15 23:04:53 -05:00
# test streams
2021-03-15 09:57:36 -04:00
stream = data[2] # has set_error and set_buf. Write always returns error
stream.set_error(uerrno.EAGAIN) # non-blocking error
print(stream.read()) # read all encounters non-blocking error
print(stream.read(1)) # read 1 byte encounters non-blocking error
print(stream.readline()) # readline encounters non-blocking error
print(stream.readinto(bytearray(10))) # readinto encounters non-blocking error
print(stream.write(b"1")) # write encounters non-blocking error
print(stream.write1(b"1")) # write1 encounters non-blocking error
stream.set_buf(b"123")
print(stream.read(4)) # read encounters non-blocking error after successful reads
stream.set_buf(b"123")
print(stream.read1(4)) # read1 encounters non-blocking error after successful reads
stream.set_buf(b"123")
print(stream.readline(4)) # readline encounters non-blocking error after successful reads
2017-01-15 23:04:53 -05:00
try:
2021-03-15 09:57:36 -04:00
print(stream.ioctl(0, 0)) # ioctl encounters non-blocking error; raises OSError
2017-01-15 23:04:53 -05:00
except OSError:
2021-03-15 09:57:36 -04:00
print("OSError")
2017-01-15 23:04:53 -05:00
stream.set_error(0)
2021-03-15 09:57:36 -04:00
print(stream.ioctl(0, bytearray(10))) # successful ioctl call
2017-01-15 23:04:53 -05:00
2021-03-15 09:57:36 -04:00
stream2 = data[3] # is textio
print(stream2.read(1)) # read 1 byte encounters non-blocking error with textio stream
2017-01-15 23:04:53 -05:00
# test BufferedWriter with stream errors
stream.set_error(uerrno.EAGAIN)
buf = uio.BufferedWriter(stream, 8)
print(buf.write(bytearray(16)))
# test basic import of frozen scripts
import frzstr1
import frzmpy1
# test import of frozen packages with __init__.py
import frzstr_pkg1
2021-03-15 09:57:36 -04:00
print(frzstr_pkg1.x)
import frzmpy_pkg1
2021-03-15 09:57:36 -04:00
print(frzmpy_pkg1.x)
# test import of frozen packages without __init__.py
from frzstr_pkg2.mod import Foo
2021-03-15 09:57:36 -04:00
print(Foo.x)
from frzmpy_pkg2.mod import Foo
2021-03-15 09:57:36 -04:00
print(Foo.x)
# test raising exception in frozen script
try:
import frzmpy2
except ZeroDivisionError:
2021-03-15 09:57:36 -04:00
print("ZeroDivisionError")
# test loading a resource from a frozen string
import uio
2021-03-15 09:57:36 -04:00
buf = uio.resource_stream("frzstr_pkg2", "mod.py")
print(buf.read(21))