-
Notifications
You must be signed in to change notification settings - Fork 292
Expand file tree
/
Copy pathtest_symbols.py
More file actions
87 lines (63 loc) · 2.6 KB
/
test_symbols.py
File metadata and controls
87 lines (63 loc) · 2.6 KB
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
84
85
86
87
# Copyright 2017 Palantir Technologies, Inc.
from pyls import uris
from pyls.plugins.symbols import pyls_document_symbols
from pyls.lsp import SymbolKind
from pyls.workspace import Document
DOC_URI = uris.from_fs_path(__file__)
DOC = """import sys
a = 'hello'
class B:
def __init__(self):
x = 2
self.y = x
def main(x):
y = 2 * x
return y
"""
def test_symbols(config):
doc = Document(DOC_URI, DOC)
config.update({'plugins': {'jedi_symbols': {'all_scopes': False}}})
symbols = pyls_document_symbols(config, doc)
# All four symbols (a, B, main, y)
assert len(symbols) == 4
def sym(name):
return [s for s in symbols if s['name'] == name][0]
# Check we have some sane mappings to VSCode constants
assert sym('a')['kind'] == SymbolKind.Variable
assert sym('B')['kind'] == SymbolKind.Class
assert sym('main')['kind'] == SymbolKind.Function
# Not going to get too in-depth here else we're just testing Jedi
assert sym('a')['location']['range']['start'] == {'line': 2, 'character': 0}
# Ensure that the symbol range spans the whole definition
assert sym('main')['location']['range']['start'] == {'line': 9, 'character': 0}
assert sym('main')['location']['range']['end'] == {'line': 12, 'character': 0}
def test_symbols_all_scopes(config):
doc = Document(DOC_URI, DOC)
symbols = pyls_document_symbols(config, doc)
# All eight symbols (a, B, __init__, x, y, main, y)
assert len(symbols) == 7
def sym(name):
return [s for s in symbols if s['name'] == name][0]
# Check we have some sane mappings to VSCode constants
assert sym('a')['kind'] == SymbolKind.Variable
assert sym('B')['kind'] == SymbolKind.Class
assert sym('__init__')['kind'] == SymbolKind.Function
assert sym('main')['kind'] == SymbolKind.Function
# Not going to get too in-depth here else we're just testing Jedi
assert sym('a')['location']['range']['start'] == {'line': 2, 'character': 0}
def test_symbols_hierarchical(config):
# Enable client support
config.capabilities['textDocument'] = {'documentSymbol': {'hierarchicalDocumentSymbolSupport': True}}
doc = Document(DOC_URI, DOC)
symbols = pyls_document_symbols(config, doc)
# All four symbols (a, B, main, y)
assert len(symbols) == 4
# Ensure a has no children
sym_a = symbols[0]
assert sym_a['name'] == 'a'
assert not sym_a['children']
# Ensure B has a single __init__ function child
sym_b = symbols[1]
assert sym_b['name'] == 'B'
assert len(sym_b['children']) == 1
assert sym_b['children'][0]['name'] == '__init__'