pathlib tests: create test hierarchy without using class under test (#128200)

In the pathlib tests, avoid using the path class under test (`self.cls`) in
test setup. Instead we use `os` functions in `test_pathlib`, and direct
manipulation of `DummyPath` internal data in `test_pathlib_abc`.
This commit is contained in:
Barney Gale 2024-12-23 17:22:15 +00:00 committed by GitHub
parent c5b0c90b62
commit d61542b5ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 55 additions and 29 deletions

View File

@ -578,10 +578,44 @@ def setUp(self):
if name in _tests_needing_symlinks and not self.can_symlink: if name in _tests_needing_symlinks and not self.can_symlink:
self.skipTest('requires symlinks') self.skipTest('requires symlinks')
super().setUp() super().setUp()
os.chmod(self.parser.join(self.base, 'dirE'), 0)
def createTestHierarchy(self):
os.mkdir(self.base)
os.mkdir(os.path.join(self.base, 'dirA'))
os.mkdir(os.path.join(self.base, 'dirB'))
os.mkdir(os.path.join(self.base, 'dirC'))
os.mkdir(os.path.join(self.base, 'dirC', 'dirD'))
os.mkdir(os.path.join(self.base, 'dirE'))
with open(os.path.join(self.base, 'fileA'), 'wb') as f:
f.write(b"this is file A\n")
with open(os.path.join(self.base, 'dirB', 'fileB'), 'wb') as f:
f.write(b"this is file B\n")
with open(os.path.join(self.base, 'dirC', 'fileC'), 'wb') as f:
f.write(b"this is file C\n")
with open(os.path.join(self.base, 'dirC', 'novel.txt'), 'wb') as f:
f.write(b"this is a novel\n")
with open(os.path.join(self.base, 'dirC', 'dirD', 'fileD'), 'wb') as f:
f.write(b"this is file D\n")
os.chmod(os.path.join(self.base, 'dirE'), 0)
if self.can_symlink:
# Relative symlinks.
os.symlink('fileA', os.path.join(self.base, 'linkA'))
os.symlink('non-existing', os.path.join(self.base, 'brokenLink'))
os.symlink('dirB',
os.path.join(self.base, 'linkB'),
target_is_directory=True)
os.symlink(os.path.join('..', 'dirB'),
os.path.join(self.base, 'dirA', 'linkC'),
target_is_directory=True)
# This one goes upwards, creating a loop.
os.symlink(os.path.join('..', 'dirB'),
os.path.join(self.base, 'dirB', 'linkD'),
target_is_directory=True)
# Broken symlink (pointing to itself).
os.symlink('brokenLinkLoop', os.path.join(self.base, 'brokenLinkLoop'))
def tearDown(self): def tearDown(self):
os.chmod(self.parser.join(self.base, 'dirE'), 0o777) os.chmod(os.path.join(self.base, 'dirE'), 0o777)
os_helper.rmtree(self.base) os_helper.rmtree(self.base)
def tempdir(self): def tempdir(self):

View File

@ -1437,33 +1437,25 @@ class DummyPathTest(DummyPurePathTest):
def setUp(self): def setUp(self):
super().setUp() super().setUp()
parser = self.cls.parser self.createTestHierarchy()
p = self.cls(self.base)
p.mkdir(parents=True) def createTestHierarchy(self):
p.joinpath('dirA').mkdir() cls = self.cls
p.joinpath('dirB').mkdir() cls._files = {
p.joinpath('dirC').mkdir() f'{self.base}/fileA': b'this is file A\n',
p.joinpath('dirC', 'dirD').mkdir() f'{self.base}/dirB/fileB': b'this is file B\n',
p.joinpath('dirE').mkdir() f'{self.base}/dirC/fileC': b'this is file C\n',
with p.joinpath('fileA').open('wb') as f: f'{self.base}/dirC/dirD/fileD': b'this is file D\n',
f.write(b"this is file A\n") f'{self.base}/dirC/novel.txt': b'this is a novel\n',
with p.joinpath('dirB', 'fileB').open('wb') as f: }
f.write(b"this is file B\n") cls._directories = {
with p.joinpath('dirC', 'fileC').open('wb') as f: f'{self.base}': {'fileA', 'dirA', 'dirB', 'dirC', 'dirE'},
f.write(b"this is file C\n") f'{self.base}/dirA': set(),
with p.joinpath('dirC', 'novel.txt').open('wb') as f: f'{self.base}/dirB': {'fileB'},
f.write(b"this is a novel\n") f'{self.base}/dirC': {'fileC', 'dirD', 'novel.txt'},
with p.joinpath('dirC', 'dirD', 'fileD').open('wb') as f: f'{self.base}/dirC/dirD': {'fileD'},
f.write(b"this is file D\n") f'{self.base}/dirE': set(),
if self.can_symlink: }
p.joinpath('linkA').symlink_to('fileA')
p.joinpath('brokenLink').symlink_to('non-existing')
p.joinpath('linkB').symlink_to('dirB', target_is_directory=True)
p.joinpath('dirA', 'linkC').symlink_to(
parser.join('..', 'dirB'), target_is_directory=True)
p.joinpath('dirB', 'linkD').symlink_to(
parser.join('..', 'dirB'), target_is_directory=True)
p.joinpath('brokenLinkLoop').symlink_to('brokenLinkLoop')
def tearDown(self): def tearDown(self):
cls = self.cls cls = self.cls