macOS: add test cases for drag-split

This commit is contained in:
Lukas
2026-03-12 19:54:12 +01:00
parent d6d6fe4e58
commit 3022aa05ea

View File

@@ -73,6 +73,109 @@ final class GhosttyWindowPositionUITests: GhosttyCustomConfigCase {
XCTAssertEqual(windowFrame4.minY, windowFrame3.minY + 30, accuracy: 5, "New window should be on the bottom right")
}
@MainActor func testDragSplitWindowPosition() async throws {
try updateConfig(
"""
window-width = 40
window-height = 20
title = "GhosttyWindowPositionUITests"
macos-titlebar-style = hidden
"""
)
let app = try ghosttyApplication()
// Suppress Restoration
app.launchArguments += ["-NSQuitAlwaysKeepsWindows", "NO"]
// Clean run
app.launchEnvironment["GHOSTTY_CLEAR_USER_DEFAULTS"] = "YES"
app.launch() // window in the center
let window = app.windows.firstMatch
XCTAssertTrue(window.waitForExistence(timeout: 5), "New window should appear")
// remove fixe size
try updateConfig(
"""
title = "GhosttyWindowPositionUITests"
macos-titlebar-style = hidden
"""
)
app.typeKey(",", modifierFlags: [.command, .shift])
app.typeKey("d", modifierFlags: [.command])
let rightSplit = app.groups["Right pane"]
let rightFrame = rightSplit.frame
let sourcePos = rightSplit.coordinate(withNormalizedOffset: .zero)
.withOffset(.init(dx: rightFrame.size.width / 2, dy: 3))
let targetPos = rightSplit.coordinate(withNormalizedOffset: .zero)
.withOffset(.init(dx: rightFrame.size.width + 100, dy: 0))
sourcePos.click(forDuration: 0.2, thenDragTo: targetPos)
let window2 = app.windows.firstMatch
XCTAssertTrue(window2.waitForExistence(timeout: 5), "New window should appear")
let windowFrame2 = window2.frame
try await Task.sleep(for: .seconds(0.5))
XCTAssertEqual(windowFrame2.minX, rightFrame.maxX + 100, accuracy: 5, "New window should be target position")
XCTAssertEqual(windowFrame2.minY, rightFrame.minY, accuracy: 5, "New window should be target position")
XCTAssertEqual(windowFrame2.width, rightFrame.width, accuracy: 5, "New window should use size from config")
XCTAssertEqual(windowFrame2.height, rightFrame.height, accuracy: 5, "New window should use size from config")
}
@MainActor func testDragSplitWindowPositionWithFixedSize() async throws {
try updateConfig(
"""
window-width = 40
window-height = 20
title = "GhosttyWindowPositionUITests"
macos-titlebar-style = hidden
"""
)
let app = try ghosttyApplication()
// Suppress Restoration
app.launchArguments += ["-NSQuitAlwaysKeepsWindows", "NO"]
// Clean run
app.launchEnvironment["GHOSTTY_CLEAR_USER_DEFAULTS"] = "YES"
app.launch() // window in the center
let window = app.windows.firstMatch
XCTAssertTrue(window.waitForExistence(timeout: 5), "New window should appear")
let windowFrame = window.frame
app.typeKey("d", modifierFlags: [.command])
let rightSplit = app.groups["Right pane"]
let rightFrame = rightSplit.frame
let sourcePos = rightSplit.coordinate(withNormalizedOffset: .zero)
.withOffset(.init(dx: rightFrame.size.width / 2, dy: 3))
let targetPos = rightSplit.coordinate(withNormalizedOffset: .zero)
.withOffset(.init(dx: rightFrame.size.width + 100, dy: 0))
sourcePos.click(forDuration: 0.2, thenDragTo: targetPos)
let window2 = app.windows.firstMatch
XCTAssertTrue(window2.waitForExistence(timeout: 5), "New window should appear")
let windowFrame2 = window2.frame
try await Task.sleep(for: .seconds(0.5))
XCTAssertEqual(windowFrame2.minX, rightFrame.maxX + 100, accuracy: 5, "New window should be target position")
XCTAssertEqual(windowFrame2.minY, rightFrame.minY, accuracy: 5, "New window should be target position")
XCTAssertEqual(windowFrame2.width, windowFrame.width, accuracy: 5, "New window should use size from config")
// We're still using right frame, because of the debug banner
XCTAssertEqual(windowFrame2.height, rightFrame.height, accuracy: 5, "New window should use size from config")
}
// MARK: - Restore round-trip per titlebar style
@MainActor func testRestoredNative() throws { try runRestoreTest(titlebarStyle: "native") }