OXIESEC PANEL
- Current Dir:
/
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
pyfakefs
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
09/05/2025 09:34:06 AM
rwxr-xr-x
📄
__init__.py
56 bytes
12/18/2024 10:23:15 AM
rw-r--r--
📁
__pycache__
-
02/07/2025 10:01:34 PM
rwxr-xr-x
📄
_version.py
22 bytes
12/18/2024 10:23:15 AM
rw-r--r--
📄
extra_packages.py
1.12 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
fake_file.py
44.85 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
fake_filesystem.py
113.95 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
fake_filesystem_shutil.py
3.67 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
fake_filesystem_unittest.py
41.69 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
fake_io.py
5.95 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
fake_open.py
13.07 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
fake_os.py
49.61 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
fake_path.py
17.49 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
fake_pathlib.py
34.06 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
fake_scandir.py
11.06 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
helpers.py
12.87 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
mox3_stubout.py
5.78 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
patched_packages.py
4.3 KB
12/18/2024 10:23:15 AM
rw-r--r--
📄
py.typed
68 bytes
12/18/2024 10:23:15 AM
rw-r--r--
📄
pytest_plugin.py
1.7 KB
12/18/2024 10:23:15 AM
rw-r--r--
📁
pytest_tests
-
02/07/2025 10:01:35 PM
rwxr-xr-x
📁
tests
-
02/07/2025 10:01:35 PM
rwxr-xr-x
Editing: fake_filesystem_shutil.py
Close
# Copyright 2009 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """A fake shutil module implementation that uses fake_filesystem for unit tests. Note that only `shutildisk_usage()` is faked, the rest of the functions shall work fine with the fake file system if `os`/`os.path` are patched. :Includes: FakeShutil: Uses a FakeFilesystem to provide a fake replacement for the shutil module. :Usage: The fake implementation is automatically involved if using `fake_filesystem_unittest.TestCase`, pytest fs fixture, or directly `Patcher`. """ import os import shutil import sys class FakeShutilModule: """Uses a FakeFilesystem to provide a fake replacement for shutil module. """ @staticmethod def dir(): """Return the list of patched function names. Used for patching functions imported from the module. """ return ("disk_usage",) def __init__(self, filesystem): """Construct fake shutil module using the fake filesystem. Args: filesystem: FakeFilesystem used to provide file system information """ self.filesystem = filesystem self._shutil_module = shutil def disk_usage(self, path): """Return the total, used and free disk space in bytes as named tuple or placeholder holder values simulating unlimited space if not set. Args: path: defines the filesystem device which is queried """ return self.filesystem.get_disk_usage(path) if sys.version_info >= (3, 12) and sys.platform == "win32": def copy2(self, src, dst, *, follow_symlinks=True): """Since Python 3.12, there is an optimization fow Windows, using the Windows API. We just remove this and fall back to the previous implementation. """ if self.filesystem.isdir(dst): dst = self.filesystem.joinpaths(dst, os.path.basename(src)) self.copyfile(src, dst, follow_symlinks=follow_symlinks) self.copystat(src, dst, follow_symlinks=follow_symlinks) return dst def copytree( self, src, dst, symlinks=False, ignore=None, copy_function=shutil.copy2, ignore_dangling_symlinks=False, dirs_exist_ok=False, ): """Make sure the default argument is patched.""" if copy_function == shutil.copy2: copy_function = self.copy2 return self._shutil_module.copytree( src, dst, symlinks, ignore, copy_function, ignore_dangling_symlinks, dirs_exist_ok, ) def move(self, src, dst, copy_function=shutil.copy2): """Make sure the default argument is patched.""" if copy_function == shutil.copy2: copy_function = self.copy2 return self._shutil_module.move(src, dst, copy_function) def __getattr__(self, name): """Forwards any non-faked calls to the standard shutil module.""" return getattr(self._shutil_module, name)