summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/test/clangd/execute-command.test
diff options
context:
space:
mode:
authorSam McCall <sam.mccall@gmail.com>2018-10-17 07:32:05 +0000
committerSam McCall <sam.mccall@gmail.com>2018-10-17 07:32:05 +0000
commitdc8f3cf8b0061e34ddda9f90d1db176b4a7c2d93 (patch)
tree29b91bb8a92a1374027e64a4f560b1afa2001edd /clang-tools-extra/test/clangd/execute-command.test
parentff3ab33ec89042ed93bc8488b6c6971a1b4a9cf1 (diff)
downloadbcm5719-llvm-dc8f3cf8b0061e34ddda9f90d1db176b4a7c2d93.tar.gz
bcm5719-llvm-dc8f3cf8b0061e34ddda9f90d1db176b4a7c2d93.zip
[clangd] Refactor JSON-over-stdin/stdout code into Transport abstraction. (re-land r344620)
Summary: This paves the way for alternative transports (mac XPC, maybe messagepack?), and also generally improves layering: testing ClangdLSPServer becomes less of a pipe dream, we split up the JSONOutput monolith, etc. This isn't a final state, much of what remains in JSONRPCDispatcher can go away, handlers can call reply() on the transport directly, JSONOutput can be renamed to StreamLogger and removed, etc. But this patch is sprawling already. The main observable change (see tests) is that hitting EOF on input is now an error: the client should send the 'exit' notification. This is defensible: the protocol doesn't spell this case out. Reproducing the current behavior for all combinations of shutdown/exit/EOF clutters interfaces. We can iterate on this if desired. Reviewers: jkorous, ioeric, hokein Subscribers: mgorny, ilya-biryukov, MaskRay, arphaman, kadircet, cfe-commits Differential Revision: https://reviews.llvm.org/D53286 llvm-svn: 344672
Diffstat (limited to 'clang-tools-extra/test/clangd/execute-command.test')
-rw-r--r--clang-tools-extra/test/clangd/execute-command.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/clang-tools-extra/test/clangd/execute-command.test b/clang-tools-extra/test/clangd/execute-command.test
index 492006fdfab..85d4b9b88d9 100644
--- a/clang-tools-extra/test/clangd/execute-command.test
+++ b/clang-tools-extra/test/clangd/execute-command.test
@@ -62,3 +62,5 @@
{"jsonrpc":"2.0","id":9,"method":"workspace/executeCommand","params":{"arguments":[{"custom":"foo", "changes":{"test:///foo.c":[{"range":{"start":{"line":0,"character":32},"end":{"line":0,"character":32}},"newText":"("},{"range":{"start":{"line":0,"character":37},"end":{"line":0,"character":37}},"newText":")"}]}}],"command":"clangd.applyFix"}}
---
{"jsonrpc":"2.0","id":3,"method":"shutdown"}
+---
+{"jsonrpc":"2.0","method":"exit"}
OpenPOWER on IntegriCloud