mirror of https://github.com/mum4k/termdash.git
288 lines
6.3 KiB
Go
288 lines
6.3 KiB
Go
// Copyright 2018 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 text
|
|
|
|
import (
|
|
"image"
|
|
"testing"
|
|
|
|
"github.com/kylelemons/godebug/pretty"
|
|
)
|
|
|
|
func TestWrapNeeded(t *testing.T) {
|
|
tests := []struct {
|
|
desc string
|
|
r rune
|
|
point image.Point
|
|
cvsWidth int
|
|
opts *options
|
|
want bool
|
|
}{
|
|
{
|
|
desc: "half-width rune, falls within canvas",
|
|
r: 'a',
|
|
point: image.Point{2, 0},
|
|
cvsWidth: 3,
|
|
opts: &options{},
|
|
want: false,
|
|
},
|
|
{
|
|
desc: "full-width rune, falls within canvas",
|
|
r: '世',
|
|
point: image.Point{1, 0},
|
|
cvsWidth: 3,
|
|
opts: &options{},
|
|
want: false,
|
|
},
|
|
{
|
|
desc: "half-width rune, falls outside of canvas, wrapping not configured",
|
|
r: 'a',
|
|
point: image.Point{3, 0},
|
|
cvsWidth: 3,
|
|
opts: &options{},
|
|
want: false,
|
|
},
|
|
{
|
|
desc: "full-width rune, starts outside of canvas, wrapping not configured",
|
|
r: '世',
|
|
point: image.Point{3, 0},
|
|
cvsWidth: 3,
|
|
opts: &options{},
|
|
want: false,
|
|
},
|
|
{
|
|
desc: "half-width rune, falls outside of canvas, wrapping configured",
|
|
r: 'a',
|
|
point: image.Point{3, 0},
|
|
cvsWidth: 3,
|
|
opts: &options{
|
|
wrapAtRunes: true,
|
|
},
|
|
want: true,
|
|
},
|
|
{
|
|
desc: "full-width rune, starts in and falls outside of canvas, wrapping configured",
|
|
r: '世',
|
|
point: image.Point{2, 0},
|
|
cvsWidth: 3,
|
|
opts: &options{
|
|
wrapAtRunes: true,
|
|
},
|
|
want: true,
|
|
},
|
|
{
|
|
desc: "full-width rune, starts outside of canvas, wrapping configured",
|
|
r: '世',
|
|
point: image.Point{3, 0},
|
|
cvsWidth: 3,
|
|
opts: &options{
|
|
wrapAtRunes: true,
|
|
},
|
|
want: true,
|
|
},
|
|
{
|
|
desc: "doesn't wrap for newline characters",
|
|
r: '\n',
|
|
point: image.Point{3, 0},
|
|
cvsWidth: 3,
|
|
opts: &options{
|
|
wrapAtRunes: true,
|
|
},
|
|
want: false,
|
|
},
|
|
}
|
|
|
|
for _, tc := range tests {
|
|
t.Run(tc.desc, func(t *testing.T) {
|
|
got := wrapNeeded(tc.r, tc.point.X, tc.cvsWidth, tc.opts)
|
|
if got != tc.want {
|
|
t.Errorf("wrapNeeded => got %v, want %v", got, tc.want)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestFindLines(t *testing.T) {
|
|
tests := []struct {
|
|
desc string
|
|
text string
|
|
// cvsWidth is the width of the canvas.
|
|
cvsWidth int
|
|
opts *options
|
|
want []int
|
|
}{
|
|
{
|
|
desc: "zero text",
|
|
text: "",
|
|
cvsWidth: 1,
|
|
opts: &options{},
|
|
want: nil,
|
|
},
|
|
{
|
|
desc: "zero canvas width",
|
|
text: "hello",
|
|
cvsWidth: 0,
|
|
opts: &options{},
|
|
want: nil,
|
|
},
|
|
{
|
|
desc: "wrapping disabled, no newlines, fits in canvas width",
|
|
text: "hello",
|
|
cvsWidth: 5,
|
|
opts: &options{},
|
|
want: []int{0},
|
|
},
|
|
{
|
|
desc: "wrapping disabled, no newlines, doesn't fits in canvas width",
|
|
text: "hello",
|
|
cvsWidth: 4,
|
|
opts: &options{},
|
|
want: []int{0},
|
|
},
|
|
{
|
|
desc: "wrapping disabled, newlines, fits in canvas width",
|
|
text: "hello\nworld",
|
|
cvsWidth: 5,
|
|
opts: &options{},
|
|
want: []int{0, 6},
|
|
},
|
|
{
|
|
desc: "wrapping disabled, newlines, doesn't fit in canvas width",
|
|
text: "hello\nworld",
|
|
cvsWidth: 4,
|
|
opts: &options{},
|
|
want: []int{0, 6},
|
|
},
|
|
{
|
|
desc: "wrapping enabled, no newlines, fits in canvas width",
|
|
text: "hello",
|
|
cvsWidth: 5,
|
|
opts: &options{
|
|
wrapAtRunes: true,
|
|
},
|
|
want: []int{0},
|
|
},
|
|
{
|
|
desc: "wrapping enabled, no newlines, doesn't fit in canvas width",
|
|
text: "hello",
|
|
cvsWidth: 4,
|
|
opts: &options{
|
|
wrapAtRunes: true,
|
|
},
|
|
want: []int{0, 4},
|
|
},
|
|
{
|
|
desc: "wrapping enabled, newlines, fits in canvas width",
|
|
text: "hello\nworld",
|
|
cvsWidth: 5,
|
|
opts: &options{
|
|
wrapAtRunes: true,
|
|
},
|
|
want: []int{0, 6},
|
|
},
|
|
{
|
|
desc: "wrapping enabled, newlines, doesn't fit in canvas width",
|
|
text: "hello\nworld",
|
|
cvsWidth: 4,
|
|
opts: &options{
|
|
wrapAtRunes: true,
|
|
},
|
|
want: []int{0, 4, 6, 10},
|
|
},
|
|
{
|
|
desc: "wrapping enabled, newlines, doesn't fit in canvas width, unicode characters",
|
|
text: "⇧\n…\n⇩",
|
|
cvsWidth: 1,
|
|
opts: &options{
|
|
wrapAtRunes: true,
|
|
},
|
|
want: []int{0, 4, 8},
|
|
},
|
|
{
|
|
desc: "wrapping enabled, newlines, doesn't fit in width, full-width unicode characters",
|
|
text: "你好\n世界",
|
|
cvsWidth: 2,
|
|
opts: &options{
|
|
wrapAtRunes: true,
|
|
},
|
|
want: []int{0, 3, 7, 10},
|
|
},
|
|
{
|
|
desc: "wraps before a full-width character that starts in and falls out",
|
|
text: "a你b",
|
|
cvsWidth: 2,
|
|
opts: &options{
|
|
wrapAtRunes: true,
|
|
},
|
|
want: []int{0, 1, 4},
|
|
},
|
|
{
|
|
desc: "wraps before a full-width character that falls out",
|
|
text: "ab你b",
|
|
cvsWidth: 2,
|
|
opts: &options{
|
|
wrapAtRunes: true,
|
|
},
|
|
want: []int{0, 2, 5},
|
|
},
|
|
{
|
|
desc: "handles leading and trailing newlines",
|
|
text: "\n\n\nhello\n\n\n",
|
|
cvsWidth: 4,
|
|
opts: &options{
|
|
wrapAtRunes: true,
|
|
},
|
|
want: []int{0, 1, 2, 3, 7, 9, 10},
|
|
},
|
|
{
|
|
desc: "handles multiple newlines in the middle",
|
|
text: "hello\n\n\nworld",
|
|
cvsWidth: 5,
|
|
opts: &options{
|
|
wrapAtRunes: true,
|
|
},
|
|
want: []int{0, 6, 7, 8},
|
|
},
|
|
{
|
|
desc: "handles multiple newlines in the middle and wraps",
|
|
text: "hello\n\n\nworld",
|
|
cvsWidth: 2,
|
|
opts: &options{
|
|
wrapAtRunes: true,
|
|
},
|
|
want: []int{0, 2, 4, 6, 7, 8, 10, 12},
|
|
},
|
|
{
|
|
desc: "contains only newlines",
|
|
text: "\n\n\n",
|
|
cvsWidth: 4,
|
|
opts: &options{
|
|
wrapAtRunes: true,
|
|
},
|
|
want: []int{0, 1, 2},
|
|
},
|
|
}
|
|
|
|
for _, tc := range tests {
|
|
t.Run(tc.desc, func(t *testing.T) {
|
|
got := findLines(tc.text, tc.cvsWidth, tc.opts)
|
|
if diff := pretty.Compare(tc.want, got); diff != "" {
|
|
t.Errorf("findLines => unexpected diff (-want, +got):\n%s", diff)
|
|
}
|
|
})
|
|
}
|
|
|
|
}
|