virtual_path.py 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. from dataclasses import dataclass
  2. from os import stat_result
  3. from pathlib import Path
  4. @dataclass
  5. class FakeStats:
  6. st_mode: int
  7. st_ino: int
  8. st_dev: int
  9. st_nlink: int
  10. st_uid: int
  11. st_gid: int
  12. st_size: int
  13. st_atime: float
  14. st_mtime: float
  15. st_ctime: float
  16. @dataclass
  17. class FakePathEntry:
  18. is_dir: bool
  19. is_file: bool
  20. stat: stat_result
  21. class FakePath(Path):
  22. def absolute(self):
  23. pass
  24. def cwd(self):
  25. pass
  26. def exists(self):
  27. pass
  28. def glob(self):
  29. pass
  30. def is_dir(self):
  31. pass
  32. def is_file(self):
  33. pass
  34. def iterdir(self):
  35. pass
  36. def joinpath(self):
  37. pass
  38. def lstat(self):
  39. return self.stat()
  40. def open(self):
  41. pass
  42. def parent(self):
  43. pass
  44. def parents(self):
  45. pass
  46. def read_bytes(self):
  47. pass
  48. def read_text(self):
  49. pass
  50. def rglob(self):
  51. pass
  52. def stat(self):
  53. pass
  54. def root(self):
  55. pass
  56. def stem(self):
  57. pass
  58. def suffix(self):
  59. pass
  60. def suffixes(self):
  61. pass
  62. # ['__bytes__', '__class__', '__class_getitem__', '__delattr__', '__dir__', '__doc__', '__enter__', '__eq__', '__exit__', '__format__',
  63. # '__fspath__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__le__', '__lt__', '__module__',
  64. # '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rtruediv__', '__setattr__', '__sizeof__', '__slots__', '__str__',
  65. # '__subclasshook__', '__truediv__',
  66. # '_accessor', '_cached_cparts', '_cparts', '_drv', '_format_parsed_parts', '_from_parsed_parts', '_from_parts', '_hash', '_init',
  67. # '_make_child', '_make_child_relpath', '_opener', '_parse_args', '_parts', '_pparts', '_raw_open', '_root', '_str', 'absolute',
  68. # 'anchor', 'as_posix', 'as_uri', 'chmod', 'cwd', 'drive', 'exists', 'expanduser', 'glob', 'group', 'home', 'is_absolute',
  69. # 'is_block_device', 'is_char_device', 'is_dir', 'is_fifo', 'is_file', 'is_mount', 'is_relative_to', 'is_reserved', 'is_socket',
  70. # 'is_symlink', 'iterdir', 'joinpath', 'lchmod', 'link_to', 'lstat', 'match', 'mkdir', 'name', 'open', 'owner', 'parent', 'parents',
  71. # 'parts', 'read_bytes', 'read_text', 'readlink', 'relative_to', 'rename', 'replace', 'resolve', 'rglob', 'rmdir', 'root', 'samefile',
  72. # 'stat', 'stem', 'suffix', 'suffixes', 'symlink_to', 'touch', 'unlink', 'with_name', 'with_stem', 'with_suffix', 'write_bytes',
  73. # 'write_text']
  74. if __name__ == "__main__":
  75. p = Path(".")
  76. print(p)