-
Notifications
You must be signed in to change notification settings - Fork 0
/
position_test.go
75 lines (63 loc) · 1.38 KB
/
position_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package main
import (
"github.com/stretchr/testify/assert"
"testing"
)
var testMaze = [][]string{
{"x", " ", "x", "x", " "},
{"S", " ", "x", " ", " "},
{"x", " ", " ", " ", " "},
{"x", " ", " ", "x", " "},
{" ", " ", "x", "F", " "},
}
func TestPositionValues(t *testing.T) {
cases := map[string]position{
"S": position{1, 0},
" ": position{3, 1},
"x": position{4, 2},
"F": position{4, 3},
}
for expectedVal, aPosition := range cases {
assert.Equal(t, expectedVal, aPosition.getValue(testMaze))
}
}
func TestPositionOutOfBounds(t *testing.T) {
cases := [...]position{
position{-1, 1},
position{1, -2},
position{1, 5},
position{5, 1},
}
for _, aPosition := range cases {
assert.True(t, aPosition.outOfBounds(testMaze))
}
}
func TestEmptyValue(t *testing.T) {
cases := [...]position{
position{0, 1},
position{4, 4},
}
for _, aPosition := range cases {
assert.True(t, aPosition.isEmpty(testMaze))
}
}
func TestWall(t *testing.T) {
cases := [...]position{
position{0, 0},
position{1, 2},
}
for _, aPosition := range cases {
assert.True(t, aPosition.isWall(testMaze))
}
}
func TestPositionToString(t *testing.T) {
cases := map[string]position{
"1:0": position{1, 0},
"3:1": position{3, 1},
"4:3": position{4, 3},
"14:3": position{14, 3},
}
for expectedVal, aPosition := range cases {
assert.Equal(t, expectedVal, aPosition.String())
}
}