-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
103 lines (89 loc) · 2.54 KB
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import unittest
import blackjack
from lib import blackjack_lib as bj
ace = bj.Ace(name="Ace of Spades")
jack = bj.Card(name="Jack of Diamonds", points=10)
two = bj.Card(name="Two of Clubs", points = 2)
class TestBlackjackLib(unittest.TestCase):
def test_chip(self):
chip = bj.Chip(value=250)
print(chip)
def test_ace(self):
# card = bj.Ace(name="Ace of Spades")
card = ace
print(card)
def test_card(self):
# card = bj.Card(name="Jack of Diamonds", points=10)
card = jack
print(card)
def test_hand(self):
hand = bj.Hand()
print(hand.cards)
print(hand.scores)
def test_hand(self):
hand = bj.Hand()
# hand += jack
# hand += jack
# hand += jack
hand += ace
hand += ace
hand += ace
# hand += jack
hand += two
hand += two
hand += two
hand += two
# hand += ace
# hand += ace
# self.assertEqual(hand.scores, [10])
# for card in hand.cards:
# print(card)
print(hand)
self.assertEqual(hand.check_bust(), False)
def test_deck(self):
deck = bj.Deck()
for num in range(54):
print(f"\nDeck size before draw: {len(deck.cards)}")
print(deck.deal())
print(f"Deck size after draw: {len(deck.cards)}")
deck.shuffle()
print(f"Deck size after shuffle: {len(deck.cards)}")
print(deck.deal())
print(len(deck.cards))
def test_user(self):
user = bj.User(name="Katie")
user.hand += ace
user.hand += jack
user.display_hand()
print(user)
user_chip = user.bet(200)
print(user)
def test_dealer(self):
dealer = bj.Dealer()
print(dealer)
dealer.hand += ace
dealer.hand += jack
dealer.hide_card()
dealer.display_hand()
dealer.reveal_card()
dealer.display_hand()
def test_bets(self):
user = bj.User(name="Katie")
print(user)
user_chip = user.bet(200)
print(user)
user_chip.settle_bets('push')
print(user)
user_chip = user.bet(100)
user_chip.settle_bets('win')
print(user)
user_chip = user.bet(300)
user_chip.settle_bets('lose')
print(user)
def test_deal_cards(self):
deck = bj.Deck()
user = bj.User(name="Katie")
dealer = bj.Dealer()
deck.deal_hands(dealer, user)
if __name__ == "__main__":
unittest.main()