1
0
mirror of https://github.com/mum4k/termdash.git synced 2025-04-25 13:48:50 +08:00
termdash/area/area_test.go
Jakub Sobon 3a3531d7e1
Implementation of container and its tests.
Including a diff utility for unit tests.
2018-04-01 00:57:33 +02:00

230 lines
4.7 KiB
Go

package area
import (
"image"
"testing"
"github.com/kylelemons/godebug/pretty"
)
func TestSize(t *testing.T) {
tests := []struct {
desc string
area image.Rectangle
want image.Point
}{
{
desc: "zero area",
area: image.Rect(0, 0, 0, 0),
want: image.Point{0, 0},
},
{
desc: "1-D on X axis",
area: image.Rect(0, 0, 1, 0),
want: image.Point{1, 0},
},
{
desc: "1-D on Y axis",
area: image.Rect(0, 0, 0, 1),
want: image.Point{0, 1},
},
{
desc: "area with a single cell",
area: image.Rect(0, 0, 1, 1),
want: image.Point{1, 1},
},
{
desc: "a rectangle",
area: image.Rect(0, 0, 2, 3),
want: image.Point{2, 3},
},
}
for _, tc := range tests {
t.Run(tc.desc, func(t *testing.T) {
got := Size(tc.area)
if diff := pretty.Compare(tc.want, got); diff != "" {
t.Errorf("Size => unexpected diff (-want, +got):\n%s", diff)
}
})
}
}
func TestFromSize(t *testing.T) {
tests := []struct {
desc string
size image.Point
want image.Rectangle
wantErr bool
}{
{
desc: "negative size on X axis",
size: image.Point{-1, 0},
wantErr: true,
},
{
desc: "negative size on Y axis",
size: image.Point{0, -1},
wantErr: true,
},
{
desc: "zero size",
},
{
desc: "1-D on X axis",
size: image.Point{1, 0},
want: image.Rect(0, 0, 1, 0),
},
{
desc: "1-D on Y axis",
size: image.Point{0, 1},
want: image.Rect(0, 0, 0, 1),
},
{
desc: "a rectangle",
size: image.Point{2, 3},
want: image.Rect(0, 0, 2, 3),
},
}
for _, tc := range tests {
t.Run(tc.desc, func(t *testing.T) {
got, err := FromSize(tc.size)
if (err != nil) != tc.wantErr {
t.Fatalf("FromSize => unexpected error: %v, wantErr: %v", err, tc.wantErr)
}
if err != nil {
return
}
if diff := pretty.Compare(tc.want, got); diff != "" {
t.Errorf("FromSize => unexpected diff (-want, +got):\n%s", diff)
}
})
}
}
func TestHSplit(t *testing.T) {
tests := []struct {
desc string
area image.Rectangle
want1 image.Rectangle
want2 image.Rectangle
}{
{
desc: "zero area to begin with",
area: image.ZR,
want1: image.ZR,
want2: image.ZR,
},
{
desc: "splitting results in zero height area",
area: image.Rect(1, 1, 2, 2),
want1: image.ZR,
want2: image.ZR,
},
{
desc: "splits area with even height",
area: image.Rect(1, 1, 3, 3),
want1: image.Rect(1, 1, 3, 2),
want2: image.Rect(1, 2, 3, 3),
},
{
desc: "splits area with odd height",
area: image.Rect(1, 1, 4, 4),
want1: image.Rect(1, 1, 4, 2),
want2: image.Rect(1, 2, 4, 4),
},
}
for _, tc := range tests {
t.Run(tc.desc, func(t *testing.T) {
got1, got2 := HSplit(tc.area)
if diff := pretty.Compare(tc.want1, got1); diff != "" {
t.Errorf("HSplit => first value unexpected diff (-want, +got):\n%s", diff)
}
if diff := pretty.Compare(tc.want2, got2); diff != "" {
t.Errorf("HSplit => second value unexpected diff (-want, +got):\n%s", diff)
}
})
}
}
func TestVSplit(t *testing.T) {
tests := []struct {
desc string
area image.Rectangle
want1 image.Rectangle
want2 image.Rectangle
}{
{
desc: "zero area to begin with",
area: image.ZR,
want1: image.ZR,
want2: image.ZR,
},
{
desc: "splitting results in zero width area",
area: image.Rect(1, 1, 2, 2),
want1: image.ZR,
want2: image.ZR,
},
{
desc: "splits area with even width",
area: image.Rect(1, 1, 3, 3),
want1: image.Rect(1, 1, 2, 3),
want2: image.Rect(2, 1, 3, 3),
},
{
desc: "splits area with odd width",
area: image.Rect(1, 1, 4, 4),
want1: image.Rect(1, 1, 2, 4),
want2: image.Rect(2, 1, 4, 4),
},
}
for _, tc := range tests {
t.Run(tc.desc, func(t *testing.T) {
got1, got2 := VSplit(tc.area)
if diff := pretty.Compare(tc.want1, got1); diff != "" {
t.Errorf("VSplit => first value unexpected diff (-want, +got):\n%s", diff)
}
if diff := pretty.Compare(tc.want2, got2); diff != "" {
t.Errorf("VSplit => second value unexpected diff (-want, +got):\n%s", diff)
}
})
}
}
func TestExcludeBorder(t *testing.T) {
tests := []struct {
desc string
area image.Rectangle
want image.Rectangle
}{
{
desc: "zero area to begin with",
area: image.ZR,
want: image.ZR,
},
{
desc: "excluding results in zero area",
area: image.Rect(1, 1, 2, 2),
want: image.ZR,
},
{
desc: "excludes border",
area: image.Rect(1, 1, 4, 5),
want: image.Rect(2, 2, 3, 4),
},
}
for _, tc := range tests {
t.Run(tc.desc, func(t *testing.T) {
got := ExcludeBorder(tc.area)
if diff := pretty.Compare(tc.want, got); diff != "" {
t.Errorf("ExcludeBorder => unexpected diff (-want, +got):\n%s", diff)
}
})
}
}