Files
ghostty/macos/Tests/Terminal/TerminalViewContainerTests.swift
Lukas fd17869d15 macOS: rework for #10943
Keep the background color as it is and apply glass effect on top of it
2026-08-20 13:30:33 +02:00

64 lines
1.7 KiB
Swift

//
// TerminalViewContainerTests.swift
// Ghostty
//
// Created by Lukas on 26.02.2026.
//
import SwiftUI
import Testing
@testable import Ghostty
class MockTerminalViewContainer: TerminalViewContainer {
var _windowCornerRadius: CGFloat?
override var windowThemeFrameView: NSView? {
NSView()
}
override var windowCornerRadius: CGFloat? {
_windowCornerRadius
}
}
class MockConfig: Ghostty.Config {
internal init(backgroundBlur: Ghostty.Config.BackgroundBlur, backgroundColor: Color, backgroundOpacity: Double) {
self._backgroundBlur = backgroundBlur
self._backgroundColor = backgroundColor
self._backgroundOpacity = backgroundOpacity
super.init(config: nil)
}
var _backgroundBlur: Ghostty.Config.BackgroundBlur
var _backgroundColor: Color
var _backgroundOpacity: Double
override var backgroundBlur: Ghostty.Config.BackgroundBlur {
_backgroundBlur
}
override var backgroundColor: Color {
_backgroundColor
}
override var backgroundOpacity: Double {
_backgroundOpacity
}
}
struct TerminalViewContainerTests {
@Test func glassAvailability() async throws {
let view = await MockTerminalViewContainer {
EmptyView()
}
let config = MockConfig(backgroundBlur: .macosGlassRegular, backgroundColor: .clear, backgroundOpacity: 1)
await view.ghosttyConfigDidChange(config, preferredBackgroundColor: nil)
try await Task.sleep(nanoseconds: UInt64(1e8)) // wait for the view to be setup if needed
if #available(macOS 26.0, *) {
#expect(view.glassEffectView != nil)
} else {
#expect(view.glassEffectView == nil)
}
}
}