1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE
# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt
import astroid
from astroid import bases
from astroid.const import PY313
from astroid.util import Uninferable
def test_inference_parents() -> None:
"""Test inference of ``pathlib.Path.parents``."""
name_node = astroid.extract_node(
"""
from pathlib import Path
current_path = Path().resolve()
path_parents = current_path.parents
path_parents
"""
)
inferred = name_node.inferred()
assert len(inferred) == 1
assert isinstance(inferred[0], bases.Instance)
if PY313:
assert inferred[0].qname() == "builtins.tuple"
else:
assert inferred[0].qname() == "pathlib._PathParents"
def test_inference_parents_subscript_index() -> None:
"""Test inference of ``pathlib.Path.parents``, accessed by index."""
path = astroid.extract_node(
"""
from pathlib import Path
current_path = Path().resolve()
current_path.parents[2] #@
"""
)
inferred = path.inferred()
assert len(inferred) == 1
assert isinstance(inferred[0], bases.Instance)
if PY313:
assert inferred[0].qname() == "pathlib._local.Path"
else:
assert inferred[0].qname() == "pathlib.Path"
def test_inference_parents_subscript_slice() -> None:
"""Test inference of ``pathlib.Path.parents``, accessed by slice."""
name_node = astroid.extract_node(
"""
from pathlib import Path
current_path = Path().resolve()
parent_path = current_path.parents[:2]
parent_path
"""
)
inferred = name_node.inferred()
assert len(inferred) == 1
assert isinstance(inferred[0], bases.Instance)
assert inferred[0].qname() == "builtins.tuple"
def test_inference_parents_subscript_not_path() -> None:
"""Test inference of other ``.parents`` subscripts is unaffected."""
name_node = astroid.extract_node(
"""
class A:
parents = 42
c = A()
error = c.parents[:2]
error
"""
)
inferred = name_node.inferred()
assert len(inferred) == 1
assert inferred[0] is Uninferable
|