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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
package tui
import (
"testing"
)
func TestBuffer_Diff_Empty(t *testing.T) {
b := NewBuffer(5, 3)
changes := b.Diff()
if len(changes) != 0 {
t.Errorf("Diff() returned %d changes, want 0", len(changes))
}
}
func TestBuffer_Diff_SingleChange(t *testing.T) {
b := NewBuffer(5, 3)
style := NewStyle()
b.SetRune(2, 1, 'A', style)
changes := b.Diff()
if len(changes) != 1 {
t.Fatalf("Diff() returned %d changes, want 1", len(changes))
}
if changes[0].X != 2 || changes[0].Y != 1 {
t.Errorf("Change at (%d, %d), want (2, 1)", changes[0].X, changes[0].Y)
}
if changes[0].Cell.Rune != 'A' {
t.Errorf("Change cell rune = %q, want 'A'", changes[0].Cell.Rune)
}
}
func TestBuffer_Diff_MultipleChanges(t *testing.T) {
b := NewBuffer(5, 3)
style := NewStyle()
b.SetRune(0, 0, 'A', style)
b.SetRune(4, 0, 'B', style)
b.SetRune(2, 2, 'C', style)
changes := b.Diff()
if len(changes) != 3 {
t.Fatalf("Diff() returned %d changes, want 3", len(changes))
}
expected := []struct {
x, y int
r rune
}{
{0, 0, 'A'},
{4, 0, 'B'},
{2, 2, 'C'},
}
for i, e := range expected {
if changes[i].X != e.x || changes[i].Y != e.y {
t.Errorf("Change %d at (%d, %d), want (%d, %d)", i, changes[i].X, changes[i].Y, e.x, e.y)
}
if changes[i].Cell.Rune != e.r {
t.Errorf("Change %d rune = %q, want %q", i, changes[i].Cell.Rune, e.r)
}
}
}
func TestBuffer_Diff_RowMajorOrder(t *testing.T) {
b := NewBuffer(3, 3)
style := NewStyle()
b.SetRune(2, 2, 'I', style)
b.SetRune(0, 0, 'A', style)
b.SetRune(1, 1, 'E', style)
changes := b.Diff()
if len(changes) != 3 {
t.Fatalf("Diff() returned %d changes, want 3", len(changes))
}
if changes[0].X != 0 || changes[0].Y != 0 {
t.Errorf("First change at (%d, %d), want (0, 0)", changes[0].X, changes[0].Y)
}
if changes[1].X != 1 || changes[1].Y != 1 {
t.Errorf("Second change at (%d, %d), want (1, 1)", changes[1].X, changes[1].Y)
}
if changes[2].X != 2 || changes[2].Y != 2 {
t.Errorf("Third change at (%d, %d), want (2, 2)", changes[2].X, changes[2].Y)
}
}
func TestBuffer_Diff_TrailingWideChar(t *testing.T) {
type tc struct {
width int
prevRow string
newRow string
wantEraseX int
}
tests := map[string]tc{
"erase starts after continuation cell when row shrinks to trailing wide char": {
width: 12,
prevRow: "ABCDEFGHIJ",
newRow: "测试题",
wantEraseX: 6,
},
"erase skips unchanged trailing wide char when tail content is removed": {
width: 8,
prevRow: "题 X",
newRow: "题",
wantEraseX: 2,
},
"narrow trailing content erases immediately after it": {
width: 8,
prevRow: "ABCDE",
newRow: "ABC",
wantEraseX: 3,
},
"no erase when tail past trailing wide char is unchanged": {
width: 8,
prevRow: "",
newRow: "测试题",
wantEraseX: -1,
},
"continuation cell at last column leaves no tail to erase": {
width: 3,
prevRow: "ABC",
newRow: "A题",
wantEraseX: -1,
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
b := NewBuffer(tt.width, 1)
b.SetString(0, 0, tt.prevRow, NewStyle())
b.Swap()
b.ClearRect(b.Rect())
b.SetString(0, 0, tt.newRow, NewStyle())
gotEraseX := -1
for _, ch := range b.Diff() {
if !ch.EraseToEOL {
continue
}
if gotEraseX != -1 {
t.Fatalf("Diff() emitted more than one EraseToEOL change for a single row")
}
gotEraseX = ch.X
}
if gotEraseX != tt.wantEraseX {
t.Errorf("EraseToEOL X = %d, want %d", gotEraseX, tt.wantEraseX)
}
})
}
}
func TestBuffer_Swap(t *testing.T) {
b := NewBuffer(5, 3)
style := NewStyle()
b.SetRune(2, 1, 'X', style)
changes1 := b.Diff()
if len(changes1) != 1 {
t.Fatal("Expected 1 change before swap")
}
b.Swap()
changes2 := b.Diff()
if len(changes2) != 0 {
t.Errorf("Diff() after Swap() returned %d changes, want 0", len(changes2))
}
}
|