-
Notifications
You must be signed in to change notification settings - Fork 16
feat(ui): resolve terminal capabilities lazily and per-client (#101) #102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,93 @@ | ||
| package style | ||
|
|
||
| import ( | ||
| "testing" | ||
|
|
||
| "charm.land/lipgloss/v2" | ||
| "github.com/charmbracelet/colorprofile" | ||
| ) | ||
|
|
||
| // saveStyleState snapshots the package-global styling state these tests mutate | ||
| // and returns a restore function, so a test never leaks capabilities or a theme | ||
| // into the ones that follow (this package's tests run non-parallel). | ||
| func saveStyleState(t *testing.T) { | ||
| t.Helper() | ||
| termCapsMu.Lock() | ||
| caps := termCaps | ||
| termCapsMu.Unlock() | ||
| theme := currentTheme | ||
| explicit := themeExplicitlySet | ||
| gen := themeGeneration | ||
|
|
||
| t.Cleanup(func() { | ||
| termCapsMu.Lock() | ||
| termCaps = caps | ||
| termCapsMu.Unlock() | ||
| currentTheme = theme | ||
| themeExplicitlySet = explicit | ||
| themeGeneration = gen | ||
| styleCache = nil | ||
| markdownTypographyCache = nil | ||
| uiTypographyCache = nil | ||
| syntaxStyleCache = nil | ||
| }) | ||
| } | ||
|
|
||
| func TestSetTerminalCapabilitiesOverridesDetection(t *testing.T) { | ||
| saveStyleState(t) | ||
|
|
||
| SetTerminalCapabilities(true, colorprofile.TrueColor) | ||
| if !IsDarkBackground() { | ||
| t.Fatal("IsDarkBackground() = false after setting dark background") | ||
| } | ||
| if !SupportsSmoothAnimation() { | ||
| t.Fatal("SupportsSmoothAnimation() = false for a TrueColor profile") | ||
| } | ||
|
|
||
| SetTerminalCapabilities(false, colorprofile.Ascii) | ||
| if IsDarkBackground() { | ||
| t.Fatal("IsDarkBackground() = true after setting light background") | ||
| } | ||
| if SupportsSmoothAnimation() { | ||
| t.Fatal("SupportsSmoothAnimation() = true for an Ascii profile") | ||
| } | ||
| } | ||
|
|
||
| func TestSetTerminalCapabilitiesRebuildsDerivedTheme(t *testing.T) { | ||
| saveStyleState(t) | ||
|
|
||
| // Force a fresh, lazily-derived theme for a light terminal. | ||
| currentTheme = nil | ||
| themeExplicitlySet = false | ||
| SetTerminalCapabilities(false, colorprofile.TrueColor) | ||
| lightText := GetTheme().Text | ||
|
|
||
| // Switching the terminal background must rebuild the derived theme so the | ||
| // adaptive colours flip to the dark-mode branch. | ||
| SetTerminalCapabilities(true, colorprofile.TrueColor) | ||
| darkText := GetTheme().Text | ||
|
|
||
| if colorsEqual(lightText, darkText) { | ||
| t.Fatalf("derived theme Text did not change with background: %v", lightText) | ||
| } | ||
| } | ||
|
|
||
| func TestSetTerminalCapabilitiesPreservesExplicitTheme(t *testing.T) { | ||
| saveStyleState(t) | ||
|
|
||
| custom := DefaultTheme() | ||
| custom.Text = lipgloss.Color("#123456") | ||
| SetTheme(custom) | ||
|
|
||
| // An explicitly chosen theme must survive a capability change untouched. | ||
| SetTerminalCapabilities(true, colorprofile.TrueColor) | ||
| if got := GetTheme().Text; !colorsEqual(got, lipgloss.Color("#123456")) { | ||
| t.Fatalf("explicit theme Text changed after SetTerminalCapabilities: got %v", got) | ||
| } | ||
| } | ||
|
|
||
| func colorsEqual(a, b interface{ RGBA() (r, g, b, a uint32) }) bool { | ||
| ar, ag, ab, aa := a.RGBA() | ||
| br, bg, bb, ba := b.RGBA() | ||
| return ar == br && ag == bg && ab == bb && aa == ba | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.