1
0
mirror of https://github.com/danbee/chess synced 2025-03-04 08:39:06 +00:00

Add board tests

This commit is contained in:
Daniel Barber 2018-03-23 11:27:55 -04:00
parent aa7f685521
commit fd3fad05d1
Signed by: danbarber
GPG Key ID: 931D8112E0103DD8

43
test/chess/board_test.exs Normal file
View File

@ -0,0 +1,43 @@
defmodule Chess.BoardTest do
@moduledoc false
use Chess.DataCase
alias Chess.Board
test "returns a piece from the board" do
board = Board.default
expected_piece = %{"type" => "pawn", "colour" => "white"}
assert Board.piece(board, {4, 1}) == expected_piece
end
test "finds pieces on the board" do
board = Board.default
piece = %{"type" => "pawn", "colour" => "white"}
expected_result = [
{0, 1}, {1, 1}, {2, 1}, {3, 1}, {4, 1}, {5, 1}, {6, 1}, {7, 1},
]
assert Board.search(board, piece) == expected_result
end
test "finds a single piece on the board" do
board = Board.default
piece = %{"type" => "king", "colour" => "black"}
assert Board.search(board, piece) == [{4, 7}]
end
test "moves a piece" do
board = %{
"3,0" => %{"type" => "queen", "colour" => "white"},
}
new_board = Board.move_piece(board, %{"from" => [3, 0], "to" => [5, 2]})
assert new_board == %{
"5,2" => %{"type" => "queen", "colour" => "white"},
}
end
end