forked from VimPlug/jedi
Also use it within setup.py. It doesn't seem possible to define dependencies for tox with install_requires.
87 lines
2.6 KiB
Python
87 lines
2.6 KiB
Python
# -*- coding: utf-8 -*-
|
||
|
||
from jedi._compatibility import is_py3
|
||
from jedi import parser_utils
|
||
from parso.python import parse
|
||
from parso.python import tree
|
||
|
||
import pytest
|
||
|
||
|
||
class TestCallAndName():
|
||
def get_call(self, source):
|
||
# Get the simple_stmt and then the first one.
|
||
simple_stmt = parse(source).children[0]
|
||
return simple_stmt.children[0]
|
||
|
||
def test_name_and_call_positions(self):
|
||
name = self.get_call('name\nsomething_else')
|
||
assert name.value == 'name'
|
||
assert name.start_pos == (1, 0)
|
||
assert name.end_pos == (1, 4)
|
||
|
||
leaf = self.get_call('1.0\n')
|
||
assert leaf.value == '1.0'
|
||
assert parser_utils.safe_literal_eval(leaf.value) == 1.0
|
||
assert leaf.start_pos == (1, 0)
|
||
assert leaf.end_pos == (1, 3)
|
||
|
||
def test_call_type(self):
|
||
call = self.get_call('hello')
|
||
assert isinstance(call, tree.Name)
|
||
|
||
def test_literal_type(self):
|
||
literal = self.get_call('1.0')
|
||
assert isinstance(literal, tree.Literal)
|
||
assert type(parser_utils.safe_literal_eval(literal.value)) == float
|
||
|
||
literal = self.get_call('1')
|
||
assert isinstance(literal, tree.Literal)
|
||
assert type(parser_utils.safe_literal_eval(literal.value)) == int
|
||
|
||
literal = self.get_call('"hello"')
|
||
assert isinstance(literal, tree.Literal)
|
||
assert parser_utils.safe_literal_eval(literal.value) == 'hello'
|
||
|
||
|
||
def test_user_statement_on_import():
|
||
"""github #285"""
|
||
s = "from datetime import (\n" \
|
||
" time)"
|
||
|
||
for pos in [(2, 1), (2, 4)]:
|
||
p = parse(s)
|
||
stmt = parser_utils.get_statement_of_position(p, pos)
|
||
assert isinstance(stmt, tree.Import)
|
||
assert [n.value for n in stmt.get_defined_names()] == ['time']
|
||
|
||
|
||
def test_hex_values_in_docstring():
|
||
source = r'''
|
||
def foo(object):
|
||
"""
|
||
\xff
|
||
"""
|
||
return 1
|
||
'''
|
||
|
||
doc = parser_utils.clean_scope_docstring(next(parse(source).iter_funcdefs()))
|
||
if is_py3:
|
||
assert doc == '\xff'
|
||
else:
|
||
assert doc == u'<EFBFBD>'
|
||
|
||
|
||
@pytest.mark.parametrize(
|
||
'code,call_signature', [
|
||
('def my_function(x, y, z) -> str:\n return', 'my_function(x, y, z)'),
|
||
('lambda x, y, z: x + y * z\n', '<lambda>(x, y, z)')
|
||
])
|
||
def test_get_call_signature(code, call_signature):
|
||
node = parse(code).children[0]
|
||
if node.type == 'simple_stmt':
|
||
node = node.children[0]
|
||
assert parser_utils.get_call_signature(node) == call_signature
|
||
|
||
assert parser_utils.get_doc_with_call_signature(node) == (call_signature + '\n\n')
|