2018-06-18 03:50:34 -04:00
|
|
|
# test importing of invalid .mpy files
|
|
|
|
|
|
|
|
try:
|
2020-06-18 05:19:14 -04:00
|
|
|
import usys, uio, uos
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2020-07-26 00:43:13 -04:00
|
|
|
uio.IOBase
|
2018-06-18 03:50:34 -04:00
|
|
|
uos.mount
|
|
|
|
except (ImportError, AttributeError):
|
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
|
|
|
|
|
|
|
|
|
|
|
class UserFile(uio.IOBase):
|
|
|
|
def __init__(self, data):
|
2020-07-26 00:43:13 -04:00
|
|
|
self.data = memoryview(data)
|
2018-06-18 03:50:34 -04:00
|
|
|
self.pos = 0
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2018-06-18 03:50:34 -04:00
|
|
|
def readinto(self, buf):
|
2020-07-26 00:43:13 -04:00
|
|
|
n = min(len(buf), len(self.data) - self.pos)
|
|
|
|
buf[:n] = self.data[self.pos : self.pos + n]
|
|
|
|
self.pos += n
|
2018-06-18 03:50:34 -04:00
|
|
|
return n
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2018-06-18 03:50:34 -04:00
|
|
|
def ioctl(self, req, arg):
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
|
class UserFS:
|
|
|
|
def __init__(self, files):
|
|
|
|
self.files = files
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2018-06-18 03:50:34 -04:00
|
|
|
def mount(self, readonly, mksfs):
|
|
|
|
pass
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2018-06-18 03:50:34 -04:00
|
|
|
def umount(self):
|
|
|
|
pass
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2018-06-18 03:50:34 -04:00
|
|
|
def stat(self, path):
|
|
|
|
if path in self.files:
|
|
|
|
return (32768, 0, 0, 0, 0, 0, 0, 0, 0, 0)
|
|
|
|
raise OSError
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2018-06-18 03:50:34 -04:00
|
|
|
def open(self, path, mode):
|
|
|
|
return UserFile(self.files[path])
|
|
|
|
|
|
|
|
|
|
|
|
# these are the test .mpy files
|
|
|
|
user_files = {
|
|
|
|
"/mod0.mpy": b"", # empty file
|
|
|
|
"/mod1.mpy": b"M", # too short header
|
|
|
|
"/mod2.mpy": b"M\x00\x00\x00", # bad version
|
|
|
|
}
|
|
|
|
|
|
|
|
# create and mount a user filesystem
|
|
|
|
uos.mount(UserFS(user_files), "/userfs")
|
2020-06-18 05:19:14 -04:00
|
|
|
usys.path.append("/userfs")
|
2018-06-18 03:50:34 -04:00
|
|
|
|
|
|
|
# import .mpy files from the user filesystem
|
|
|
|
for i in range(len(user_files)):
|
|
|
|
mod = "mod%u" % i
|
|
|
|
try:
|
|
|
|
__import__(mod)
|
|
|
|
except ValueError as er:
|
|
|
|
print(mod, "ValueError", er)
|
|
|
|
|
|
|
|
# unmount and undo path addition
|
|
|
|
uos.umount("/userfs")
|
2020-06-18 05:19:14 -04:00
|
|
|
usys.path.pop()
|