| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- // AUTOUPDATE
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/language_server/testdata/text_document/open_duplicate.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/language_server/testdata/text_document/open_duplicate.carbon
- // --- STDIN
- [[@LSP-NOTIFY:textDocument/didOpen:
- "textDocument": {"uri": "file:/test.carbon", "languageId": "carbon",
- "text": "// Empty"}
- ]]
- [[@LSP-NOTIFY:textDocument/didOpen:
- "textDocument": {"uri": "file:/test.carbon", "languageId": "carbon",
- "text": "// Empty"}
- ]]
- [[@LSP-NOTIFY:exit]]
- // --- AUTOUPDATE-SPLIT
- // CHECK:STDERR: /test.carbon: warning: duplicate open file request; updating content [LanguageServerOpenDuplicateFile]
- // CHECK:STDERR:
- // CHECK:STDOUT: Content-Length: 144{{\r}}
- // CHECK:STDOUT: {{\r}}
- // CHECK:STDOUT: {
- // CHECK:STDOUT: "jsonrpc": "2.0",
- // CHECK:STDOUT: "method": "textDocument/publishDiagnostics",
- // CHECK:STDOUT: "params": {
- // CHECK:STDOUT: "diagnostics": [],
- // CHECK:STDOUT: "uri": "file:///test.carbon"
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }Content-Length: 144{{\r}}
- // CHECK:STDOUT: {{\r}}
- // CHECK:STDOUT: {
- // CHECK:STDOUT: "jsonrpc": "2.0",
- // CHECK:STDOUT: "method": "textDocument/publishDiagnostics",
- // CHECK:STDOUT: "params": {
- // CHECK:STDOUT: "diagnostics": [],
- // CHECK:STDOUT: "uri": "file:///test.carbon"
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
|