1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
package hexaiaction
import (
"testing"
tea "github.com/charmbracelet/bubbletea"
"codeberg.org/snonux/hexai/internal/appconfig"
)
type fakeProg struct {
m model
onRun func(*model)
}
func (f fakeProg) Run() (tea.Model, error) {
if f.onRun != nil {
f.onRun(&f.m)
}
return f.m, nil
}
func TestRunTUIWithCustom_SubmenuAndHotkeys(t *testing.T) {
old := teaNewProgram
t.Cleanup(func() { teaNewProgram = old })
calls := 0
teaNewProgram = func(m model) teaProgram {
calls++
if calls == 1 {
// Main menu should have "Custom actions…" with configured hotkey
items := m.list.Items()
if len(items) == 0 {
t.Fatalf("main menu items empty")
}
last := items[len(items)-1].(item)
if last.title != "Custom actions…" || string(last.hotkey) != "z" {
t.Fatalf("custom menu entry wrong: title=%q hotkey=%q", last.title, string(last.hotkey))
}
return fakeProg{m: m, onRun: func(mm *model) { mm.chosen = ActionCustom }}
}
if calls == 2 {
// Submenu should list our custom actions with mapped hotkeys
items := m.list.Items()
if len(items) != 2 {
t.Fatalf("submenu expected 2 items, got %d", len(items))
}
a := items[0].(item)
b := items[1].(item)
if a.title != "A" || string(a.hotkey) != "x" {
t.Fatalf("first submenu item wrong: %q/%q", a.title, string(a.hotkey))
}
if b.title != "B" || string(b.hotkey) != "y" {
t.Fatalf("second submenu item wrong: %q/%q", b.title, string(b.hotkey))
}
// Simulate selecting first item
return fakeProg{m: m, onRun: func(mm *model) { mm.list.Select(0) }}
}
return fakeProg{m: m}
}
customs := []appconfig.CustomAction{
{ID: "a", Title: "A", Hotkey: "x", Instruction: "do"},
{ID: "b", Title: "B", Hotkey: "y", Instruction: "do2"},
}
kind, selected, err := RunTUIWithCustom(customs, "z")
if err != nil {
t.Fatalf("RunTUIWithCustom error: %v", err)
}
if kind != ActionCustom {
t.Fatalf("expected ActionCustom, got %s", kind)
}
if selected == nil || selected.ID != "a" {
t.Fatalf("expected selected custom a, got %+v", selected)
}
}
|