76 lines
2.4 KiB
TypeScript
76 lines
2.4 KiB
TypeScript
import { expect, test } from "bun:test"
|
|
import type { TerminalColors } from "@opentui/core"
|
|
|
|
const { DEFAULT_THEMES, allThemes, addTheme, hasTheme, resolveTheme, terminalMode } = await import(
|
|
"../../../src/cli/cmd/tui/context/theme"
|
|
)
|
|
|
|
test("addTheme writes into module theme store", () => {
|
|
const name = `plugin-theme-${Date.now()}`
|
|
expect(addTheme(name, DEFAULT_THEMES.opencode)).toBe(true)
|
|
|
|
expect(allThemes()[name]).toBeDefined()
|
|
})
|
|
|
|
test("addTheme keeps first theme for duplicate names", () => {
|
|
const name = `plugin-theme-keep-${Date.now()}`
|
|
const one = structuredClone(DEFAULT_THEMES.opencode)
|
|
const two = structuredClone(DEFAULT_THEMES.opencode)
|
|
one.theme.primary = "#101010"
|
|
two.theme.primary = "#fefefe"
|
|
|
|
expect(addTheme(name, one)).toBe(true)
|
|
expect(addTheme(name, two)).toBe(false)
|
|
|
|
expect(allThemes()[name]).toBeDefined()
|
|
expect(allThemes()[name]!.theme.primary).toBe("#101010")
|
|
})
|
|
|
|
test("addTheme ignores entries without a theme object", () => {
|
|
const name = `plugin-theme-invalid-${Date.now()}`
|
|
expect(addTheme(name, { defs: { a: "#ffffff" } })).toBe(false)
|
|
expect(allThemes()[name]).toBeUndefined()
|
|
})
|
|
|
|
test("hasTheme checks theme presence", () => {
|
|
const name = `plugin-theme-has-${Date.now()}`
|
|
expect(hasTheme(name)).toBe(false)
|
|
expect(addTheme(name, DEFAULT_THEMES.opencode)).toBe(true)
|
|
expect(hasTheme(name)).toBe(true)
|
|
})
|
|
|
|
test("resolveTheme rejects circular color refs", () => {
|
|
const item = structuredClone(DEFAULT_THEMES.opencode)
|
|
item.defs = {
|
|
...item.defs,
|
|
one: "two",
|
|
two: "one",
|
|
}
|
|
item.theme.primary = "one"
|
|
|
|
expect(() => resolveTheme(item, "dark")).toThrow("Circular color reference")
|
|
})
|
|
|
|
function terminalColors(defaultBackground: string | null, palette: Array<string | null> = []): TerminalColors {
|
|
return {
|
|
palette,
|
|
defaultForeground: null,
|
|
defaultBackground,
|
|
cursorColor: null,
|
|
mouseForeground: null,
|
|
mouseBackground: null,
|
|
tekForeground: null,
|
|
tekBackground: null,
|
|
highlightBackground: null,
|
|
highlightForeground: null,
|
|
}
|
|
}
|
|
|
|
test("terminalMode derives mode from refreshed background", () => {
|
|
expect(terminalMode(terminalColors("#fbf1c7"))).toBe("light")
|
|
expect(terminalMode(terminalColors("#1a1b26"))).toBe("dark")
|
|
})
|
|
|
|
test("terminalMode does not derive mode from ANSI slot zero", () => {
|
|
expect(terminalMode(terminalColors(null, ["#000000"]))).toBeUndefined()
|
|
})
|