106 lines
2.3 KiB
C
106 lines
2.3 KiB
C
#include <stdlib.h>
|
|
#include <assert.h>
|
|
|
|
#include "basic_testing.h"
|
|
|
|
#include "../chess_paths.h"
|
|
|
|
struct chessboard {
|
|
unsigned int C;
|
|
unsigned int R;
|
|
};
|
|
|
|
int value_at(const struct chessboard * c, unsigned int column, unsigned int row) {
|
|
return column + row * c->C;
|
|
}
|
|
|
|
unsigned int columns(const struct chessboard * c) {
|
|
return c->C;
|
|
}
|
|
|
|
unsigned int rows(const struct chessboard * c) {
|
|
return c->R;
|
|
}
|
|
|
|
TEST(inc_pawn) {
|
|
struct chessboard c = {.C = 10, .R = 10 };
|
|
struct piece_position p;
|
|
p.piece = PAWN;
|
|
p.column = 5;
|
|
p.row = 2;
|
|
assert_uint_eq(increasing_path_len(&c, &p), 7);
|
|
assert_uint_eq(p.column, 5);
|
|
assert_uint_eq(p.row, 9);
|
|
TEST_PASSED;
|
|
}
|
|
|
|
TEST(inc_king) {
|
|
struct chessboard c = {.C = 10, .R = 10 };
|
|
struct piece_position p;
|
|
p.piece = KING;
|
|
p.column = 5;
|
|
p.row = 2;
|
|
assert_uint_eq(increasing_path_len(&c, &p), 7);
|
|
assert_uint_eq(p.column, 9);
|
|
assert_uint_eq(p.row, 9);
|
|
TEST_PASSED;
|
|
}
|
|
|
|
TEST(inc_queen) {
|
|
struct chessboard c = {.C = 10, .R = 10 };
|
|
struct piece_position p;
|
|
p.piece = QUEEN;
|
|
p.column = 5;
|
|
p.row = 2;
|
|
assert_uint_eq(increasing_path_len(&c, &p), 2);
|
|
assert_uint_eq(p.column, 9);
|
|
assert_uint_eq(p.row, 9);
|
|
TEST_PASSED;
|
|
}
|
|
|
|
TEST(inc_knight) {
|
|
struct chessboard c = {.C = 10, .R = 10 };
|
|
struct piece_position p;
|
|
p.piece = KNIGHT;
|
|
p.column = 5;
|
|
p.row = 2;
|
|
assert_uint_eq(increasing_path_len(&c, &p), 4);
|
|
assert_uint_eq(p.column, 6);
|
|
assert_uint_eq(p.row, 9);
|
|
TEST_PASSED;
|
|
}
|
|
|
|
TEST(inc_bishop) {
|
|
struct chessboard c = {.C = 10, .R = 10 };
|
|
struct piece_position p;
|
|
p.piece = BISHOP;
|
|
p.column = 5;
|
|
p.row = 2;
|
|
assert_uint_eq(increasing_path_len(&c, &p), 2);
|
|
assert_uint_eq(p.column, 2);
|
|
assert_uint_eq(p.row, 9);
|
|
TEST_PASSED;
|
|
}
|
|
|
|
TEST(inc_rook) {
|
|
struct chessboard c = {.C = 10, .R = 10 };
|
|
struct piece_position p;
|
|
p.piece = ROOK;
|
|
p.column = 5;
|
|
p.row = 2;
|
|
assert_uint_eq(increasing_path_len(&c, &p), 2);
|
|
assert_uint_eq(p.column, 9);
|
|
assert_uint_eq(p.row, 9);
|
|
TEST_PASSED;
|
|
}
|
|
|
|
int main(void) {
|
|
RUN_TEST(inc_pawn);
|
|
RUN_TEST(inc_king);
|
|
RUN_TEST(inc_queen);
|
|
RUN_TEST(inc_knight);
|
|
RUN_TEST(inc_bishop);
|
|
RUN_TEST(inc_rook);
|
|
PRINT_TEST_RESULTS;
|
|
assert(ALL_TESTS_PASSED);
|
|
}
|