コード例 #1
0
ファイル: test_ship.py プロジェクト: RyanMoussouni/battleship
    def setUp(self):
        # Ship parameters
        length = 5
        orientation = 0
        prow = (0, 0)
        random = True

        # Random positionning
        if random:
            length = rd.choice([3, 5])
            orientation = rd.randint(2)
            prow = (max(rd.randint(10) - length * orientation, 0),
                    max(rd.randint(10) - length * (1 - orientation), 0))

        self.ship = Ship(length=length, orientation=orientation, prow=prow)
        pass
コード例 #2
0
ファイル: test_ship.py プロジェクト: RyanMoussouni/battleship
    def test_valid_position(self):
        orientation = 0  #horizontal
        length = 5
        prow = (2, 3)
        ship = Ship(length=length, orientation=orientation, prow=prow)
        expPosition = {(2, 3), (2, 4), (2, 5), (2, 6), (2, 7)}

        self.assertEqual(ship.position, expPosition)
        pass
コード例 #3
0
ファイル: test_ship.py プロジェクト: RyanMoussouni/battleship
    def test_bottom_left_corner(self):
        length = self.length
        orientation = self.orientation
        prow = (0, 0)
        ship = Ship(length=length, orientation=orientation, prow=prow)

        if orientation:
            surrArea = {(k, 1) for k in range(length + 1)}.union({(length, 0)})
            self.assertEqual(ship.surrArea, surrArea)

        else:
            surrArea = {(1, k) for k in range(length + 1)}.union({(0, length)})
            self.assertEqual(ship.surrArea, surrArea)
        pass
コード例 #4
0
ファイル: test_ship.py プロジェクト: RyanMoussouni/battleship
class TestIsSunk(unittest.TestCase):
    def setUp(self):
        # Ship parameters
        length = 5
        orientation = 0
        prow = (0, 0)
        random = True

        # Random positionning
        if random:
            length = rd.choice([3, 5])
            orientation = rd.randint(2)
            prow = (max(rd.randint(10) - length * orientation, 0),
                    max(rd.randint(10) - length * (1 - orientation), 0))

        self.ship = Ship(length=length, orientation=orientation, prow=prow)
        pass

    def test_hit_all_ship_cells(self):
        hits = self.ship.position

        self.assertTrue(self.ship.is_sunk(hits=hits))
        pass

    def test_hit_only_part_ship_cells(self):
        position = list(self.ship.position)
        hits = {position[0], position[2]}

        self.assertFalse(self.ship.is_sunk(hits=hits))
        pass

    def test_hit_no_cells(self):
        hits = {}

        self.assertFalse(self.ship.is_sunk(hits=hits))
        pass
コード例 #5
0
ファイル: test_ship.py プロジェクト: RyanMoussouni/battleship
    def test_bottom_right_corner(self):
        length = self.length
        orientation = self.orientation
        prow = (0, 9 - (length - 1) * (1 - orientation))
        ship = Ship(length=length, orientation=orientation, prow=prow)

        if orientation:
            surrArea = {(k, 8) for k in range(length + 1)}.union({(length, 9)})
            self.assertEqual(ship.surrArea, surrArea)

        else:
            surrArea = {(1, 9 - k)
                        for k in range(length + 1)
                        }.union({(0, 10 - (length + 1))})
            self.assertEqual(ship.surrArea, surrArea)
        pass
コード例 #6
0
ファイル: test_ship.py プロジェクト: RyanMoussouni/battleship
    def test_top_left_corner(self):
        length = self.length
        orientation = self.orientation
        prow = (9 - (length - 1) * orientation, 0)
        ship = Ship(length=length, orientation=orientation, prow=prow)

        if orientation:
            surrArea = {(9 - k, 1)
                        for k in range(length + 1)}.union({(10 - (length + 1),
                                                            0)})
            self.assertEqual(ship.surrArea, surrArea)

        else:
            surrArea = {(8, k) for k in range(length + 1)}.union({(9, length)})
            self.assertEqual(ship.surrArea, surrArea)
        pass