Skip to content

Commit c640ddc

Browse files
committed
Fix handling of Windows drive as root path
- was always detected as existing - caused part of #692
1 parent f5640e3 commit c640ddc

4 files changed

+22
-6
lines changed

CHANGES.md

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ The released versions correspond to PyPi releases.
33

44
## Unreleased
55

6+
### Fixes
7+
* fixed regression: `os.exists` returned `True` for any root drive path under Windows
8+
69
## [Version 4.6.2](https://pypi.python.org/pypi/pyfakefs/4.6.2) (2022-07-14)
710
Patch release that fixes an error in the previous patch.
811

pyfakefs/fake_filesystem.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -1923,9 +1923,11 @@ def is_mount_point(self, file_path: AnyStr) -> bool:
19231923
if (file_path == mount_point or not self.is_case_sensitive and
19241924
file_path.lower() == mount_point.lower()):
19251925
return True
1926-
if self.is_windows_fs:
1927-
return (2 <= len(file_path) <= 3 and
1928-
self.starts_with_drive_letter(file_path))
1926+
if (self.is_windows_fs and len(file_path) == 3 and
1927+
len(mount_point) == 2 and
1928+
self.starts_with_drive_letter(file_path) and
1929+
file_path[:2].lower() == mount_point.lower()):
1930+
return True
19291931
return False
19301932

19311933
def ends_with_path_separator(self, path: Union[int, AnyPath]) -> bool:

pyfakefs/tests/fake_filesystem_test.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@
2323
import unittest
2424

2525
from pyfakefs import fake_filesystem
26-
from pyfakefs.fake_filesystem import set_uid, set_gid, is_root, reset_ids
26+
from pyfakefs.fake_filesystem import (
27+
set_uid, set_gid, is_root, reset_ids, OSType
28+
)
2729
from pyfakefs.helpers import IS_WIN
2830
from pyfakefs.tests.test_utils import TestCase, RealFsTestCase, time_mock
2931

@@ -1023,6 +1025,16 @@ def test_exists(self):
10231025
self.assertTrue(self.path.exists(file_path_bytes))
10241026
self.assertFalse(self.path.exists('!some!other!bogus!path'))
10251027

1028+
def test_exists_with_drive(self):
1029+
self.filesystem.os = OSType.WINDOWS
1030+
self.filesystem.add_mount_point('F:')
1031+
self.assertTrue(self.path.exists('C:'))
1032+
self.assertTrue(self.path.exists('c:\\'))
1033+
self.assertTrue(self.path.exists('f:'))
1034+
self.assertTrue(self.path.exists('F:\\'))
1035+
self.assertFalse(self.path.exists('Z:'))
1036+
self.assertFalse(self.path.exists('z:\\'))
1037+
10261038
def test_lexists(self):
10271039
file_path = 'foo!bar!baz'
10281040
file_path_bytes = b'foo!bar!baz'

pyfakefs/tests/fake_filesystem_unittest_test.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -866,8 +866,7 @@ def test_drivelike_path(self):
866866
file_path = folder / 'C:/testfile'
867867
file_path.parent.mkdir(parents=True)
868868
file_path.touch()
869-
# use str() to be Python 3.5 compatible
870-
os.chdir(str(folder))
869+
os.chdir(folder)
871870
self.assertTrue(os.path.exists(str(file_path.relative_to(folder))))
872871

873872

0 commit comments

Comments
 (0)