2023-07-15 15:27:31 -07:00
|
|
|
# These tests are auto-generated with test data from:
|
|
|
|
|
# https://github.com/exercism/problem-specifications/tree/main/exercises/poker/canonical-data.json
|
2023-12-27 05:08:18 -08:00
|
|
|
# File last updated on 2023-12-27
|
2023-07-15 15:27:31 -07:00
|
|
|
|
2015-09-13 17:46:02 +02:00
|
|
|
import unittest
|
|
|
|
|
|
2021-01-31 16:49:12 -05:00
|
|
|
from poker import (
|
|
|
|
|
best_hands,
|
|
|
|
|
)
|
2015-09-13 17:46:02 +02:00
|
|
|
|
2019-10-31 12:40:55 +01:00
|
|
|
|
2015-09-13 17:46:02 +02:00
|
|
|
class PokerTest(unittest.TestCase):
|
2018-02-19 23:14:07 +08:00
|
|
|
def test_single_hand_always_wins(self):
|
2019-10-31 12:40:55 +01:00
|
|
|
self.assertEqual(best_hands(["4S 5S 7H 8D JC"]), ["4S 5S 7H 8D JC"])
|
2018-02-19 23:14:07 +08:00
|
|
|
|
|
|
|
|
def test_highest_card_out_of_all_hands_wins(self):
|
2019-10-31 12:40:55 +01:00
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["4D 5S 6S 8D 3C", "2S 4C 7S 9H 10H", "3S 4S 5D 6H JH"]),
|
|
|
|
|
["3S 4S 5D 6H JH"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_a_tie_has_multiple_winners(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(
|
|
|
|
|
[
|
|
|
|
|
"4D 5S 6S 8D 3C",
|
|
|
|
|
"2S 4C 7S 9H 10H",
|
|
|
|
|
"3S 4S 5D 6H JH",
|
|
|
|
|
"3H 4H 5C 6C JD",
|
|
|
|
|
]
|
|
|
|
|
),
|
|
|
|
|
["3S 4S 5D 6H JH", "3H 4H 5C 6C JD"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_multiple_hands_with_the_same_high_cards_tie_compares_next_highest_ranked_down_to_last_card(
|
2021-01-31 16:49:12 -05:00
|
|
|
self,
|
2019-10-31 12:40:55 +01:00
|
|
|
):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["3S 5H 6S 8D 7H", "2S 5D 6D 8C 7S"]), ["3S 5H 6S 8D 7H"]
|
|
|
|
|
)
|
2018-02-19 23:14:07 +08:00
|
|
|
|
2023-12-27 05:08:18 -08:00
|
|
|
def test_winning_high_card_hand_also_has_the_lowest_card(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["2S 5H 6S 8D 7H", "3S 4D 6D 8C 7S"]), ["2S 5H 6S 8D 7H"]
|
|
|
|
|
)
|
|
|
|
|
|
2018-02-19 23:14:07 +08:00
|
|
|
def test_one_pair_beats_high_card(self):
|
2019-10-31 12:40:55 +01:00
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["4S 5H 6C 8D KH", "2S 4H 6S 4D JH"]), ["2S 4H 6S 4D JH"]
|
|
|
|
|
)
|
2018-02-19 23:14:07 +08:00
|
|
|
|
|
|
|
|
def test_highest_pair_wins(self):
|
2019-10-31 12:40:55 +01:00
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["4S 2H 6S 2D JH", "2S 4H 6C 4D JD"]), ["2S 4H 6C 4D JD"]
|
|
|
|
|
)
|
2018-02-19 23:14:07 +08:00
|
|
|
|
2023-12-27 05:08:18 -08:00
|
|
|
def test_both_hands_have_the_same_pair_high_card_wins(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["4H 4S AH JC 3D", "4C 4D AS 5D 6C"]), ["4H 4S AH JC 3D"]
|
|
|
|
|
)
|
|
|
|
|
|
2018-02-19 23:14:07 +08:00
|
|
|
def test_two_pairs_beats_one_pair(self):
|
2019-10-31 12:40:55 +01:00
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["2S 8H 6S 8D JH", "4S 5H 4C 8C 5C"]), ["4S 5H 4C 8C 5C"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_both_hands_have_two_pairs_highest_ranked_pair_wins(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["2S 8H 2D 8D 3H", "4S 5H 4C 8S 5D"]), ["2S 8H 2D 8D 3H"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_both_hands_have_two_pairs_with_the_same_highest_ranked_pair_tie_goes_to_low_pair(
|
2021-01-31 16:49:12 -05:00
|
|
|
self,
|
2019-10-31 12:40:55 +01:00
|
|
|
):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["2S QS 2C QD JH", "JD QH JS 8D QC"]), ["JD QH JS 8D QC"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_both_hands_have_two_identically_ranked_pairs_tie_goes_to_remaining_card_kicker(
|
2021-01-31 16:49:12 -05:00
|
|
|
self,
|
2019-10-31 12:40:55 +01:00
|
|
|
):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["JD QH JS 8D QC", "JS QS JC 2D QD"]), ["JD QH JS 8D QC"]
|
|
|
|
|
)
|
2018-02-19 23:14:07 +08:00
|
|
|
|
2022-05-05 19:59:15 -07:00
|
|
|
def test_both_hands_have_two_pairs_that_add_to_the_same_value_win_goes_to_highest_pair(
|
|
|
|
|
self,
|
|
|
|
|
):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["6S 6H 3S 3H AS", "7H 7S 2H 2S AC"]), ["7H 7S 2H 2S AC"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_two_pairs_first_ranked_by_largest_pair(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["5C 2S 5S 4H 4C", "6S 2S 6H 7C 2C"]), ["6S 2S 6H 7C 2C"]
|
|
|
|
|
)
|
|
|
|
|
|
2018-02-19 23:14:07 +08:00
|
|
|
def test_three_of_a_kind_beats_two_pair(self):
|
2019-10-31 12:40:55 +01:00
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["2S 8H 2H 8D JH", "4S 5H 4C 8S 4H"]), ["4S 5H 4C 8S 4H"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_both_hands_have_three_of_a_kind_tie_goes_to_highest_ranked_triplet(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["2S 2H 2C 8D JH", "4S AH AS 8C AD"]), ["4S AH AS 8C AD"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_with_multiple_decks_two_players_can_have_same_three_of_a_kind_ties_go_to_highest_remaining_cards(
|
2021-01-31 16:49:12 -05:00
|
|
|
self,
|
2019-10-31 12:40:55 +01:00
|
|
|
):
|
|
|
|
|
self.assertEqual(
|
2023-12-27 05:08:18 -08:00
|
|
|
best_hands(["5S AH AS 7C AD", "4S AH AS 8C AD"]), ["4S AH AS 8C AD"]
|
2019-10-31 12:40:55 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_a_straight_beats_three_of_a_kind(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["4S 5H 4C 8D 4H", "3S 4D 2S 6D 5C"]), ["3S 4D 2S 6D 5C"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_aces_can_end_a_straight_10_j_q_k_a(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["4S 5H 4C 8D 4H", "10D JH QS KD AC"]), ["10D JH QS KD AC"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_aces_can_start_a_straight_a_2_3_4_5(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["4S 5H 4C 8D 4H", "4D AH 3S 2D 5C"]), ["4D AH 3S 2D 5C"]
|
|
|
|
|
)
|
|
|
|
|
|
2022-12-03 00:25:20 -08:00
|
|
|
def test_aces_cannot_be_in_the_middle_of_a_straight_q_k_a_2_3(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["2C 3D 7H 5H 2S", "QS KH AC 2D 3S"]), ["2C 3D 7H 5H 2S"]
|
|
|
|
|
)
|
|
|
|
|
|
2019-10-31 12:40:55 +01:00
|
|
|
def test_both_hands_with_a_straight_tie_goes_to_highest_ranked_card(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["4S 6C 7S 8D 5H", "5S 7H 8S 9D 6H"]), ["5S 7H 8S 9D 6H"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_even_though_an_ace_is_usually_high_a_5_high_straight_is_the_lowest_scoring_straight(
|
2021-01-31 16:49:12 -05:00
|
|
|
self,
|
2019-10-31 12:40:55 +01:00
|
|
|
):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["2H 3C 4D 5D 6H", "4S AH 3S 2D 5H"]), ["2H 3C 4D 5D 6H"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_flush_beats_a_straight(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["4C 6H 7D 8D 5H", "2S 4S 5S 6S 7S"]), ["2S 4S 5S 6S 7S"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_both_hands_have_a_flush_tie_goes_to_high_card_down_to_the_last_one_if_necessary(
|
2021-01-31 16:49:12 -05:00
|
|
|
self,
|
2019-10-31 12:40:55 +01:00
|
|
|
):
|
|
|
|
|
self.assertEqual(
|
2023-12-27 05:08:18 -08:00
|
|
|
best_hands(["2H 7H 8H 9H 6H", "3S 5S 6S 7S 8S"]), ["2H 7H 8H 9H 6H"]
|
2019-10-31 12:40:55 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_full_house_beats_a_flush(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["3H 6H 7H 8H 5H", "4S 5H 4C 5D 4H"]), ["4S 5H 4C 5D 4H"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_both_hands_have_a_full_house_tie_goes_to_highest_ranked_triplet(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["4H 4S 4D 9S 9D", "5H 5S 5D 8S 8D"]), ["5H 5S 5D 8S 8D"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_with_multiple_decks_both_hands_have_a_full_house_with_the_same_triplet_tie_goes_to_the_pair(
|
2021-01-31 16:49:12 -05:00
|
|
|
self,
|
2019-10-31 12:40:55 +01:00
|
|
|
):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["5H 5S 5D 9S 9D", "5H 5S 5D 8S 8D"]), ["5H 5S 5D 9S 9D"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_four_of_a_kind_beats_a_full_house(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["4S 5H 4D 5D 4H", "3S 3H 2S 3D 3C"]), ["3S 3H 2S 3D 3C"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_both_hands_have_four_of_a_kind_tie_goes_to_high_quad(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["2S 2H 2C 8D 2D", "4S 5H 5S 5D 5C"]), ["4S 5H 5S 5D 5C"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_with_multiple_decks_both_hands_with_identical_four_of_a_kind_tie_determined_by_kicker(
|
2021-01-31 16:49:12 -05:00
|
|
|
self,
|
2019-10-31 12:40:55 +01:00
|
|
|
):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["3S 3H 2S 3D 3C", "3S 3H 4S 3D 3C"]), ["3S 3H 4S 3D 3C"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_straight_flush_beats_four_of_a_kind(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["4S 5H 5S 5D 5C", "7S 8S 9S 6S 10S"]), ["7S 8S 9S 6S 10S"]
|
|
|
|
|
)
|
|
|
|
|
|
2022-12-03 00:25:20 -08:00
|
|
|
def test_aces_can_end_a_straight_flush_10_j_q_k_a(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["KC AH AS AD AC", "10C JC QC KC AC"]), ["10C JC QC KC AC"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_aces_can_start_a_straight_flush_a_2_3_4_5(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["KS AH AS AD AC", "4H AH 3H 2H 5H"]), ["4H AH 3H 2H 5H"]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def test_aces_cannot_be_in_the_middle_of_a_straight_flush_q_k_a_2_3(self):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["2C AC QC 10C KC", "QH KH AH 2H 3H"]), ["2C AC QC 10C KC"]
|
|
|
|
|
)
|
|
|
|
|
|
2022-10-13 23:09:26 +11:00
|
|
|
def test_both_hands_have_a_straight_flush_tie_goes_to_highest_ranked_card(self):
|
2019-10-31 12:40:55 +01:00
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["4H 6H 7H 8H 5H", "5S 7S 8S 9S 6S"]), ["5S 7S 8S 9S 6S"]
|
|
|
|
|
)
|
|
|
|
|
|
2022-12-03 00:25:20 -08:00
|
|
|
def test_even_though_an_ace_is_usually_high_a_5_high_straight_flush_is_the_lowest_scoring_straight_flush(
|
|
|
|
|
self,
|
|
|
|
|
):
|
|
|
|
|
self.assertEqual(
|
|
|
|
|
best_hands(["2H 3H 4H 5H 6H", "4D AD 3D 2D 5D"]), ["2H 3H 4H 5H 6H"]
|
|
|
|
|
)
|