コード例 #1
0
ファイル: moves.py プロジェクト: thewrongjames/chessapi
def test_move(self):
    self.game.reset_board()
    self.game.move(chessapi.DiscreteVector(3, 1), (3, 3), self.player_1)
    self.game.move((1, 7), chessapi.DiscreteVector(2, 5), self.player_2)
    self.assertEqual(type(self.game.piece_at_position((2, 5))),
                     chessapi.Knight)
    self.assertIsNone(
        self.game.piece_at_position(chessapi.DiscreteVector(3, 1)))
コード例 #2
0
 def test_multiplication_validation(self):
     a = chessapi.DiscreteVector(16, -42)
     with self.assertRaises(TypeError):
         b = a * a
     with self.assertRaises(TypeError):
         b = a * 'eeeeeeeeeeeeedssad'
     with self.assertRaises(TypeError):
         b = a * 2334.678467
コード例 #3
0
 def test_multiplication(self):
     a = chessapi.DiscreteVector(-6, 7)
     b = a * -9
     self.assertEqual(b.x, 54)
     self.assertEqual(b.y, -63)
     c = 2 * b
     self.assertEqual(c.x, 108)
     self.assertEqual(c.y, -126)
コード例 #4
0
 def test_subtraction_validation(self):
     a = chessapi.DiscreteVector(8, -2)
     with self.assertRaises(TypeError):
         b = a - 3
     with self.assertRaises(TypeError):
         b = a - 'Dadfasdfhukj.ad'
     with self.assertRaises(TypeError):
         b = a - 2334.678467
コード例 #5
0
 def test_addition_validation(self):
     a = chessapi.DiscreteVector(1, 2)
     with self.assertRaises(TypeError):
         b = a + 5
     with self.assertRaises(TypeError):
         b = a + 'fgasfdg'
     with self.assertRaises(TypeError):
         b = a + 0.2342345667
コード例 #6
0
ファイル: validation.py プロジェクト: thewrongjames/chessapi
def test_player_validation(self):
    self.game.reset_board()
    with self.assertRaises(chessapi.PlayerNotInGameError):
        self.game.move(
            chessapi.DiscreteVector(3, 1),
            (3, 3),
            chessapi.Player(chessapi.BLACK)
        )
コード例 #7
0
 def test_division_validation(self):
     a = chessapi.DiscreteVector(3, -2)
     with self.assertRaises(TypeError):
         b = a / a
     with self.assertRaises(TypeError):
         b = a / ';"/756fa'
     with self.assertRaises(TypeError):
         b = a / 3.14295
     with self.assertRaises(TypeError):
         b = 5 / a
コード例 #8
0
ファイル: test_pieces.py プロジェクト: thewrongjames/chessapi
 def test_initialisation(self):
     """
     Makes sure that basic initialisation of the pieces does not raise any
     errors.
     """
     chessapi.Pawn(
         chessapi.DiscreteVector(0, 0), chessapi.WHITE,
         chessapi.Game(chessapi.Player(chessapi.WHITE),
                       chessapi.Player(chessapi.BLACK)))
     chessapi.Rook(
         chessapi.DiscreteVector(0, 0), chessapi.BLACK,
         chessapi.Game(chessapi.Player(chessapi.WHITE),
                       chessapi.Player(chessapi.BLACK)))
     chessapi.Knight(
         chessapi.DiscreteVector(0, 0), chessapi.WHITE,
         chessapi.Game(chessapi.Player(chessapi.WHITE),
                       chessapi.Player(chessapi.BLACK)))
     chessapi.Bishop(
         chessapi.DiscreteVector(0, 0), chessapi.BLACK,
         chessapi.Game(chessapi.Player(chessapi.WHITE),
                       chessapi.Player(chessapi.BLACK)))
     chessapi.Queen(
         chessapi.DiscreteVector(0, 0), chessapi.WHITE,
         chessapi.Game(chessapi.Player(chessapi.WHITE),
                       chessapi.Player(chessapi.BLACK)))
     chessapi.King(
         chessapi.DiscreteVector(0, 0), chessapi.BLACK,
         chessapi.Game(chessapi.Player(chessapi.WHITE),
                       chessapi.Player(chessapi.BLACK)))
コード例 #9
0
 def test_division(self):
     a = chessapi.DiscreteVector(-6, 7)
     b = a / 2
     self.assertEqual(b.x, -3)
     self.assertEqual(b.y, 4)
コード例 #10
0
 def test_initialisation(self):
     with self.assertRaises(TypeError):
         chessapi.DiscreteVector(0.452, 5), TypeError
     with self.assertRaises(TypeError):
         chessapi.DiscreteVector(0, 'asd'), TypeError
コード例 #11
0
 def test_subtraction(self):
     a = chessapi.DiscreteVector(-23, 17)
     b = chessapi.DiscreteVector(-8, 12)
     c = a - b
     self.assertEqual(c.x, -15)
     self.assertEqual(c.y, 5)
コード例 #12
0
 def test_addition(self):
     a = chessapi.DiscreteVector(1, 2)
     b = chessapi.DiscreteVector(3, -5)
     c = a + b
     self.assertEqual(c.x, 4)
     self.assertEqual(c.y, -3)
コード例 #13
0
ファイル: validation.py プロジェクト: thewrongjames/chessapi
def test_player_turn_validation(self):
    self.game.reset_board()
    with self.assertRaises(chessapi.NotPlayersTurnError):
        self.game.move((1, 7), chessapi.DiscreteVector(2, 5), self.player_2)
コード例 #14
0
ファイル: test_pieces.py プロジェクト: thewrongjames/chessapi
 def setUp(self):
     self.piece = chessapi.Piece(
         chessapi.DiscreteVector(0, 0), chessapi.WHITE,
         chessapi.Game(chessapi.Player(chessapi.WHITE),
                       chessapi.Player(chessapi.BLACK)))