2020-06-30 13:46:43 +01:00
|
|
|
const std = @import("std");
|
|
|
|
const headerPkg = @import("header");
|
|
|
|
|
|
|
|
const suffix = if (std.builtin.os.tag == .windows) ".exe" else "";
|
|
|
|
const allocator = std.heap.page_allocator;
|
|
|
|
|
2021-03-10 08:29:25 +00:00
|
|
|
const initialize_message =
|
|
|
|
\\{"jsonrpc":"2.0","id":0,"method":"initialize","params":{"processId":6896,"clientInfo":{"name":"vscode","version":"1.46.1"},"rootPath":null,"rootUri":null,"capabilities":{"workspace":{"applyEdit":true,"workspaceEdit":{"documentChanges":true,"resourceOperations":["create","rename","delete"],"failureHandling":"textOnlyTransactional"},"didChangeConfiguration":{"dynamicRegistration":true},"didChangeWatchedFiles":{"dynamicRegistration":true},"symbol":{"dynamicRegistration":true,"symbolKind":{"valueSet":[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]},"tagSupport":{"valueSet":[1]}},"executeCommand":{"dynamicRegistration":true},"configuration":true,"workspaceFolders":true},"textDocument":{"publishDiagnostics":{"relatedInformation":true,"versionSupport":false,"tagSupport":{"valueSet":[1,2]},"complexDiagnosticCodeSupport":true},"synchronization":{"dynamicRegistration":true,"willSave":true,"willSaveWaitUntil":true,"didSave":true},"completion":{"dynamicRegistration":true,"contextSupport":true,"completionItem":{"snippetSupport":true,"commitCharactersSupport":true,"documentationFormat":["markdown","plaintext"],"deprecatedSupport":true,"preselectSupport":true,"tagSupport":{"valueSet":[1]},"insertReplaceSupport":true},"completionItemKind":{"valueSet":[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]}},"hover":{"dynamicRegistration":true,"contentFormat":["markdown","plaintext"]},"signatureHelp":{"dynamicRegistration":true,"signatureInformation":{"documentationFormat":["markdown","plaintext"],"parameterInformation":{"labelOffsetSupport":true}},"contextSupport":true},"definition":{"dynamicRegistration":true,"linkSupport":true},"references":{"dynamicRegistration":true},"documentHighlight":{"dynamicRegistration":true},"documentSymbol":{"dynamicRegistration":true,"symbolKind":{"valueSet":[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]},"hierarchicalDocumentSymbolSupport":true,"tagSupport":{"valueSet":[1]}},"codeAction":{"dynamicRegistration":true,"isPreferredSupport":true,"codeActionLiteralSupport":{"codeActionKind":{"valueSet":["","quickfix","refactor","refactor.extract","refactor.inline","refactor.rewrite","source","source.organizeImports"]}}},"codeLens":{"dynamicRegistration":true},"formatting":{"dynamicRegistration":true},"rangeFormatting":{"dynamicRegistration":true},"onTypeFormatting":{"dynamicRegistration":true},"rename":{"dynamicRegistration":true,"prepareSupport":true},"documentLink":{"dynamicRegistration":true,"tooltipSupport":true},"typeDefinition":{"dynamicRegistration":true,"linkSupport":true},"implementation":{"dynamicRegistration":true,"linkSupport":true},"colorProvider":{"dynamicRegistration":true},"foldingRange":{"dynamicRegistration":true,"rangeLimit":5000,"lineFoldingOnly":true},"declaration":{"dynamicRegistration":true,"linkSupport":true},"selectionRange":{"dynamicRegistration":true},"semanticTokens":{"dynamicRegistration":true,"tokenTypes":["comment","keyword","number","regexp","operator","namespace","type","struct","class","interface","enum","typeParameter","function","member","macro","variable","parameter","property","label"],"tokenModifiers":["declaration","documentation","static","abstract","deprecated","readonly"]}},"window":{"workDoneProgress":true}},"trace":"off","workspaceFolders":[{"uri":"file://./tests", "name":"root"}]}}
|
2020-06-30 13:46:43 +01:00
|
|
|
;
|
|
|
|
|
2021-03-10 08:29:25 +00:00
|
|
|
const initialized_message =
|
|
|
|
\\{"jsonrpc":"2.0","method":"initialized","params":{}}
|
2020-06-30 13:46:43 +01:00
|
|
|
;
|
|
|
|
|
2021-03-10 08:29:25 +00:00
|
|
|
const shutdown_message =
|
|
|
|
\\{"jsonrpc":"2.0", "id":"STDWN", "method":"shutdown","params":{}}
|
2020-06-30 13:46:43 +01:00
|
|
|
;
|
|
|
|
|
2020-07-02 12:03:24 +01:00
|
|
|
fn sendRequest(req: []const u8, process: *std.ChildProcess) !void {
|
2020-06-30 13:46:43 +01:00
|
|
|
try process.stdin.?.writer().print("Content-Length: {}\r\n\r\n", .{req.len});
|
|
|
|
try process.stdin.?.writeAll(req);
|
|
|
|
}
|
|
|
|
|
2020-07-16 20:04:55 +01:00
|
|
|
fn readResponses(process: *std.ChildProcess, expected_responses: anytype) !void {
|
2020-07-03 11:56:57 +01:00
|
|
|
var seen = std.mem.zeroes([expected_responses.len]bool);
|
2020-06-30 13:46:43 +01:00
|
|
|
while (true) {
|
|
|
|
const header = headerPkg.readRequestHeader(allocator, process.stdout.?.reader()) catch |err| {
|
2021-03-10 08:29:25 +00:00
|
|
|
switch (err) {
|
2020-06-30 13:46:43 +01:00
|
|
|
error.EndOfStream => break,
|
|
|
|
else => return err,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
defer header.deinit(allocator);
|
|
|
|
|
|
|
|
var stdout_mem = try allocator.alloc(u8, header.content_length);
|
|
|
|
defer allocator.free(stdout_mem);
|
|
|
|
|
|
|
|
const stdout_bytes = stdout_mem[0..try process.stdout.?.reader().readAll(stdout_mem)];
|
2020-07-03 11:56:57 +01:00
|
|
|
inline for (expected_responses) |resp, idx| {
|
|
|
|
if (std.mem.eql(u8, resp, stdout_bytes)) {
|
|
|
|
if (seen[idx]) @panic("Expected response already received.");
|
|
|
|
seen[idx] = true;
|
|
|
|
}
|
|
|
|
}
|
2021-01-04 17:51:26 +00:00
|
|
|
std.debug.print("GOT MESSAGE: {s}\n", .{stdout_bytes});
|
2020-06-30 13:46:43 +01:00
|
|
|
}
|
2020-07-03 11:56:57 +01:00
|
|
|
|
|
|
|
comptime var idx = 0;
|
|
|
|
inline while (idx < expected_responses.len) : (idx += 1) {
|
|
|
|
if (!seen[idx]) {
|
2021-01-04 17:51:26 +00:00
|
|
|
std.debug.print("Response `{s}` not received.", .{expected_responses[idx]});
|
2020-07-03 11:56:57 +01:00
|
|
|
return error.ExpectedResponse;
|
|
|
|
}
|
|
|
|
}
|
2020-06-30 13:46:43 +01:00
|
|
|
}
|
|
|
|
|
2020-07-02 12:03:24 +01:00
|
|
|
fn startZls() !*std.ChildProcess {
|
2021-03-10 08:29:25 +00:00
|
|
|
var process = try std.ChildProcess.init(&[_][]const u8{"zig-cache/bin/zls" ++ suffix}, allocator);
|
2020-06-30 13:46:43 +01:00
|
|
|
process.stdin_behavior = .Pipe;
|
|
|
|
process.stdout_behavior = .Pipe;
|
|
|
|
process.stderr_behavior = std.ChildProcess.StdIo.Inherit;
|
|
|
|
|
|
|
|
process.spawn() catch |err| {
|
2020-09-01 06:58:53 +01:00
|
|
|
std.log.debug("Failed to spawn zls process, error: {}\n", .{err});
|
2020-06-30 13:46:43 +01:00
|
|
|
return err;
|
|
|
|
};
|
|
|
|
|
2020-07-02 12:03:24 +01:00
|
|
|
return process;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn waitNoError(process: *std.ChildProcess) !void {
|
|
|
|
const result = try process.wait();
|
|
|
|
switch (result) {
|
|
|
|
.Exited => |code| if (code == 0) {
|
|
|
|
return;
|
|
|
|
},
|
|
|
|
else => {},
|
|
|
|
}
|
|
|
|
return error.ShutdownWithError;
|
|
|
|
}
|
|
|
|
|
2020-07-16 20:04:55 +01:00
|
|
|
fn consumeOutputAndWait(process: *std.ChildProcess, expected_responses: anytype) !void {
|
2020-07-02 12:03:24 +01:00
|
|
|
process.stdin.?.close();
|
|
|
|
process.stdin = null;
|
2020-07-03 11:56:57 +01:00
|
|
|
try readResponses(process, expected_responses);
|
2020-07-02 12:03:24 +01:00
|
|
|
try waitNoError(process);
|
|
|
|
process.deinit();
|
|
|
|
}
|
|
|
|
|
|
|
|
test "Open file, ask for semantic tokens" {
|
|
|
|
var process = try startZls();
|
2020-06-30 13:46:43 +01:00
|
|
|
try sendRequest(initialize_message, process);
|
|
|
|
try sendRequest(initialized_message, process);
|
|
|
|
|
2021-03-10 08:29:25 +00:00
|
|
|
const new_file_req =
|
|
|
|
\\{"jsonrpc":"2.0","method":"textDocument/didOpen","params":{"textDocument":{"uri":"file://./tests/test.zig","languageId":"zig","version":420,"text":"const std = @import(\"std\");"}}}
|
2020-06-30 13:46:43 +01:00
|
|
|
;
|
|
|
|
try sendRequest(new_file_req, process);
|
2021-03-10 08:29:25 +00:00
|
|
|
const sem_toks_req =
|
|
|
|
\\{"jsonrpc":"2.0","id":2,"method":"textDocument/semanticTokens/full","params":{"textDocument":{"uri":"file://./tests/test.zig"}}}
|
2020-06-30 13:46:43 +01:00
|
|
|
;
|
|
|
|
try sendRequest(sem_toks_req, process);
|
|
|
|
try sendRequest(shutdown_message, process);
|
2020-07-03 11:56:57 +01:00
|
|
|
try consumeOutputAndWait(process, .{
|
2020-11-06 09:03:21 +00:00
|
|
|
\\{"jsonrpc":"2.0","id":0,"result":{"data":[0,0,5,7,0,0,6,3,0,33,0,4,1,11,0,0,2,7,12,0,0,8,5,9,0]}}
|
2020-07-03 11:56:57 +01:00
|
|
|
});
|
2020-07-02 12:03:24 +01:00
|
|
|
}
|
2020-06-30 13:46:43 +01:00
|
|
|
|
2020-07-02 12:03:24 +01:00
|
|
|
test "Requesting a completion in an empty file" {
|
|
|
|
var process = try startZls();
|
|
|
|
try sendRequest(initialize_message, process);
|
|
|
|
try sendRequest(initialized_message, process);
|
2020-06-30 13:46:43 +01:00
|
|
|
|
2021-03-10 08:29:25 +00:00
|
|
|
const new_file_req =
|
|
|
|
\\{"jsonrpc":"2.0","method":"textDocument/didOpen","params":{"textDocument":{"uri":"file:///test.zig","languageId":"zig","version":420,"text":""}}}
|
2020-07-02 12:03:24 +01:00
|
|
|
;
|
|
|
|
try sendRequest(new_file_req, process);
|
2021-03-10 08:29:25 +00:00
|
|
|
const completion_req =
|
|
|
|
\\{"jsonrpc":"2.0","id":2,"method":"textDocument/completion","params":{"textDocument":{"uri":"file:///test.zig"}, "position":{"line":0,"character":0}}}
|
2020-07-02 12:03:24 +01:00
|
|
|
;
|
|
|
|
try sendRequest(completion_req, process);
|
|
|
|
try sendRequest(shutdown_message, process);
|
2020-07-03 11:56:57 +01:00
|
|
|
try consumeOutputAndWait(process, .{});
|
2020-07-02 12:03:24 +01:00
|
|
|
}
|
2020-06-30 13:46:43 +01:00
|
|
|
|
2020-07-02 12:03:24 +01:00
|
|
|
test "Requesting a completion with no trailing whitespace" {
|
|
|
|
var process = try startZls();
|
|
|
|
try sendRequest(initialize_message, process);
|
|
|
|
try sendRequest(initialized_message, process);
|
2020-06-30 13:46:43 +01:00
|
|
|
|
2021-03-10 08:29:25 +00:00
|
|
|
const new_file_req =
|
|
|
|
\\{"jsonrpc":"2.0","method":"textDocument/didOpen","params":{"textDocument":{"uri":"file:///test.zig","languageId":"zig","version":420,"text":"const std = @import(\"std\");\nc"}}}
|
2020-07-02 12:03:24 +01:00
|
|
|
;
|
|
|
|
try sendRequest(new_file_req, process);
|
2021-03-10 08:29:25 +00:00
|
|
|
const completion_req =
|
|
|
|
\\{"jsonrpc":"2.0","id":2,"method":"textDocument/completion","params":{"textDocument":{"uri":"file:///test.zig"}, "position":{"line":1,"character":1}}}
|
2020-07-02 12:03:24 +01:00
|
|
|
;
|
|
|
|
try sendRequest(completion_req, process);
|
|
|
|
try sendRequest(shutdown_message, process);
|
2020-07-03 11:56:57 +01:00
|
|
|
try consumeOutputAndWait(process, .{
|
2021-04-05 10:05:11 +01:00
|
|
|
\\{"jsonrpc":"2.0","id":2,"result":{"isIncomplete":false,"items":[{"label":"std","kind":21,"textEdit":null,"filterText":null,"insertText":"std","insertTextFormat":1,"detail":"const std = @import(\"std\")","documentation":null}]}}
|
2020-07-03 11:56:57 +01:00
|
|
|
});
|
2020-06-30 13:46:43 +01:00
|
|
|
}
|
2020-07-02 12:03:24 +01:00
|
|
|
|
2021-03-10 08:29:25 +00:00
|
|
|
const initialize_message_offs =
|
|
|
|
\\{"jsonrpc":"2.0","id":0,"method":"initialize","params":{"processId":6896,"clientInfo":{"name":"vscode","version":"1.46.1"},"rootPath":null,"rootUri":null,"capabilities":{"offsetEncoding":["utf-16", "utf-8"],"workspace":{"applyEdit":true,"workspaceEdit":{"documentChanges":true,"resourceOperations":["create","rename","delete"],"failureHandling":"textOnlyTransactional"},"didChangeConfiguration":{"dynamicRegistration":true},"didChangeWatchedFiles":{"dynamicRegistration":true},"symbol":{"dynamicRegistration":true,"symbolKind":{"valueSet":[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]},"tagSupport":{"valueSet":[1]}},"executeCommand":{"dynamicRegistration":true},"configuration":true,"workspaceFolders":true},"textDocument":{"publishDiagnostics":{"relatedInformation":true,"versionSupport":false,"tagSupport":{"valueSet":[1,2]},"complexDiagnosticCodeSupport":true},"synchronization":{"dynamicRegistration":true,"willSave":true,"willSaveWaitUntil":true,"didSave":true},"completion":{"dynamicRegistration":true,"contextSupport":true,"completionItem":{"snippetSupport":true,"commitCharactersSupport":true,"documentationFormat":["markdown","plaintext"],"deprecatedSupport":true,"preselectSupport":true,"tagSupport":{"valueSet":[1]},"insertReplaceSupport":true},"completionItemKind":{"valueSet":[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]}},"hover":{"dynamicRegistration":true,"contentFormat":["markdown","plaintext"]},"signatureHelp":{"dynamicRegistration":true,"signatureInformation":{"documentationFormat":["markdown","plaintext"],"parameterInformation":{"labelOffsetSupport":true}},"contextSupport":true},"definition":{"dynamicRegistration":true,"linkSupport":true},"references":{"dynamicRegistration":true},"documentHighlight":{"dynamicRegistration":true},"documentSymbol":{"dynamicRegistration":true,"symbolKind":{"valueSet":[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]},"hierarchicalDocumentSymbolSupport":true,"tagSupport":{"valueSet":[1]}},"codeAction":{"dynamicRegistration":true,"isPreferredSupport":true,"codeActionLiteralSupport":{"codeActionKind":{"valueSet":["","quickfix","refactor","refactor.extract","refactor.inline","refactor.rewrite","source","source.organizeImports"]}}},"codeLens":{"dynamicRegistration":true},"formatting":{"dynamicRegistration":true},"rangeFormatting":{"dynamicRegistration":true},"onTypeFormatting":{"dynamicRegistration":true},"rename":{"dynamicRegistration":true,"prepareSupport":true},"documentLink":{"dynamicRegistration":true,"tooltipSupport":true},"typeDefinition":{"dynamicRegistration":true,"linkSupport":true},"implementation":{"dynamicRegistration":true,"linkSupport":true},"colorProvider":{"dynamicRegistration":true},"foldingRange":{"dynamicRegistration":true,"rangeLimit":5000,"lineFoldingOnly":true},"declaration":{"dynamicRegistration":true,"linkSupport":true},"selectionRange":{"dynamicRegistration":true},"semanticTokens":{"dynamicRegistration":true,"tokenTypes":["comment","keyword","number","regexp","operator","namespace","type","struct","class","interface","enum","typeParameter","function","member","macro","variable","parameter","property","label"],"tokenModifiers":["declaration","documentation","static","abstract","deprecated","readonly"]}},"window":{"workDoneProgress":true}},"trace":"off","workspaceFolders":null}}
|
2020-07-03 10:00:00 +01:00
|
|
|
;
|
|
|
|
|
|
|
|
test "Requesting utf-8 offset encoding" {
|
|
|
|
var process = try startZls();
|
|
|
|
try sendRequest(initialize_message_offs, process);
|
|
|
|
try sendRequest(initialized_message, process);
|
|
|
|
|
|
|
|
try sendRequest(shutdown_message, process);
|
2020-07-03 11:56:57 +01:00
|
|
|
try consumeOutputAndWait(process, .{
|
2021-04-03 17:05:55 +01:00
|
|
|
\\{"jsonrpc":"2.0","id":0,"result":{"offsetEncoding":"utf-8","capabilities":{"signatureHelpProvider":{"triggerCharacters":["("],"retriggerCharacters":[","]},"textDocumentSync":1,"renameProvider":true,"completionProvider":{"resolveProvider":false,"triggerCharacters":[".",":","@"]},"documentHighlightProvider":false,"hoverProvider":true,"codeActionProvider":false,"declarationProvider":true,"definitionProvider":true,"typeDefinitionProvider":true,"implementationProvider":false,"referencesProvider":true,"documentSymbolProvider":true,"colorProvider":false,"documentFormattingProvider":true,"documentRangeFormattingProvider":false,"foldingRangeProvider":false,"selectionRangeProvider":false,"workspaceSymbolProvider":false,"rangeProvider":false,"documentProvider":true,"workspace":{"workspaceFolders":{"supported":false,"changeNotifications":false}},"semanticTokensProvider":{"full":true,"range":false,"legend":{"tokenTypes":["type","parameter","variable","enumMember","field","errorTag","function","keyword","comment","string","number","operator","builtin","label","keywordLiteral"],"tokenModifiers":["namespace","struct","enum","union","opaque","declaration","async","documentation","generic"]}}},"serverInfo":{"name":"zls","version":"0.1.0"}}}
|
2020-07-03 11:56:57 +01:00
|
|
|
});
|
2020-07-03 10:00:00 +01:00
|
|
|
}
|