93 lines
2.3 KiB
Python
93 lines
2.3 KiB
Python
# Test for VfsPosix with relative paths
|
|
|
|
try:
|
|
import os
|
|
|
|
os.VfsPosix
|
|
except (ImportError, AttributeError):
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
# We need a directory for testing that doesn't already exist.
|
|
# Skip the test if it does exist.
|
|
temp_dir = "vfs_posix_paths_test_dir"
|
|
try:
|
|
import os
|
|
|
|
os.stat(temp_dir)
|
|
print("SKIP")
|
|
raise SystemExit
|
|
except OSError:
|
|
pass
|
|
|
|
curdir = os.getcwd()
|
|
os.mkdir(temp_dir)
|
|
|
|
# construct new VfsPosix with absolute path argument
|
|
temp_dir_abs = os.getcwd() + os.sep + temp_dir
|
|
vfs = os.VfsPosix(temp_dir_abs)
|
|
# when VfsPosix is used the intended way via os.mount(), it can only be called
|
|
# with relative paths when the CWD is inside or at its root, so simulate that
|
|
os.chdir(temp_dir_abs)
|
|
vfs.mkdir("subdir")
|
|
vfs.mkdir("subdir/one")
|
|
print('listdir("/"):', sorted(i[0] for i in vfs.ilistdir("/")))
|
|
print('listdir("."):', sorted(i[0] for i in vfs.ilistdir(".")))
|
|
print('getcwd() in {"", "/"}:', vfs.getcwd() in {"", "/"})
|
|
print('chdir("subdir"):', vfs.chdir("subdir"))
|
|
print("getcwd():", vfs.getcwd())
|
|
print('mkdir("two"):', vfs.mkdir("two"))
|
|
f = vfs.open("file.py", "w")
|
|
f.write("print('hello')")
|
|
f.close()
|
|
print('listdir("/"):', sorted(i[0] for i in vfs.ilistdir("/")))
|
|
print('listdir("/subdir"):', sorted(i[0] for i in vfs.ilistdir("/subdir")))
|
|
print('listdir("."):', sorted(i[0] for i in vfs.ilistdir(".")))
|
|
try:
|
|
f = vfs.open("/subdir/file.py", "r")
|
|
print(f.read())
|
|
f.close()
|
|
except Exception as e:
|
|
print(e)
|
|
import sys
|
|
|
|
sys.path.insert(0, "")
|
|
try:
|
|
import file
|
|
|
|
print(file)
|
|
except Exception as e:
|
|
print(e)
|
|
del sys.path[0]
|
|
vfs.remove("file.py")
|
|
vfs.rmdir("two")
|
|
vfs.rmdir("/subdir/one")
|
|
vfs.chdir("/")
|
|
vfs.rmdir("/subdir")
|
|
|
|
# done with vfs, restore CWD
|
|
os.chdir(curdir)
|
|
|
|
# some integration tests with a mounted VFS
|
|
os.mount(os.VfsPosix(temp_dir_abs), "/mnt")
|
|
os.mkdir("/mnt/dir")
|
|
print('chdir("/mnt/dir"):', os.chdir("/mnt/dir"))
|
|
print("getcwd():", os.getcwd())
|
|
print('chdir("/mnt"):', os.chdir("/mnt"))
|
|
print("getcwd():", os.getcwd())
|
|
print('chdir("/"):', os.chdir("/"))
|
|
print("getcwd():", os.getcwd())
|
|
print('chdir("/mnt/dir"):', os.chdir("/mnt/dir"))
|
|
print("getcwd():", os.getcwd())
|
|
print('chdir(".."):', os.chdir(".."))
|
|
print("getcwd():", os.getcwd())
|
|
os.rmdir("/mnt/dir")
|
|
os.umount("/mnt")
|
|
|
|
# restore CWD
|
|
os.chdir(curdir)
|
|
|
|
# rmdir
|
|
os.rmdir(temp_dir)
|
|
print(temp_dir in os.listdir())
|