2019-04-07 22:37:28 -04:00
|
|
|
// Copyright 2019 Google Inc.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package textinput
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/kylelemons/godebug/pretty"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestData(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
desc string
|
|
|
|
data fieldData
|
|
|
|
ops func(*fieldData)
|
|
|
|
want fieldData
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "appends to empty data",
|
|
|
|
ops: func(fd *fieldData) {
|
|
|
|
fd.insertAt(0, 'a')
|
|
|
|
},
|
|
|
|
want: fieldData{'a'},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "appends at the end of non-empty data",
|
|
|
|
data: fieldData{'a'},
|
|
|
|
ops: func(fd *fieldData) {
|
|
|
|
fd.insertAt(1, 'b')
|
|
|
|
fd.insertAt(2, 'c')
|
|
|
|
},
|
|
|
|
want: fieldData{'a', 'b', 'c'},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "appends at the beginning of non-empty data",
|
|
|
|
data: fieldData{'a'},
|
|
|
|
ops: func(fd *fieldData) {
|
|
|
|
fd.insertAt(0, 'b')
|
|
|
|
fd.insertAt(0, 'c')
|
|
|
|
},
|
|
|
|
want: fieldData{'c', 'b', 'a'},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "deletes the last rune, result in empty",
|
|
|
|
data: fieldData{'a'},
|
|
|
|
ops: func(fd *fieldData) {
|
|
|
|
fd.deleteAt(0)
|
|
|
|
},
|
|
|
|
want: fieldData{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "deletes the last rune, result in non-empty",
|
|
|
|
data: fieldData{'a', 'b'},
|
|
|
|
ops: func(fd *fieldData) {
|
|
|
|
fd.deleteAt(1)
|
|
|
|
},
|
|
|
|
want: fieldData{'a'},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "deletes runes in the middle",
|
|
|
|
data: fieldData{'a', 'b', 'c', 'd'},
|
|
|
|
ops: func(fd *fieldData) {
|
|
|
|
fd.deleteAt(1)
|
|
|
|
fd.deleteAt(1)
|
|
|
|
},
|
|
|
|
want: fieldData{'a', 'd'},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range tests {
|
|
|
|
t.Run(tc.desc, func(t *testing.T) {
|
|
|
|
got := tc.data
|
|
|
|
if tc.ops != nil {
|
|
|
|
tc.ops(&got)
|
|
|
|
}
|
|
|
|
t.Logf(fmt.Sprintf("got: %s", got))
|
|
|
|
|
|
|
|
if diff := pretty.Compare(tc.want, got); diff != "" {
|
|
|
|
t.Errorf("fieldData => unexpected diff (-want, +got):\n%s\n got: %q\nwant: %q", diff, got, tc.want)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2019-04-07 23:31:41 -04:00
|
|
|
|
2019-04-08 23:32:00 -04:00
|
|
|
func TestRangeWidth(t *testing.T) {
|
|
|
|
tests := []struct {
|
2019-04-10 00:09:46 -04:00
|
|
|
desc string
|
|
|
|
data fieldData
|
|
|
|
startIdx int
|
|
|
|
endIdx int
|
|
|
|
wantRangeWidth int
|
|
|
|
wantWidth int
|
2019-04-08 23:32:00 -04:00
|
|
|
}{
|
|
|
|
{
|
2019-04-10 00:09:46 -04:00
|
|
|
desc: "empty range",
|
|
|
|
startIdx: 0,
|
|
|
|
endIdx: 0,
|
|
|
|
wantRangeWidth: 0,
|
2019-04-08 23:32:00 -04:00
|
|
|
},
|
|
|
|
{
|
2019-04-10 00:09:46 -04:00
|
|
|
desc: "single half-width rune",
|
|
|
|
data: fieldData{'a', 'b'},
|
|
|
|
startIdx: 1,
|
|
|
|
endIdx: 2,
|
|
|
|
wantRangeWidth: 1,
|
|
|
|
wantWidth: 2,
|
2019-04-08 23:32:00 -04:00
|
|
|
},
|
|
|
|
{
|
2019-04-10 00:09:46 -04:00
|
|
|
desc: "single full-width rune",
|
|
|
|
data: fieldData{'a', 'b', '世', 'd'},
|
|
|
|
startIdx: 2,
|
|
|
|
endIdx: 3,
|
|
|
|
wantRangeWidth: 2,
|
|
|
|
wantWidth: 5,
|
2019-04-08 23:32:00 -04:00
|
|
|
},
|
|
|
|
{
|
2019-04-10 00:09:46 -04:00
|
|
|
desc: "mix of multiple runes",
|
|
|
|
data: fieldData{'a', 'b', '世', 'd'},
|
|
|
|
startIdx: 1,
|
|
|
|
endIdx: 4,
|
|
|
|
wantRangeWidth: 4,
|
|
|
|
wantWidth: 5,
|
2019-04-08 23:32:00 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range tests {
|
|
|
|
t.Run(tc.desc, func(t *testing.T) {
|
2019-04-10 00:09:46 -04:00
|
|
|
gotRangeWidth := tc.data.rangeWidth(tc.startIdx, tc.endIdx)
|
|
|
|
if gotRangeWidth != tc.wantRangeWidth {
|
|
|
|
t.Errorf("rangeWidth => %d, wantRangeWidth %d", gotRangeWidth, tc.wantRangeWidth)
|
|
|
|
}
|
|
|
|
|
|
|
|
gotWidth := tc.data.width()
|
|
|
|
if gotWidth != tc.wantWidth {
|
|
|
|
t.Errorf("width => %d, wantWidth %d", gotWidth, tc.wantWidth)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRunesIn(t *testing.T) {
|
|
|
|
t.Skip()
|
|
|
|
tests := []struct {
|
|
|
|
desc string
|
|
|
|
data fieldData
|
|
|
|
vr *visibleRange
|
|
|
|
want string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "zero range, zero data",
|
|
|
|
vr: &visibleRange{},
|
|
|
|
want: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "zero range, non-zero data",
|
|
|
|
data: fieldData{'a', 'b', '世', 'd'},
|
|
|
|
vr: &visibleRange{},
|
|
|
|
want: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "range from zero, start and end visible",
|
|
|
|
data: fieldData{'a', 'b', '世', 'd'},
|
|
|
|
vr: &visibleRange{
|
|
|
|
startIdx: 0,
|
|
|
|
endIdx: 4,
|
|
|
|
},
|
|
|
|
want: "ab世d",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "range from zero, end not visible",
|
|
|
|
data: fieldData{'a', 'b', '世', 'd'},
|
|
|
|
vr: &visibleRange{
|
|
|
|
startIdx: 0,
|
|
|
|
endIdx: 3,
|
|
|
|
},
|
|
|
|
want: "ab⇨",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "range from non-zero, start not visible, end visible",
|
|
|
|
data: fieldData{'a', 'b', '世', 'd'},
|
|
|
|
vr: &visibleRange{
|
|
|
|
startIdx: 1,
|
|
|
|
endIdx: 4,
|
|
|
|
},
|
|
|
|
want: "⇦世d",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "range from non-zero, neither start nor end visible",
|
|
|
|
data: fieldData{'a', 'b', '世', 'd', 'e'},
|
|
|
|
vr: &visibleRange{
|
|
|
|
startIdx: 1,
|
|
|
|
endIdx: 4,
|
|
|
|
},
|
|
|
|
want: "⇦世⇨",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "range longer than data",
|
|
|
|
data: fieldData{'a', 'b', '世', 'd'},
|
|
|
|
vr: &visibleRange{
|
|
|
|
startIdx: 2,
|
|
|
|
endIdx: 5,
|
|
|
|
},
|
|
|
|
want: "⇦d",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range tests {
|
|
|
|
t.Run(tc.desc, func(t *testing.T) {
|
|
|
|
got := tc.data.runesIn(tc.vr)
|
|
|
|
if got != tc.want {
|
|
|
|
t.Errorf("runesIn => %q, want %q", got, tc.want)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCellsBefore(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
desc string
|
|
|
|
data fieldData
|
|
|
|
cells int
|
|
|
|
endIdx int
|
|
|
|
want int
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "empty data and range",
|
|
|
|
cells: 1,
|
|
|
|
endIdx: 0,
|
|
|
|
want: 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "non-empty data and empty range",
|
|
|
|
data: fieldData{'a', 'b', '世', 'd'},
|
|
|
|
cells: 1,
|
|
|
|
endIdx: 0,
|
|
|
|
want: 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "more cells than runes from endIdx",
|
|
|
|
data: fieldData{'a', 'b', '世', 'd'},
|
|
|
|
cells: 10,
|
|
|
|
endIdx: 1,
|
|
|
|
want: 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "less cells than runes from endIdx, stops on half-width rune",
|
|
|
|
data: fieldData{'a', 'b', '世', 'd'},
|
|
|
|
cells: 1,
|
|
|
|
endIdx: 2,
|
|
|
|
want: 1,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "less cells than runes from endIdx, stops on full-width rune",
|
|
|
|
data: fieldData{'a', 'b', '世', 'd'},
|
|
|
|
cells: 2,
|
|
|
|
endIdx: 3,
|
|
|
|
want: 2,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "less cells than runes from endIdx, full-width rune doesn't fit",
|
|
|
|
data: fieldData{'a', 'b', '世', 'd'},
|
|
|
|
cells: 2,
|
|
|
|
endIdx: 4,
|
|
|
|
want: 3,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range tests {
|
|
|
|
t.Run(tc.desc, func(t *testing.T) {
|
|
|
|
got := tc.data.cellsBefore(tc.cells, tc.endIdx)
|
2019-04-08 23:32:00 -04:00
|
|
|
if got != tc.want {
|
2019-04-10 00:09:46 -04:00
|
|
|
t.Errorf("cellsBefore => %d, want %d", got, tc.want)
|
2019-04-08 23:32:00 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-07 23:31:41 -04:00
|
|
|
func TestFieldEditor(t *testing.T) {
|
2019-04-08 23:32:00 -04:00
|
|
|
t.Skip()
|
2019-04-07 23:31:41 -04:00
|
|
|
tests := []struct {
|
|
|
|
desc string
|
|
|
|
width int
|
2019-04-08 23:32:00 -04:00
|
|
|
ops func(*fieldEditor) error
|
2019-04-07 23:31:41 -04:00
|
|
|
want string
|
|
|
|
wantCurIdx int
|
|
|
|
wantErr bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "fails for width too small",
|
2019-04-10 00:09:46 -04:00
|
|
|
width: 3,
|
2019-04-07 23:31:41 -04:00
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "no data",
|
2019-04-10 00:09:46 -04:00
|
|
|
width: 4,
|
2019-04-07 23:31:41 -04:00
|
|
|
want: "",
|
|
|
|
wantCurIdx: 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "data and cursor fit exactly",
|
2019-04-10 00:09:46 -04:00
|
|
|
width: 4,
|
2019-04-08 23:32:00 -04:00
|
|
|
ops: func(fe *fieldEditor) error {
|
2019-04-07 23:31:41 -04:00
|
|
|
fe.insert('a')
|
|
|
|
fe.insert('b')
|
2019-04-08 23:32:00 -04:00
|
|
|
return nil
|
2019-04-07 23:31:41 -04:00
|
|
|
},
|
|
|
|
want: "ab",
|
|
|
|
wantCurIdx: 2,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "longer data than the width, cursor at the end",
|
2019-04-10 00:09:46 -04:00
|
|
|
width: 4,
|
2019-04-08 23:32:00 -04:00
|
|
|
ops: func(fe *fieldEditor) error {
|
|
|
|
fe.insert('a')
|
|
|
|
fe.insert('b')
|
|
|
|
fe.insert('c')
|
2019-04-10 00:09:46 -04:00
|
|
|
fe.insert('d')
|
2019-04-08 23:32:00 -04:00
|
|
|
return nil
|
|
|
|
},
|
2019-04-10 00:09:46 -04:00
|
|
|
want: "⇦cd",
|
|
|
|
wantCurIdx: 3,
|
2019-04-08 23:32:00 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "width decreases, adjusts cursor and shifts data",
|
2019-04-10 00:09:46 -04:00
|
|
|
width: 4,
|
2019-04-08 23:32:00 -04:00
|
|
|
ops: func(fe *fieldEditor) error {
|
2019-04-10 00:09:46 -04:00
|
|
|
if _, _, err := fe.viewFor(5); err != nil {
|
2019-04-08 23:32:00 -04:00
|
|
|
return err
|
|
|
|
}
|
2019-04-07 23:31:41 -04:00
|
|
|
fe.insert('a')
|
|
|
|
fe.insert('b')
|
|
|
|
fe.insert('c')
|
2019-04-10 00:09:46 -04:00
|
|
|
fe.insert('d')
|
2019-04-08 23:32:00 -04:00
|
|
|
return nil
|
2019-04-07 23:31:41 -04:00
|
|
|
},
|
|
|
|
want: "⇦c",
|
|
|
|
wantCurIdx: 2,
|
|
|
|
},
|
2019-04-08 23:32:00 -04:00
|
|
|
{
|
|
|
|
desc: "cursor won't go right beyond the end of the field",
|
|
|
|
width: 4,
|
|
|
|
ops: func(fe *fieldEditor) error {
|
|
|
|
fe.insert('a')
|
|
|
|
fe.insert('b')
|
|
|
|
fe.insert('c')
|
|
|
|
fe.insert('d')
|
|
|
|
fe.cursorRight()
|
|
|
|
fe.cursorRight()
|
|
|
|
fe.cursorRight()
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
want: "⇦cd",
|
|
|
|
wantCurIdx: 3,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "moves cursor to the left",
|
|
|
|
width: 4,
|
|
|
|
ops: func(fe *fieldEditor) error {
|
|
|
|
fe.insert('a')
|
|
|
|
fe.insert('b')
|
|
|
|
fe.insert('c')
|
|
|
|
fe.insert('d')
|
|
|
|
fe.cursorLeft()
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
want: "⇦cd",
|
|
|
|
wantCurIdx: 2,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "scrolls content to the left, both ends invisible",
|
|
|
|
width: 4,
|
|
|
|
ops: func(fe *fieldEditor) error {
|
|
|
|
fe.insert('a')
|
|
|
|
fe.insert('b')
|
|
|
|
fe.insert('c')
|
|
|
|
fe.insert('d')
|
|
|
|
fe.cursorLeft()
|
|
|
|
fe.cursorLeft()
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
want: "⇦b⇨",
|
|
|
|
wantCurIdx: 1,
|
|
|
|
},
|
|
|
|
|
|
|
|
// Less text than width.
|
2019-04-07 23:31:41 -04:00
|
|
|
// Tests with full-width runes.
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range tests {
|
|
|
|
t.Run(tc.desc, func(t *testing.T) {
|
|
|
|
fe := newFieldEditor()
|
|
|
|
if tc.ops != nil {
|
2019-04-08 23:32:00 -04:00
|
|
|
if err := tc.ops(fe); err != nil {
|
|
|
|
t.Fatalf("ops => unexpected error: %v", err)
|
|
|
|
}
|
2019-04-07 23:31:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
got, gotCurIdx, err := fe.viewFor(tc.width)
|
|
|
|
if (err != nil) != tc.wantErr {
|
|
|
|
t.Errorf("viewFor => unexpected error: %v, wantErr: %v", err, tc.wantErr)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if got != tc.want || gotCurIdx != tc.wantCurIdx {
|
|
|
|
t.Errorf("viewFor => (%q, %d), want (%q, %d)", got, gotCurIdx, tc.want, tc.wantCurIdx)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|