2015-05-08 04:18:38 -04:00
|
|
|
try:
|
|
|
|
extra_coverage
|
|
|
|
except NameError:
|
|
|
|
print("SKIP")
|
2017-06-10 13:14:16 -04:00
|
|
|
raise SystemExit
|
2015-05-08 04:18:38 -04:00
|
|
|
|
2022-08-18 02:57:45 -04:00
|
|
|
import errno
|
|
|
|
import io
|
2017-01-15 23:04:53 -05:00
|
|
|
|
2016-09-02 01:07:42 -04: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])
|
2016-09-02 01:07:42 -04:00
|
|
|
print(hash(data[0]))
|
|
|
|
print(hash(data[1]))
|
|
|
|
print(hash(bytes(data[0], "utf8")))
|
|
|
|
print(hash(str(data[1], "utf8")))
|
2017-01-04 22:58:08 -05:00
|
|
|
|
2017-01-15 23:04:53 -05:00
|
|
|
# test streams
|
|
|
|
stream = data[2] # has set_error and set_buf. Write always returns error
|
2022-08-18 02:57:45 -04:00
|
|
|
stream.set_error(errno.EAGAIN) # non-blocking error
|
2017-01-15 23:04:53 -05:00
|
|
|
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
|
|
|
|
try:
|
|
|
|
print(stream.ioctl(0, 0)) # ioctl encounters non-blocking error; raises OSError
|
|
|
|
except OSError:
|
|
|
|
print("OSError")
|
|
|
|
stream.set_error(0)
|
|
|
|
print(stream.ioctl(0, bytearray(10))) # successful ioctl call
|
|
|
|
|
2018-06-12 22:47:29 -04:00
|
|
|
stream2 = data[3] # is textio
|
2017-01-15 23:04:53 -05:00
|
|
|
print(stream2.read(1)) # read 1 byte encounters non-blocking error with textio stream
|
|
|
|
|
2017-01-16 21:12:50 -05:00
|
|
|
# test BufferedWriter with stream errors
|
2022-08-18 02:57:45 -04:00
|
|
|
stream.set_error(errno.EAGAIN)
|
|
|
|
buf = io.BufferedWriter(stream, 8)
|
2017-01-16 21:12:50 -05:00
|
|
|
print(buf.write(bytearray(16)))
|
|
|
|
|
2020-10-08 10:52:25 -04:00
|
|
|
# function defined in C++ code
|
|
|
|
print("cpp", extra_cpp_coverage())
|
|
|
|
|
2020-10-21 05:13:47 -04:00
|
|
|
# test user C module mixed with C++ code
|
|
|
|
import cppexample
|
|
|
|
|
|
|
|
print(cppexample.cppfunc(1, 2))
|
|
|
|
|
2017-01-04 22:58:08 -05:00
|
|
|
# test basic import of frozen scripts
|
|
|
|
import frzstr1
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2019-07-08 05:26:20 -04:00
|
|
|
print(frzstr1.__file__)
|
2017-01-04 22:58:08 -05:00
|
|
|
import frzmpy1
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2019-07-08 05:26:20 -04:00
|
|
|
print(frzmpy1.__file__)
|
2017-01-08 06:45:55 -05:00
|
|
|
|
|
|
|
# test import of frozen packages with __init__.py
|
|
|
|
import frzstr_pkg1
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2019-07-08 05:26:20 -04:00
|
|
|
print(frzstr_pkg1.__file__, frzstr_pkg1.x)
|
2017-01-08 06:45:55 -05:00
|
|
|
import frzmpy_pkg1
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2019-07-08 05:26:20 -04:00
|
|
|
print(frzmpy_pkg1.__file__, frzmpy_pkg1.x)
|
2017-01-08 06:45:55 -05:00
|
|
|
|
|
|
|
# test import of frozen packages without __init__.py
|
|
|
|
from frzstr_pkg2.mod import Foo
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2017-01-08 06:45:55 -05:00
|
|
|
print(Foo.x)
|
|
|
|
from frzmpy_pkg2.mod import Foo
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2017-01-08 06:45:55 -05:00
|
|
|
print(Foo.x)
|
2017-01-16 00:47:02 -05:00
|
|
|
|
|
|
|
# test raising exception in frozen script
|
|
|
|
try:
|
|
|
|
import frzmpy2
|
|
|
|
except ZeroDivisionError:
|
|
|
|
print("ZeroDivisionError")
|
2018-03-03 07:58:03 -05:00
|
|
|
|
2022-02-28 02:51:45 -05:00
|
|
|
# test importing various objects
|
|
|
|
import frzmpy3
|
|
|
|
|
2019-09-25 01:53:30 -04:00
|
|
|
# test for MP_QSTR_NULL regression
|
|
|
|
from frzqstr import returns_NULL
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2019-09-25 01:53:30 -04:00
|
|
|
print(returns_NULL())
|
2022-09-18 22:05:39 -04:00
|
|
|
|
|
|
|
# test for freeze_mpy
|
|
|
|
import frozentest
|
|
|
|
|
|
|
|
print(frozentest.__file__)
|
2023-05-12 03:03:14 -04:00
|
|
|
|
|
|
|
# test for builtin sub-packages
|
|
|
|
from example_package.foo import bar
|
|
|
|
|
|
|
|
print(bar)
|
|
|
|
bar.f()
|
|
|
|
import example_package
|
|
|
|
|
|
|
|
print(example_package, example_package.foo, example_package.foo.bar)
|
|
|
|
example_package.f()
|
|
|
|
example_package.foo.f()
|
|
|
|
example_package.foo.bar.f()
|
|
|
|
print(bar == example_package.foo.bar)
|
|
|
|
from example_package.foo import f as foo_f
|
|
|
|
|
|
|
|
foo_f()
|
|
|
|
print(foo_f == example_package.foo.f)
|