def test_additonal_info(self):
     uuid = "hoge"
     self.assertIn(uuid, U.visualize_game_start(game_info, uuid))
     self.assertIn(uuid, U.visualize_round_start(2, ['C2', 'HQ'], seats, uuid))
     self.assertIn(uuid, U.visualize_street_start("preflop", "dummy", uuid))
     self.assertIn(uuid, U.visualize_declare_action(valid_actions, ['CA', 'DK'], round_state, uuid))
     self.assertIn(uuid, U.visualize_game_update(new_action, round_state, uuid))
     self.assertIn(uuid, U.visualize_round_result(winners, hand_info, round_state, uuid))
 def test_visualize_game_start(self):
     s = U.visualize_game_start(game_info)
     self.assertIn("3 players game", s)
     self.assertIn("10 round", s)
     self.assertIn("start stack = 100", s)
     self.assertIn("ante = 5", s)
     self.assertIn("small blind = 10", s)
     self.assertIn("after 5 round", s)
Esempio n. 3
0
 def test_visualize_game_start(self):
     s = U.visualize_game_start(game_info)
     self.assertIn('3 players game', s)
     self.assertIn('10 round', s)
     self.assertIn('start stack = 100', s)
     self.assertIn('ante = 5', s)
     self.assertIn('small blind = 10', s)
     self.assertIn('after 5 round', s)
Esempio n. 4
0
 def test_additonal_info(self):
     uuid = 'hoge'
     self.assertIn(uuid, U.visualize_game_start(game_info, uuid))
     self.assertIn(uuid,
                   U.visualize_round_start(2, ['2c', 'Qh'], seats, uuid))
     self.assertIn(uuid, U.visualize_street_start('preflop', 'dummy', uuid))
     self.assertIn(
         uuid,
         U.visualize_declare_action(valid_actions, ['Ac', 'Kd'],
                                    round_state, uuid))
     self.assertIn(uuid,
                   U.visualize_game_update(new_action, round_state, uuid))
     self.assertIn(
         uuid,
         U.visualize_round_result(winners, hand_info, round_state, uuid))
Esempio n. 5
0
 def receive_game_start_message(self, game_info):
   print(U.visualize_game_start(game_info, self.uuid))
   self.__wait_until_input()
Esempio n. 6
0
 def receive_game_start_message(self, game_info):
     print(U.visualize_game_start(game_info, self.uuid))
     quote = "게임이 시작되었습니다."
     ##여기에 게임 정보 받아서 입력
     tts.playTts(tts, quote)
     self.__wait_until_input()
Esempio n. 7
0
 def receive_game_start_message(self, game_info):
   print(U.visualize_game_start(game_info, self.uuid))
   self.__wait_until_input()
Esempio n. 8
0
 def receive_game_start_message(self, game_info):
     print(U.visualize_game_start(game_info, self.uuid))