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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
|
//===----------------------------------------------------------------------===//
//
// 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 LSPTestSupport
import LanguageServerProtocol
@_spi(Testing) import LanguageServerProtocolJSONRPC
import XCTest
#if os(Windows)
import WinSDK
#endif
class ConnectionTests: XCTestCase {
var connection: TestJSONRPCConnection! = nil
override func setUp() {
connection = TestJSONRPCConnection(allowUnexpectedNotification: false)
}
override func tearDown() {
connection.close()
}
func testRound() throws {
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() async throws {
let client = connection.client
let expectation = self.expectation(description: "response received")
_ = client.send(EchoRequest(string: "hello!")) { resp in
assertNoThrow {
XCTAssertEqual(try resp.get(), "hello!")
}
expectation.fulfill()
}
try await fulfillmentOfOrThrow([expectation])
}
func testMessageBuffer() async throws {
let client = connection.client
let clientConnection = connection.clientToServerConnection
let expectation = self.expectation(description: "notfication received")
await client.appendOneShotNotificationHandler { (notification: EchoNotification) in
XCTAssertEqual(notification.string, "hello!")
expectation.fulfill()
}
let notification1 = try JSONEncoder().encode(JSONRPCMessage.notification(EchoNotification(string: "hello!")))
let notification2 = try JSONEncoder().encode(JSONRPCMessage.notification(EchoNotification(string: "no way!")))
let notification1Str =
"Content-Length: \(notification1.count)\r\n\r\n\(String(data: notification1, encoding: .utf8)!)"
let notfication2Str =
"Content-Length: \(notification2.count)\r\n\r\n\(String(data: notification2, encoding: .utf8)!)"
for b in notification1Str.utf8.dropLast() {
clientConnection.send(_rawData: [b].withUnsafeBytes { DispatchData(bytes: $0) })
}
clientConnection.send(
_rawData: [notification1Str.utf8.last!, notfication2Str.utf8.first!].withUnsafeBytes { DispatchData(bytes: $0) }
)
try await fulfillmentOfOrThrow([expectation])
let expectation2 = self.expectation(description: "notification received")
await client.appendOneShotNotificationHandler { (notification: EchoNotification) in
XCTAssertEqual(notification.string, "no way!")
expectation2.fulfill()
}
for b in notfication2Str.utf8.dropFirst() {
clientConnection.send(_rawData: [b].withUnsafeBytes { DispatchData(bytes: $0) })
}
try await fulfillmentOfOrThrow([expectation2])
// Close the connection before accessing requestBuffer, which ensures we don't race.
connection.serverToClientConnection.close()
XCTAssert(connection.serverToClientConnection.requestBufferIsEmpty)
}
func testEchoError() async throws {
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) -> Void in
do {
assertNoThrow {
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()
}
try await fulfillmentOfOrThrow([expectation, expectation2])
}
func testEchoNotification() async throws {
let client = connection.client
let expectation = self.expectation(description: "notification received")
await client.appendOneShotNotificationHandler { (notification: EchoNotification) in
XCTAssertEqual(notification.string, "hello!")
expectation.fulfill()
}
client.send(EchoNotification(string: "hello!"))
try await fulfillmentOfOrThrow([expectation])
}
func testUnknownRequest() async throws {
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()
}
try await fulfillmentOfOrThrow([expectation])
}
func testUnknownNotification() async throws {
let client = connection.client
let expectation = self.expectation(description: "notification received")
struct UnknownNotification: NotificationType {
static let method: String = "unknown"
}
client.send(UnknownNotification())
// Nothing bad should happen; check that the next request works.
_ = client.send(EchoRequest(string: "hello!")) { resp in
assertNoThrow {
XCTAssertEqual(try resp.get(), "hello!")
}
expectation.fulfill()
}
try await fulfillmentOfOrThrow([expectation])
}
func testUnexpectedResponse() async throws {
let client = connection.client
let expectation = self.expectation(description: "response received")
// response to unknown request
connection.clientToServerConnection.sendReply(.success(VoidResponse()), id: .string("unknown"))
// Nothing bad should happen; check that the next request works.
_ = client.send(EchoRequest(string: "hello!")) { resp in
assertNoThrow {
XCTAssertEqual(try resp.get(), "hello!")
}
expectation.fulfill()
}
try await fulfillmentOfOrThrow([expectation])
}
func testSendAfterClose() async throws {
let client = connection.client
let expectation = self.expectation(description: "notification received")
connection.clientToServerConnection.close()
client.send(EchoNotification(string: "hi"))
_ = client.send(EchoRequest(string: "yo")) { result in
XCTAssertEqual(result, .failure(ResponseError.serverCancelled))
expectation.fulfill()
}
connection.clientToServerConnection.sendReply(.success(VoidResponse()), id: .number(1))
connection.clientToServerConnection.close()
connection.clientToServerConnection.close()
try await fulfillmentOfOrThrow([expectation])
}
func testSendBeforeClose() async throws {
let client = connection.client
let server = connection.server
let expectation = self.expectation(description: "received notification")
await client.appendOneShotNotificationHandler { (notification: EchoNotification) in
expectation.fulfill()
}
server.client.send(EchoNotification(string: "about to close!"))
connection.serverToClientConnection.close()
try await fulfillmentOfOrThrow([expectation])
}
/// 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() async throws {
for _ in 0...100 {
let to = Pipe()
let from = Pipe()
let expectation = self.expectation(description: "closed")
expectation.assertForOverFulfill = true
let conn = JSONRPCConnection(
name: "test",
protocol: MessageRegistry(requests: [], notifications: []),
inFD: to.fileHandleForReading,
outFD: from.fileHandleForWriting
)
final class DummyHandler: MessageHandler {
func handle(_: some NotificationType) {}
func handle<Request: RequestType>(
_ request: Request,
id: RequestID,
reply: @escaping (LSPResult<Request.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()
try await fulfillmentOfOrThrow([expectation])
withExtendedLifetime(conn) {}
}
}
func testMessageWithMissingParameter() async throws {
let expectation = self.expectation(description: "Received ShowMessageNotification")
await connection.client.appendOneShotNotificationHandler { (notification: ShowMessageNotification) in
XCTAssertEqual(notification.type, .error)
expectation.fulfill()
}
let messageContents = """
{
"method": "test_server/echo_note",
"jsonrpc": "2.0",
"params": {}
}
"""
connection.clientToServerConnection.send(message: messageContents)
try await self.fulfillmentOfOrThrow([expectation])
}
}
fileprivate extension JSONRPCConnection {
func send(message: String) {
let messageWithHeader = "Content-Length: \(message.utf8.count)\r\n\r\n\(message)".data(using: .utf8)!
messageWithHeader.withUnsafeBytes { bytes in
send(_rawData: DispatchData(bytes: bytes))
}
}
}
|