aboutsummaryrefslogtreecommitdiff
path: root/pkg/field/set_test.go
diff options
context:
space:
mode:
authorJulien Dessaux2021-10-01 17:24:09 +0200
committerJulien Dessaux2021-10-01 18:42:39 +0200
commit749caa9e261d40c6af7f2516d3d3a3c30ae95f9a (patch)
tree510be574191d6057ed26c1cc48d649c7d0f4dca4 /pkg/field/set_test.go
parentFixed resizing bugs in certain situations not covered by mycology (diff)
downloadgofunge98-749caa9e261d40c6af7f2516d3d3a3c30ae95f9a.tar.gz
gofunge98-749caa9e261d40c6af7f2516d3d3a3c30ae95f9a.tar.bz2
gofunge98-749caa9e261d40c6af7f2516d3d3a3c30ae95f9a.zip
Fixed some more resizing bugs in certain situations not covered by mycology
Diffstat (limited to 'pkg/field/set_test.go')
-rw-r--r--pkg/field/set_test.go28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkg/field/set_test.go b/pkg/field/set_test.go
index b66c434..c961c2f 100644
--- a/pkg/field/set_test.go
+++ b/pkg/field/set_test.go
@@ -237,6 +237,13 @@ func TestSetAppendResize(t *testing.T) {
Line{x: 0, l: 1, columns: []int{'d'}},
},
}
+ blank := Field{
+ x: 0, y: -1, lx: 2, ly: 3, lines: []Line{
+ Line{x: 0, l: 1, columns: []int{'u'}},
+ Line{x: 0, l: 2, columns: []int{'0', 'r'}},
+ Line{x: 0, l: 1, columns: []int{'d'}},
+ },
+ }
xappend := Field{
x: -1, y: -1, lx: 5, ly: 3, lines: []Line{
Line{x: 0, l: 1, columns: []int{'u'}},
@@ -287,6 +294,24 @@ func TestSetAppendResize(t *testing.T) {
Line{x: 3, l: 1, columns: []int{'n'}},
},
}
+ xappendyappendEp := Field{
+ x: -5, y: -1, lx: 9, ly: 5, lines: []Line{
+ Line{x: 0, l: 1, columns: []int{'u'}},
+ Line{x: -1, l: 3, columns: []int{'l', '0', 'r'}},
+ Line{x: 0, l: 1, columns: []int{'d'}},
+ Line{x: -5, l: 1, columns: []int{'e'}},
+ Line{x: 3, l: 1, columns: []int{'n'}},
+ },
+ }
+ xappendyappendEa := Field{
+ x: -1, y: -1, lx: 7, ly: 5, lines: []Line{
+ Line{x: 0, l: 1, columns: []int{'u'}},
+ Line{x: -1, l: 3, columns: []int{'l', '0', 'r'}},
+ Line{x: 0, l: 1, columns: []int{'d'}},
+ Line{x: 5, l: 1, columns: []int{'e'}},
+ Line{x: 3, l: 1, columns: []int{'n'}},
+ },
+ }
// Test cases
testCases := []struct {
name string
@@ -296,12 +321,15 @@ func TestSetAppendResize(t *testing.T) {
inputV int
expected Field
}{
+ {"blank", base, -1, 0, ' ', blank},
{"xappend", base, 3, 1, 'n', xappend},
{"xprepend", base, -3, 1, 'n', xprepend},
{"xprependyprepend", base, -3, -3, 'n', xprependyprepend},
{"xappendyprepend", base, 3, -3, 'n', xappendyprepend},
{"xprependyappend", base, -3, 3, 'n', xprependyappend},
{"xappendyappend", base, 3, 3, 'n', xappendyappend},
+ {"xappendyappendEp", xappendyappend, -5, 2, 'e', xappendyappendEp},
+ {"xappendyappendEa", xappendyappend, 5, 2, 'e', xappendyappendEa},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {