circuitpython/tests/extmod/vfs_fat_fileio1.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

112 lines
2.2 KiB
Python
Raw Normal View History

try:
2023-08-22 11:15:46 -04:00
import errno
import os
except ImportError:
print("SKIP")
raise SystemExit
try:
2023-08-22 11:15:46 -04:00
os.VfsFat
except AttributeError:
print("SKIP")
raise SystemExit
class RAMFS:
SEC_SIZE = 512
def __init__(self, blocks):
self.data = bytearray(blocks * self.SEC_SIZE)
# Don't do any allocations in the below functions because they may be called
# during a gc_sweep from a finalizer.
def readblocks(self, n, buf):
for i in range(len(buf)):
buf[i] = self.data[n * self.SEC_SIZE + i]
return 0
def writeblocks(self, n, buf):
for i in range(len(buf)):
self.data[n * self.SEC_SIZE + i] = buf[i]
return 0
def ioctl(self, op, arg):
if op == 4: # MP_BLOCKDEV_IOCTL_BLOCK_COUNT
return len(self.data) // self.SEC_SIZE
if op == 5: # MP_BLOCKDEV_IOCTL_BLOCK_SIZE
return self.SEC_SIZE
try:
bdev = RAMFS(50)
os.VfsFat.mkfs(bdev)
except MemoryError:
print("SKIP")
raise SystemExit
2023-08-22 11:15:46 -04:00
vfs = os.VfsFat(bdev)
os.mount(vfs, "/ramdisk")
os.chdir("/ramdisk")
# file IO
f = open("foo_file.txt", "w")
print(str(f)[:17], str(f)[-1:])
f.write("hello!")
f.flush()
f.close()
2021-03-15 09:57:36 -04:00
f.close() # allowed
try:
f.write("world!")
except OSError as e:
2023-08-22 11:15:46 -04:00
print(e.errno == errno.EINVAL)
try:
f.read()
except OSError as e:
2023-08-22 11:15:46 -04:00
print(e.errno == errno.EINVAL)
try:
f.flush()
except OSError as e:
2023-08-22 11:15:46 -04:00
print(e.errno == errno.EINVAL)
try:
open("foo_file.txt", "x")
except OSError as e:
2023-08-22 11:15:46 -04:00
print(e.errno == errno.EEXIST)
with open("foo_file.txt", "a") as f:
f.write("world!")
with open("foo_file.txt") as f2:
print(f2.read())
print(f2.tell())
2021-03-15 09:57:36 -04:00
f2.seek(0, 0) # SEEK_SET
print(f2.read(1))
2021-03-15 09:57:36 -04:00
f2.seek(0, 1) # SEEK_CUR
print(f2.read(1))
2021-03-15 09:57:36 -04:00
f2.seek(2, 1) # SEEK_CUR
print(f2.read(1))
2021-03-15 09:57:36 -04:00
f2.seek(-2, 2) # SEEK_END
print(f2.read(1))
# using constructor of FileIO type to open a file
# no longer working with new VFS sub-system
2021-03-15 09:57:36 -04:00
# FileIO = type(f)
# with FileIO("/ramdisk/foo_file.txt") as f:
# print(f.read())
# dirs
vfs.mkdir("foo_dir")
try:
vfs.rmdir("foo_file.txt")
except OSError as e:
2023-08-22 11:15:46 -04:00
print(e.errno == 20) # errno.ENOTDIR
vfs.remove("foo_file.txt")
print(list(vfs.ilistdir()))