Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: adds type hierarchy request support #370

Merged
merged 1 commit into from
Sep 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions pygls/capabilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
TEXT_DOCUMENT_SELECTION_RANGE,
TEXT_DOCUMENT_SIGNATURE_HELP,
TEXT_DOCUMENT_PREPARE_CALL_HIERARCHY,
TEXT_DOCUMENT_PREPARE_TYPE_HIERARCHY,
TEXT_DOCUMENT_DID_CLOSE,
TEXT_DOCUMENT_DID_OPEN,
TEXT_DOCUMENT_DID_SAVE,
Expand Down Expand Up @@ -307,6 +308,12 @@ def _with_call_hierarchy(self):
self.server_cap.call_hierarchy_provider = value
return self

def _with_type_hierarchy(self):
value = self._provider_options(TEXT_DOCUMENT_PREPARE_TYPE_HIERARCHY)
if value is not None:
self.server_cap.type_hierarchy_provider = value
return self

def _with_semantic_tokens(self):
providers = [
TEXT_DOCUMENT_SEMANTIC_TOKENS_FULL,
Expand Down Expand Up @@ -433,6 +440,7 @@ def build(self):
._with_execute_command()
._with_selection_range()
._with_call_hierarchy()
._with_type_hierarchy()
._with_semantic_tokens()
._with_linked_editing_range()
._with_moniker()
Expand Down
127 changes: 127 additions & 0 deletions tests/lsp/test_type_hierarchy.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
############################################################################
# Copyright(c) Open Law Library. All rights reserved. #
# See ThirdPartyNotices.txt in the project root for additional notices. #
# #
# Licensed under the Apache License, Version 2.0 (the "License") #
# you may not use this file except in compliance with the License. #
# You may obtain a copy of the License at #
# #
# http: // www.apache.org/licenses/LICENSE-2.0 #
# #
# Unless required by applicable law or agreed to in writing, software #
# distributed under the License is distributed on an "AS IS" BASIS, #
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
# See the License for the specific language governing permissions and #
# limitations under the License. #
############################################################################
from typing import List, Optional

from lsprotocol import types as lsp

from ..conftest import ClientServer


TYPE_HIERARCHY_ITEM = lsp.TypeHierarchyItem(
name="test_name",
kind=lsp.SymbolKind.Class,
uri="test_uri",
range=lsp.Range(
start=lsp.Position(line=0, character=0),
end=lsp.Position(line=0, character=6),
),
selection_range=lsp.Range(
start=lsp.Position(line=0, character=0),
end=lsp.Position(line=0, character=6),
),
)


def check_type_hierarchy_item_response(item):
assert item.name == TYPE_HIERARCHY_ITEM.name
assert item.kind == TYPE_HIERARCHY_ITEM.kind
assert item.uri == TYPE_HIERARCHY_ITEM.uri
assert item.range == TYPE_HIERARCHY_ITEM.range
assert item.selection_range == TYPE_HIERARCHY_ITEM.selection_range


class ConfiguredLS(ClientServer):
def __init__(self):
super().__init__()

@self.server.feature(lsp.TEXT_DOCUMENT_PREPARE_TYPE_HIERARCHY)
def f1(
params: lsp.TypeHierarchyPrepareParams,
) -> Optional[List[lsp.TypeHierarchyItem]]:
if params.text_document.uri == "file://return.list":
return [TYPE_HIERARCHY_ITEM]
else:
return None

@self.server.feature(lsp.TYPE_HIERARCHY_SUPERTYPES)
def f2(
params: lsp.TypeHierarchySupertypesParams,
) -> Optional[List[lsp.TypeHierarchyItem]]:
return [TYPE_HIERARCHY_ITEM]

@self.server.feature(lsp.TYPE_HIERARCHY_SUBTYPES)
def f3(
params: lsp.TypeHierarchySubtypesParams,
) -> Optional[List[lsp.TypeHierarchyItem]]:
return [TYPE_HIERARCHY_ITEM]


@ConfiguredLS.decorate()
def test_capabilities(client_server):
_, server = client_server
capabilities = server.server_capabilities
assert capabilities.type_hierarchy_provider


@ConfiguredLS.decorate()
def test_type_hierarchy_prepare_return_list(client_server):
client, _ = client_server
response = client.lsp.send_request(
lsp.TEXT_DOCUMENT_PREPARE_TYPE_HIERARCHY,
lsp.TypeHierarchyPrepareParams(
text_document=lsp.TextDocumentIdentifier(uri="file://return.list"),
position=lsp.Position(line=0, character=0),
),
).result()

check_type_hierarchy_item_response(response[0])


@ConfiguredLS.decorate()
def test_type_hierarchy_prepare_return_none(client_server):
client, _ = client_server
response = client.lsp.send_request(
lsp.TEXT_DOCUMENT_PREPARE_TYPE_HIERARCHY,
lsp.TypeHierarchyPrepareParams(
text_document=lsp.TextDocumentIdentifier(uri="file://return.none"),
position=lsp.Position(line=0, character=0),
),
).result()

assert response is None


@ConfiguredLS.decorate()
def test_type_hierarchy_supertypes(client_server):
client, _ = client_server
response = client.lsp.send_request(
lsp.TYPE_HIERARCHY_SUPERTYPES,
lsp.TypeHierarchySupertypesParams(item=TYPE_HIERARCHY_ITEM),
).result()

check_type_hierarchy_item_response(response[0])


@ConfiguredLS.decorate()
def test_type_hierarchy_subtypes(client_server):
client, _ = client_server
response = client.lsp.send_request(
lsp.TYPE_HIERARCHY_SUBTYPES,
lsp.TypeHierarchySubtypesParams(item=TYPE_HIERARCHY_ITEM),
).result()

check_type_hierarchy_item_response(response[0])