def setUp(self): self.board = Board(columns=2, rows=2, n_shapes=3) board = np.array([ [0, 1], [2, 0] ]) self.board.set_board(board)
def test_big_board(self): board = np.array([ [1, 2, 0], [1, 3, 0], [3, 1, 2] ]) self.board = Board(columns=3, rows=3, n_shapes=4, immovable_shape=-1) self.board.set_board(board)
def create_board(self, level: Level) -> Board: empty_board = np.random.randint(0, level.n_shapes, size=(self.__h, self.__w)) board_array = self.__put_immovable(empty_board, level) board = Board(self.__h, self.__w, level.n_shapes, self.__immovable_shape) board.set_board(board_array) return board
def setUp(self): self.board = Board(columns=3, rows=3, n_shapes=10, immovable_shape=-1) board = np.array([ [-1, -1, -1], [-1, 0, -1], [-1, -1, 0] ]) self.board.set_board(board) self.searcher = MatchesSearcher(3, 2)
def setUp(self): board = Board(3, 3, 5) board.set_board(np.array([ [0, 1, 2], [np.nan, 0, 1], [np.nan, np.nan, np.nan] ])) self.board = board self.filler = Filler(1)
def setUp(self): self.board = Board(columns=2, rows=2, n_shapes=3, immovable_shape=-1) board = np.array([[0, 1], [2, 0]]) self.board.set_board(board) self.board_wimove = Board(columns=2, rows=2, n_shapes=3, immovable_shape=-1) self.board_wimove.set_board(np.array([[-1, 0], [0, -1]]))
class TestSearcherImmove(TestSearcher): def setUp(self): self.board = Board(columns=3, rows=3, n_shapes=10, immovable_shape=-1) board = np.array([[-1, -1, -1], [-1, 0, -1], [-1, -1, 0]]) self.board.set_board(board) self.searcher = MatchesSearcher(3, 2) def test_points_generator(self): answer = {i for i in self.searcher.points_generator(self.board)} true = {Point(1, 1), Point(2, 2)} self.assertEqual(true, answer)
def setUp(self): board = np.array([[1, 2, 0], [1, 3, 0], [3, 1, 2]]) self.board = Board(columns=3, rows=3, n_shapes=4, immovable_shape=-1) self.board.set_board(board) board_wimmove = np.array([[-1, -1, 1], [1, 1, -1], [2, 1, 1]]) self.board_wimmove = Board(columns=3, rows=3, n_shapes=4, immovable_shape=-1) self.board_wimmove.set_board(board_wimmove) self.moves_searcher = MovesSearcher(length=3, board_ndim=2)
class TestMovesSearcherImmove(TestMovesSearcher): def setUp(self): board = np.array([[1, 2, 0], [1, 3, 0], [3, 1, 2]]) self.board = Board(columns=3, rows=3, n_shapes=4, immovable_shape=-1) self.board.set_board(board) board_wimmove = np.array([[-1, -1, 1], [1, 1, -1], [2, 1, 1]]) self.board_wimmove = Board(columns=3, rows=3, n_shapes=4, immovable_shape=-1) self.board_wimmove.set_board(board_wimmove) self.moves_searcher = MovesSearcher(length=3, board_ndim=2) def test_search_moves(self): true = { (Point(1, 0), (1, 0)), (Point(2, 0), (-1, 0)), } answer = self.moves_searcher.search_moves(board=self.board_wimmove, all_moves=True) self.assertEqual(true, answer) def test_big_board(self): board = np.array([[1, 2, 0], [1, 3, 0], [3, 1, 2]]) self.board = Board(columns=3, rows=3, n_shapes=4, immovable_shape=-1) self.board.set_board(board)
def setUp(self): self.board_3x3_zeros = Board(3, 3, 3) self.board_3x3_zeros.set_board( np.array([[0, 0, 0], [0, 0, 1], [1, 2, 2]])) self.board_3x3_seq = Board(3, 3, 9) self.board_3x3_seq.set_board( np.array([[0, 1, 2], [3, 4, 5], [6, 7, 8]])) self.board_4x4_big_angle = Board(columns=4, rows=4, n_shapes=6) self.board_4x4_big_angle.set_board( np.array([[0, 1, 2, 3], [0, 0, 5, 5], [0, 1, 3, 1], [0, 0, 0, 1]])) self.searcher_three = MatchesSearcher(3, 2)
class TestMatchesSearcher(unittest.TestCase): def setUp(self): self.board_3x3_zeros = Board(3, 3, 3) self.board_3x3_zeros.set_board( np.array([[0, 0, 0], [0, 0, 1], [1, 2, 2]])) self.board_3x3_seq = Board(3, 3, 9) self.board_3x3_seq.set_board( np.array([[0, 1, 2], [3, 4, 5], [6, 7, 8]])) self.board_4x4_big_angle = Board(columns=4, rows=4, n_shapes=6) self.board_4x4_big_angle.set_board( np.array([[0, 1, 2, 3], [0, 0, 5, 5], [0, 1, 3, 1], [0, 0, 0, 1]])) self.searcher_three = MatchesSearcher(3, 2) @staticmethod def __to_coord(args): return sorted([i.get_coord() for i in args]) def test_scan_board(self): zeros_answer = self.searcher_three.scan_board_for_matches( self.board_3x3_zeros) zeros_true = {Cell(0, 0, 0), Cell(0, 0, 1), Cell(0, 0, 2)} seq_answer = self.searcher_three.scan_board_for_matches( self.board_3x3_seq) seq_true = set() angle_answer = self.searcher_three.scan_board_for_matches( self.board_4x4_big_angle) angle_true = { Cell(0, 0, 0), Cell(0, 1, 0), Cell(0, 2, 0), Cell(0, 3, 0), Cell(0, 3, 1), Cell(0, 3, 2) } with self.subTest(object='zeros'): self.assertEqual(zeros_true, zeros_answer) with self.subTest(object='sequential'): self.assertEqual(seq_true, seq_answer) with self.subTest(object='angle'): self.assertEqual(angle_true, angle_answer)
class TestBoard(unittest.TestCase): def setUp(self): self.board = Board(columns=2, rows=2, n_shapes=3) board = np.array([[0, 1], [2, 0]]) self.board.set_board(board) def test_swap(self): """ test swapping two points """ p1 = Point(0, 0) p2 = Point(0, 1) self.board.swap(p1, p2) correct = np.array([[1, 0], [2, 0]]) self.assertEqual(correct.tolist(), self.board.board.tolist()) def test_move(self): point = Point(1, 1) direction = Point(-1, 0) correct = np.array([[0, 0], [2, 1]]) self.board.move(point, direction) self.assertEqual(self.board.board.tolist(), correct.tolist()) def test_getting_validate_board_size(self): """ test getting board size """ self.assertEqual(self.board.board_size, (2, 2)) def test_setting_incorrect_shaped_board(self): """ test setting bad board """ new_board = np.array([[0, 0], [0, 10]]) with self.assertRaises(ValueError): self.board.set_board(new_board) def test_setting_incorrect_sized_board(self): new_board = np.array([[0, 0, 0], [0, 0, 0]]) with self.assertRaises(ValueError): self.board.set_board(new_board) def test_get_shape(self): """ test getting shape of points """ points = [Point(0, 0), Point(1, 1)] correct_answers = [ self.board.board[0, 0], self.board.board[1, 1], ] board_answers = [self.board.get_shape(point) for point in points] for ind, point in enumerate(points): with self.subTest(point=point.get_coord()): self.assertEqual(correct_answers[ind], board_answers[ind]) def test_get_bad_shape(self): """ test getting shapes of incorrect points """ points = [ Point(-1, 0), Point(-1, -1), Point(1, -1), Point(10, 0), Point(0, 2), ] for point in points: with self.subTest(point=point.get_coord()): with self.assertRaises(OutOfBoardError): self.board.get_shape(point) def test_delete(self): points = {Point(0, 0), Point(1, 1)} deleted_board = np.array([[np.nan, 1.], [2., np.nan]], dtype='float') self.board.delete(points) self.assertTrue( np.allclose(self.board.board, deleted_board, equal_nan=True)) def test_get_line(self): true = np.array([0, 2]) answer = self.board.get_line(0) self.assertEqual(true.tolist(), answer.tolist()) def test_put_line(self): true = self.board.board.copy() true[:, 0] = [2, 2] self.board.put_line(0, np.array([2, 2])) answer = self.board.board self.assertEqual(true.tolist(), answer.tolist()) def test_put_mask(self): mask = np.ones_like(self.board.board, dtype=bool) mask[1, 1] = False true = np.array([[1, 1], [1, 0]]) self.board.put_mask(mask, [1, 1, 1]) self.assertEqual(true.tolist(), self.board.board.tolist())
class TestBoardImmove(TestBoard): def setUp(self): self.board = Board(columns=2, rows=2, n_shapes=3, immovable_shape=-1) board = np.array([[0, 1], [2, 0]]) self.board.set_board(board) self.board_wimove = Board(columns=2, rows=2, n_shapes=3, immovable_shape=-1) self.board_wimove.set_board(np.array([[-1, 0], [0, -1]])) def test_availability(self): with self.assertRaises(ImmovableShapeError): self.board_wimove.move(Point(0, 0), Point(0, 1)) with self.assertRaises(ImmovableShapeError): self.board_wimove.swap(Point(0, 0), Point(1, 1)) with self.assertRaises(ImmovableShapeError): self.board_wimove.delete({Point(0, 0)}) def test_putting(self): with self.assertRaises(ImmovableShapeError): mask = np.array([[True, False], [False, False]]) self.board_wimove.put_mask(mask, [1]) with self.assertRaises(ImmovableShapeError): ind = 0 self.board_wimove.put_line(ind, np.array([1, 1])) def test_shuffle(self): self.board_wimove.shuffle() true = np.array([[True, False], [False, True]]) answer = self.board_wimove.board == -1 np.testing.assert_array_equal(true, answer)