mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00

Adjust the tests for the `pathlib.types` module so that they can be run against the `pathlib-abc` PyPI package, which is a backport of the module for older Python versions. Specifically, we add a `.support.is_pypi` switch that is false in the stdlib and true in the pathlib-abc package. This controls which package we import, and whether or not we run tests against `PurePath` and `Path`. For compatibility with older Python versions, we stop using `zipfile.ZipFile.mkdir()` and `zipfile.ZipInfo._for_archive()`.
51 lines
1.2 KiB
Python
51 lines
1.2 KiB
Python
"""
|
|
Tests for Posix-flavoured pathlib.types._JoinablePath
|
|
"""
|
|
|
|
import os
|
|
import unittest
|
|
|
|
from .support import is_pypi
|
|
from .support.lexical_path import LexicalPosixPath
|
|
|
|
|
|
class JoinTestBase:
|
|
def test_join(self):
|
|
P = self.cls
|
|
p = P('//a')
|
|
pp = p.joinpath('b')
|
|
self.assertEqual(pp, P('//a/b'))
|
|
pp = P('/a').joinpath('//c')
|
|
self.assertEqual(pp, P('//c'))
|
|
pp = P('//a').joinpath('/c')
|
|
self.assertEqual(pp, P('/c'))
|
|
|
|
def test_div(self):
|
|
# Basically the same as joinpath().
|
|
P = self.cls
|
|
p = P('//a')
|
|
pp = p / 'b'
|
|
self.assertEqual(pp, P('//a/b'))
|
|
pp = P('/a') / '//c'
|
|
self.assertEqual(pp, P('//c'))
|
|
pp = P('//a') / '/c'
|
|
self.assertEqual(pp, P('/c'))
|
|
|
|
|
|
class LexicalPosixPathJoinTest(JoinTestBase, unittest.TestCase):
|
|
cls = LexicalPosixPath
|
|
|
|
|
|
if not is_pypi:
|
|
from pathlib import PurePosixPath, PosixPath
|
|
|
|
class PurePosixPathJoinTest(JoinTestBase, unittest.TestCase):
|
|
cls = PurePosixPath
|
|
|
|
if os.name != 'nt':
|
|
class PosixPathJoinTest(JoinTestBase, unittest.TestCase):
|
|
cls = PosixPath
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|