Files
sourcekit-lsp/Tests/SourceKitLSPTests/RangeFormattingTests.swift
2025-10-31 14:11:11 -07:00

118 lines
3.3 KiB
Swift
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2023 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
//
//===----------------------------------------------------------------------===//
@_spi(SourceKitLSP) import LanguageServerProtocol
@_spi(SourceKitLSP) import SKLogging
import SKTestSupport
import SourceKitLSP
import XCTest
final class RangeFormattingTests: SourceKitLSPTestCase {
func testOnlyFormatsSpecifiedLines() async throws {
let testClient = try await TestSourceKitLSPClient()
let uri = DocumentURI(for: .swift)
let positions = testClient.openDocument(
"""
func foo() {
if let SomeReallyLongVar = Some.More.Stuff(), let a = myfunc() {
1⃣// do stuff2
}
}
""",
uri: uri
)
let response = try await testClient.send(
DocumentRangeFormattingRequest(
textDocument: TextDocumentIdentifier(uri),
range: positions["1"]..<positions["2"],
options: FormattingOptions(tabSize: 2, insertSpaces: true)
)
)
let edits = try XCTUnwrap(response)
XCTAssertEqual(
edits,
[
TextEdit(range: Range(positions["1"]), newText: " ")
]
)
}
func testOnlyFormatsSpecifiedColumns() async throws {
let testClient = try await TestSourceKitLSPClient()
let uri = DocumentURI(for: .swift)
let positions = testClient.openDocument(
"""
func foo() {
if let SomeReallyLongVar 1⃣= 2⃣ 3⃣Some.More.Stuff(), let a = myfunc() {
// do stuff
}
}
""",
uri: uri
)
let response = try await testClient.send(
DocumentRangeFormattingRequest(
textDocument: TextDocumentIdentifier(uri),
range: positions["1"]..<positions["3"],
options: FormattingOptions(tabSize: 2, insertSpaces: true)
)
)
let edits = try XCTUnwrap(response)
XCTAssertEqual(
edits,
[
TextEdit(range: positions["2"]..<positions["3"], newText: "")
]
)
}
func testFormatsMultipleLines() async throws {
let testClient = try await TestSourceKitLSPClient()
let uri = DocumentURI(for: .swift)
let positions = testClient.openDocument(
"""
1⃣func foo() {
2⃣if let SomeReallyLongVar = Some.More.Stuff(), let a = myfunc() {
3⃣// do stuff
4⃣}
}5
""",
uri: uri
)
let response = try await testClient.send(
DocumentRangeFormattingRequest(
textDocument: TextDocumentIdentifier(uri),
range: positions["1"]..<positions["5"],
options: FormattingOptions(tabSize: 4, insertSpaces: true)
)
)
let edits = try XCTUnwrap(response)
XCTAssertEqual(
edits,
[
TextEdit(range: Range(positions["2"]), newText: " "),
TextEdit(range: Range(positions["3"]), newText: " "),
TextEdit(range: Range(positions["4"]), newText: " "),
]
)
}
}