A>zdZddlZddlZddlZ ddlZdZn#e$rdZdZYnwxYwdZdZdZ dZ d Z d Z d Z dS) aL Example module that is tested in :py:class`pyfakefs.example_test.TestExample`. This demonstrates the usage of the :py:class`pyfakefs.fake_filesystem_unittest.TestCase` base class. The modules related to file handling are bound to the respective fake modules: >>> os #doctest: +ELLIPSIS >>> os.path #doctest: +ELLIPSIS >>> shutil #doctest: +ELLIPSIS `open()` is an alias for `io.open()` and is bound to `FakeIoModule.open`. NTFct|d5}|d||dddddS#1swxYwYdS)aCreate the specified file and add some content to it. Use the `open()` built in function. For example, the following file operations occur in the fake file system. In the real file system, we would not even have permission to write `/test`: >>> os.path.isdir('/test') False >>> os.mkdir('/test') >>> os.path.isdir('/test') True >>> os.path.exists('/test/file.txt') False >>> create_file('/test/file.txt') >>> os.path.exists('/test/file.txt') True >>> with open('/test/file.txt') as f: ... f.readlines() ["This is test file '/test/file.txt'.\n", 'It was created using open().\n'] wzThis is test file '{0}'. zIt was created using open(). N)openwriteformatpathfs /srv/buildsys-work-dir/castor/build_node/builder-2/WGSG1/unpkd_srcs/cloudlinux-venv-1.0.6/venv/lib/python3.11/site-packages/pyfakefs/tests/example.py create_filer .s. dC2A ,33D99::: 0111222222222222222222s>AA #A c.tj|dS)a0Delete the specified file. For example: >>> os.mkdir('/test') >>> os.path.exists('/test/file.txt') False >>> create_file('/test/file.txt') >>> os.path.exists('/test/file.txt') True >>> delete_file('/test/file.txt') >>> os.path.exists('/test/file.txt') False N)osremover s r delete_filerJsIdOOOOOc@tj|S)a5Return True if the specified file exists. For example: >>> path_exists('/test') False >>> os.mkdir('/test') >>> path_exists('/test') True >>> >>> path_exists('/test/file.txt') False >>> create_file('/test/file.txt') >>> path_exists('/test/file.txt') True )rr existsrs r path_existsr\s" 7>>$  rc*tj|S)aReturn the list of paths matching the specified glob expression. For example: >>> os.mkdir('/test') >>> create_file('/test/file1.txt') >>> create_file('/test/file2.txt') >>> file_names = sorted(get_glob('/test/file*.txt')) >>> >>> import sys >>> if sys.platform.startswith('win'): ... # Windows style path ... file_names == [r'/test\file1.txt', r'/test\file2.txt'] ... else: ... # UNIX style path ... file_names == ['/test/file1.txt', '/test/file2.txt'] True )glob) glob_paths r get_globrps& 9Y  rc.tj|dS)z$Delete the specified file hierarchy.N)shutilrmtreers r rm_treers M$rctr!ttj|Sttj|S)z6Return a list of directory entries for the given path.) has_scandirlistscandirrrs r scan_dirr"s:+GOD))***  4  ! !!rc~t|d5}|cdddS#1swxYwYdS)z4Return the contents of the given path as byte array.rbN)rreadrs r file_contentsr&s~ dD  Qvvxxs 266)__doc__rrrr!r ImportErrorr rrrrr"r&rr r*s " NNNKKGKKK 2228$   (   , """s  ##