35 lines
882 B
Go
35 lines
882 B
Go
package game
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mdiluz/rove/pkg/vector"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCommand_Move(t *testing.T) {
|
|
world := NewWorld(2, 8)
|
|
a, err := world.SpawnRover()
|
|
assert.NoError(t, err)
|
|
pos := vector.Vector{
|
|
X: 1.0,
|
|
Y: 2.0,
|
|
}
|
|
|
|
err = world.WarpRover(a, pos)
|
|
assert.NoError(t, err, "Failed to set position for rover")
|
|
|
|
var duration = 1
|
|
// Try the move command
|
|
moveCommand := Command{Command: CommandMove, Bearing: "N", Duration: duration}
|
|
assert.NoError(t, world.Enqueue(a, moveCommand), "Failed to execute move command")
|
|
|
|
// Tick the world
|
|
world.EnqueueAllIncoming()
|
|
world.ExecuteCommandQueues()
|
|
|
|
newPos, err := world.RoverPosition(a)
|
|
assert.NoError(t, err, "Failed to set position for rover")
|
|
pos.Add(vector.Vector{X: 0.0, Y: int(duration)})
|
|
assert.Equal(t, pos, newPos, "Failed to correctly set position for rover")
|
|
}
|