Skip to content

Commit 7796a13

Browse files
authored
Don't add adjacent duplicates to history (golang#3)
1 parent 113a4d5 commit 7796a13

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

terminal.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -961,7 +961,9 @@ func (s *stRingBuffer) Add(a string) {
961961
s.entries = make([]string, defaultNumEntries)
962962
s.max = defaultNumEntries
963963
}
964-
964+
if s.entries[s.head] == a {
965+
return // already there at the top
966+
}
965967
s.head = (s.head + 1) % s.max
966968
s.entries[s.head] = a
967969
if s.size < s.max {

terminal_test.go

+28
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ package term
66

77
import (
88
"bytes"
9+
"errors"
910
"io"
1011
"os"
12+
"reflect"
1113
"runtime"
1214
"testing"
1315
)
@@ -435,3 +437,29 @@ func TestOutputNewlines(t *testing.T) {
435437
t.Errorf("incorrect output: was %q, expected %q", output, expected)
436438
}
437439
}
440+
441+
func TestHistoryNoDuplicates(t *testing.T) {
442+
c := &MockTerminal{
443+
toSend: []byte("a\rb\rb\rb\rc\r"), // 5 with 3 duplicate "b"
444+
bytesPerRead: 1,
445+
}
446+
ss := NewTerminal(c, "> ")
447+
count := 0
448+
for {
449+
_, err := ss.ReadLine()
450+
if errors.Is(err, io.EOF) {
451+
break
452+
}
453+
count++
454+
}
455+
if count != 5 {
456+
t.Errorf("expected 5 lines, got %d", count)
457+
}
458+
h := ss.History()
459+
if len(h) != 3 {
460+
t.Errorf("history length should be 3, got %d", len(h))
461+
}
462+
if !reflect.DeepEqual(h, []string{"c", "b", "a"}) {
463+
t.Errorf("history unexpected: %v", h)
464+
}
465+
}

0 commit comments

Comments
 (0)