|
@@ -45,7 +45,9 @@ func TestPanelSpacer(t *testing.T) {
|
|
}
|
|
}
|
|
|
|
|
|
func TestPanelUpdate(t *testing.T) {
|
|
func TestPanelUpdate(t *testing.T) {
|
|
- var p Panel = Panel{X: 2, Y: 2, Width: 3, Style: DOUBLE_SINGLE}
|
|
|
|
|
|
+ var TestX int = 2
|
|
|
|
+ var TestY int = 2
|
|
|
|
+ var p Panel = Panel{X: TestX, Y: TestY, Width: 3, Style: DOUBLE_SINGLE}
|
|
var x int = 0
|
|
var x int = 0
|
|
var updater Updater = func() string {
|
|
var updater Updater = func() string {
|
|
return fmt.Sprintf("%3d", x)
|
|
return fmt.Sprintf("%3d", x)
|
|
@@ -54,7 +56,7 @@ func TestPanelUpdate(t *testing.T) {
|
|
l.Update()
|
|
l.Update()
|
|
p.Lines = append(p.Lines, l)
|
|
p.Lines = append(p.Lines, l)
|
|
|
|
|
|
- var expected string = Goto(2, 2) + "╒═══╕" + Goto(2, 3) + "│ 0│" + Goto(2, 4) + "╘═══╛"
|
|
|
|
|
|
+ var expected string = Goto(TestX, TestY) + "╒═══╕" + Goto(TestX, TestY+1) + "│ 0│" + Goto(TestX, TestY+2) + "╘═══╛"
|
|
var got string = p.Output()
|
|
var got string = p.Output()
|
|
|
|
|
|
if expected != got {
|
|
if expected != got {
|
|
@@ -63,7 +65,7 @@ func TestPanelUpdate(t *testing.T) {
|
|
|
|
|
|
x += 3
|
|
x += 3
|
|
got = p.Update()
|
|
got = p.Update()
|
|
- expected = Goto(3, 3) + " 3"
|
|
|
|
|
|
+ expected = Goto(TestX+1, TestY+1) + " 3"
|
|
|
|
|
|
if expected != got {
|
|
if expected != got {
|
|
t.Errorf("Panel Update expected %#v, got %#v", expected, got)
|
|
t.Errorf("Panel Update expected %#v, got %#v", expected, got)
|
|
@@ -81,8 +83,16 @@ func TestPanelUpdate(t *testing.T) {
|
|
t.Errorf("Panel UpdateLine expected %#v, got %#v", expected, got)
|
|
t.Errorf("Panel UpdateLine expected %#v, got %#v", expected, got)
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ // Expected: Width = 3, Length = 1
|
|
|
|
+ if p.Width != 3 {
|
|
|
|
+ t.Errorf("Panel Width, expected %d, got %d\n", 3, p.Width)
|
|
|
|
+ }
|
|
|
|
+ if p.Length() != 1 {
|
|
|
|
+ t.Errorf("Panel Length, expected %d, got %d\n", 1, p.Length())
|
|
|
|
+ }
|
|
|
|
+
|
|
got = p.GotoEnd()
|
|
got = p.GotoEnd()
|
|
- expected = Goto(7, 4)
|
|
|
|
|
|
+ expected = Goto(p.X+p.Width+2, p.Y+p.Length()+2)
|
|
if got != expected {
|
|
if got != expected {
|
|
t.Errorf("Panel GotoEnd expected %#v, got %#v", expected, got)
|
|
t.Errorf("Panel GotoEnd expected %#v, got %#v", expected, got)
|
|
}
|
|
}
|