Files
sourcekit-lsp/Tests/LanguageServerProtocolJSONRPCTests/ConnectionTests.swift
Saleem Abdulrasool cc702e2d16 LanguageServerProtocolJSONRPCTests: add Windows stubs
This set of changes is the last set of changes required to build the
entire test suite on Windows.  Although the tests do not yet fully pass,
this is a prerequisite for getting the test suite passing.
2020-11-16 09:07:30 -08:00

278 lines
8.7 KiB
Swift

//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2020 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import LanguageServerProtocol
import LanguageServerProtocolJSONRPC
import LSPTestSupport
import XCTest
#if os(Windows)
import WinSDK
#endif
// Workaround ambiguity with Foundation.
typealias Notification = LanguageServerProtocol.Notification
class ConnectionTests: XCTestCase {
var connection: TestJSONRPCConnection! = nil
override func setUp() {
connection = TestJSONRPCConnection()
connection.client.allowUnexpectedNotification = false
}
override func tearDown() {
connection.close()
}
func testRound() {
let enc = try! JSONEncoder().encode(EchoRequest(string: "a/b"))
let dec = try! JSONDecoder().decode(EchoRequest.self, from: enc)
XCTAssertEqual("a/b", dec.string)
}
func testEcho() {
let client = connection.client
let expectation = self.expectation(description: "response received")
_ = client.send(EchoRequest(string: "hello!")) { resp in
XCTAssertEqual(try! resp.get(), "hello!")
expectation.fulfill()
}
waitForExpectations(timeout: 10)
}
func testMessageBuffer() {
let client = connection.client
let clientConnection = connection.clientConnection
let expectation = self.expectation(description: "note received")
client.handleNextNotification { (note: Notification<EchoNotification>) in
XCTAssertEqual(note.params.string, "hello!")
expectation.fulfill()
}
let note1 = try! JSONEncoder().encode(JSONRPCMessage.notification(EchoNotification(string: "hello!")))
let note2 = try! JSONEncoder().encode(JSONRPCMessage.notification(EchoNotification(string: "no way!")))
let note1Str: String = "Content-Length: \(note1.count)\r\n\r\n\(String(data: note1, encoding: .utf8)!)"
let note2Str: String = "Content-Length: \(note2.count)\r\n\r\n\(String(data: note2, encoding: .utf8)!)"
for b in note1Str.utf8.dropLast() {
clientConnection.send(_rawData: [b].withUnsafeBytes { DispatchData(bytes: $0) })
}
clientConnection.send(_rawData: [note1Str.utf8.last!, note2Str.utf8.first!].withUnsafeBytes { DispatchData(bytes: $0) })
waitForExpectations(timeout: 10)
let expectation2 = self.expectation(description: "note received")
client.handleNextNotification { (note: Notification<EchoNotification>) in
XCTAssertEqual(note.params.string, "no way!")
expectation2.fulfill()
}
for b in note2Str.utf8.dropFirst() {
clientConnection.send(_rawData: [b].withUnsafeBytes { DispatchData(bytes: $0) })
}
waitForExpectations(timeout: 10)
// Close the connection before accessing _requestBuffer, which ensures we don't race.
connection.serverConnection.close()
XCTAssertEqual(connection.serverConnection._requestBuffer, [])
}
func testEchoError() {
let client = connection.client
let expectation = self.expectation(description: "response received 1")
let expectation2 = self.expectation(description: "response received 2")
_ = client.send(EchoError(code: nil)) { resp in
XCTAssertEqual(try! resp.get(), VoidResponse())
expectation.fulfill()
}
_ = client.send(EchoError(code: .unknownErrorCode, message: "hey!")) { resp in
XCTAssertEqual(resp, LSPResult<VoidResponse>.failure(ResponseError(code: .unknownErrorCode, message: "hey!")))
expectation2.fulfill()
}
waitForExpectations(timeout: 10)
}
func testEchoNote() {
let client = connection.client
let expectation = self.expectation(description: "note received")
client.handleNextNotification { (note: Notification<EchoNotification>) in
XCTAssertEqual(note.params.string, "hello!")
expectation.fulfill()
}
client.send(EchoNotification(string: "hello!"))
waitForExpectations(timeout: 10)
}
func testUnknownRequest() {
let client = connection.client
let expectation = self.expectation(description: "response received")
struct UnknownRequest: RequestType {
static let method: String = "unknown"
typealias Response = VoidResponse
}
_ = client.send(UnknownRequest()) { result in
XCTAssertEqual(result, .failure(ResponseError.methodNotFound("unknown")))
expectation.fulfill()
}
waitForExpectations(timeout: 10)
}
func testUnknownNotification() {
let client = connection.client
let expectation = self.expectation(description: "note received")
struct UnknownNote: NotificationType {
static let method: String = "unknown"
}
client.send(UnknownNote())
// Nothing bad should happen; check that the next request works.
_ = client.send(EchoRequest(string: "hello!")) { resp in
XCTAssertEqual(try! resp.get(), "hello!")
expectation.fulfill()
}
waitForExpectations(timeout: 10)
}
func testUnexpectedResponse() {
let client = connection.client
let expectation = self.expectation(description: "response received")
// response to unknown request
connection.clientConnection.sendReply(.success(VoidResponse()), id: .string("unknown"))
// Nothing bad should happen; check that the next request works.
_ = client.send(EchoRequest(string: "hello!")) { resp in
XCTAssertEqual(try! resp.get(), "hello!")
expectation.fulfill()
}
waitForExpectations(timeout: 10)
}
func testSendAfterClose() {
let client = connection.client
let expectation = self.expectation(description: "note received")
connection.clientConnection.close()
client.send(EchoNotification(string: "hi"))
_ = client.send(EchoRequest(string: "yo")) { result in
XCTAssertEqual(result, .failure(ResponseError.cancelled))
expectation.fulfill()
}
connection.clientConnection.sendReply(.success(VoidResponse()), id: .number(1))
connection.clientConnection.close()
connection.clientConnection.close()
waitForExpectations(timeout: 10)
}
func testSendBeforeClose() {
let client = connection.client
let server = connection.server
let expectation = self.expectation(description: "received notification")
client.handleNextNotification { (note: Notification<EchoNotification>) in
expectation.fulfill()
}
server.client.send(EchoNotification(string: "about to close!"))
connection.serverConnection.close()
waitForExpectations(timeout: 10)
}
func testSendSynchronouslyBeforeClose() {
let client = connection.client
let expectation = self.expectation(description: "received notification")
client.handleNextNotification { (note: Notification<EchoNotification>) in
expectation.fulfill()
}
let notification = EchoNotification(string: "about to close!")
connection.serverConnection._send(.notification(notification), async: false)
connection.serverConnection.close()
waitForExpectations(timeout: 10)
}
/// We can explicitly close a connection, but the connection also
/// automatically closes itself if the pipe is closed (or has an error).
/// DispatchIO can make its callback at any time, so this test is to try to
/// provoke a race between those things and ensure the closeHandler is called
/// exactly once.
func testCloseRace() {
for _ in 0...100 {
let to = Pipe()
let from = Pipe()
let expectation = self.expectation(description: "closed")
expectation.assertForOverFulfill = true
let conn = JSONRPCConnection(
protocol: MessageRegistry(requests: [], notifications: []),
inFD: to.fileHandleForReading,
outFD: from.fileHandleForWriting)
final class DummyHandler: MessageHandler {
func handle<N: NotificationType>(_: N, from: ObjectIdentifier) {}
func handle<R: RequestType>(_: R, id: RequestID, from: ObjectIdentifier, reply: @escaping (LSPResult<R.Response>) -> Void) {}
}
conn.start(receiveHandler: DummyHandler(), closeHandler: {
// We get an error from XCTest if this is fulfilled more than once.
expectation.fulfill()
// FIXME: keep the pipes alive until we close the connection. This
// should be fixed systemically.
withExtendedLifetime((to, from)) {}
})
to.fileHandleForWriting.closeFile()
#if os(Windows)
// 1 ms was chosen for simplicity.
_ = Sleep(1)
#else
// 100 us was chosen empirically to encourage races.
usleep(100)
#endif
conn.close()
waitForExpectations(timeout: 10)
}
}
}