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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
|
from setup_tests import run_request, test_dir, write_rpc_notification, write_rpc_request
def test_init():
def check_return(result_dict):
# Expected capabilities
# {
# "completionProvider": {
# "resolveProvider": false,
# "triggerCharacters": ["%"]
# },
# "definitionProvider": true,
# "documentSymbolProvider": true,
# "referencesProvider": True,
# "hoverProvider": true,
# "textDocumentSync": 2
# }
#
assert "capabilities" in result_dict
assert result_dict["capabilities"]["textDocumentSync"] == 2
assert result_dict["capabilities"]["definitionProvider"] is True
assert result_dict["capabilities"]["documentSymbolProvider"] is True
assert result_dict["capabilities"]["hoverProvider"] is True
assert result_dict["capabilities"]["referencesProvider"] is True
assert (
result_dict["capabilities"]["completionProvider"]["resolveProvider"]
is False
)
assert (
result_dict["capabilities"]["completionProvider"]["triggerCharacters"][0]
== "%"
)
#
string = write_rpc_request(1, "initialize", {"rootPath": str(test_dir)})
errcode, results = run_request(string)
#
assert errcode == 0
check_return(results[0])
def test_logger():
"""Test the logger"""
string = write_rpc_request(1, "initialize", {"rootPath": str(test_dir)})
errcode, results = run_request(string, ["--debug_log"])
assert errcode == 0
assert results[1]["type"] == 3
assert results[1]["message"] == "fortls debugging enabled"
def test_open():
string = write_rpc_request(1, "initialize", {"rootPath": str(test_dir)})
file_path = str(test_dir / "subdir" / "test_free.f90")
string += write_rpc_notification(
"textDocument/didOpen", {"textDocument": {"uri": file_path}}
)
errcode, results = run_request(string, fortls_args=["--disable_diagnostics"])
#
assert errcode == 0
assert len(results) == 1
def test_change():
string = write_rpc_request(1, "initialize", {"rootPath": str(test_dir)})
file_path = test_dir / "subdir" / "test_unknown.f90"
string += write_rpc_notification(
"textDocument/didOpen", {"textDocument": {"uri": str(file_path)}}
)
string += write_rpc_notification(
"textDocument/didChange",
{
"textDocument": {"uri": str(file_path)},
"contentChanges": [
{
"text": "module test_unkown\nend module test_unknown\n",
"range": {
"start": {"line": 0, "character": 0},
"end": {"line": 0, "character": 0},
},
}
],
},
)
string += write_rpc_request(
2, "textDocument/documentSymbol", {"textDocument": {"uri": str(file_path)}}
)
file_path = test_dir / "subdir" / "test_free.f90"
string += write_rpc_notification(
"textDocument/didChange",
{
"textDocument": {"uri": str(file_path)},
"contentChanges": [
{
"text": " unicode test",
"range": {
"start": {"line": 3, "character": 3},
"end": {"line": 3, "character": 3},
},
},
{
"text": "",
"range": {
"start": {"line": 6, "character": 0},
"end": {"line": 31, "character": 0},
},
},
{
"text": "",
"range": {
"start": {"line": 7, "character": 0},
"end": {"line": 39, "character": 0},
},
},
],
},
)
string += write_rpc_request(
3, "textDocument/documentSymbol", {"textDocument": {"uri": str(file_path)}}
)
errcode, results = run_request(string, fortls_args=["--disable_diagnostics"])
#
assert errcode == 0
assert len(results) == 3
assert len(results[1]) == 1
assert len(results[2]) == 5
def test_symbols():
def check_return(result_array):
# Expected objects
objs = (
["test_free", 2, 0, 81],
["scale_type", 5, 4, 6],
["val", 13, 5, 5],
["vector", 5, 8, 16],
["n", 13, 9, 9],
["v", 13, 10, 10],
["bound_nopass", 6, 11, 11],
["create", 6, 13, 13],
["norm", 6, 14, 14],
["bound_pass", 6, 15, 15],
["scaled_vector", 5, 18, 23],
["scale", 13, 19, 19],
["set_scale", 6, 21, 21],
["norm", 6, 22, 22],
["fort_wrap", 11, 26, 29],
["vector_create", 12, 35, 41],
["vector_norm", 12, 43, 47],
["scaled_vector_set", 12, 49, 53],
["scaled_vector_norm", 12, 55, 59],
["unscaled_norm", 12, 61, 65],
["test_sig_Sub", 12, 67, 70],
["bound_pass", 12, 72, 80],
)
assert len(result_array) == len(objs)
for i, obj in enumerate(objs):
assert result_array[i]["name"] == obj[0]
assert result_array[i]["kind"] == obj[1]
assert result_array[i]["location"]["range"]["start"]["line"] == obj[2]
assert result_array[i]["location"]["range"]["end"]["line"] == obj[3]
#
string = write_rpc_request(1, "initialize", {"rootPath": str(test_dir)})
file_path = test_dir / "subdir" / "test_free.f90"
string += write_rpc_request(
2, "textDocument/documentSymbol", {"textDocument": {"uri": str(file_path)}}
)
errcode, results = run_request(string)
#
assert errcode == 0
check_return(results[1])
def test_workspace_symbols():
def check_return(result_array):
# Expected objects
objs = (
["test", 6, 7],
["test_abstract", 2, 0],
["test_associate_block", 2, 0],
["test_free", 2, 0],
["test_gen_type", 5, 1],
["test_generic", 2, 0],
["test_inherit", 2, 0],
["test_int", 2, 0],
["test_mod", 2, 0],
["test_nan", 2, 0],
["test_nonint_mod", 2, 0],
["test_preproc_keywords", 2, 0],
["test_private", 2, 8],
["test_program", 2, 0],
["test_rename_sub", 6, 9],
["test_select", 2, 0],
["test_select_sub", 6, 16],
["test_sig_Sub", 6, 67],
["test_str1", 13, 5],
["test_str2", 13, 5],
["test_sub", 6, 8],
["test_vis_mod", 2, 0],
)
assert len(result_array) == len(objs)
for i, obj in enumerate(objs):
assert result_array[i]["name"] == obj[0]
assert result_array[i]["kind"] == obj[1]
assert result_array[i]["location"]["range"]["start"]["line"] == obj[2]
#
string = write_rpc_request(1, "initialize", {"rootPath": str(test_dir)})
string += write_rpc_request(2, "workspace/symbol", {"query": "test"})
errcode, results = run_request(string)
#
assert errcode == 0
check_return(results[1])
|