Ejemplo n.º 1
0
 def test_normal(self):
     result = get_score_inter('547/23XX-3X81453-')
     self.assertEqual(result, 102)
     with self.assertRaises(ValueError):
         get_score_inter('547/23XX-3X81453')
     with self.assertRaises(ValueError):
         get_score_inter('547/23XX-3X81453-5')
Ejemplo n.º 2
0
 def test_all_numbers(self):
     result = get_score_inter('12345463728121341812')
     self.assertEqual(result, 68)
     with self.assertRaises(ValueError):
         get_score_inter('12345564738291343912')
Ejemplo n.º 3
0
 def test_all_spares(self):
     result = get_score_inter('1/2/3/4/5/6/7/8/9/9/')
     self.assertEqual(result, 153)
     with self.assertRaises(ValueError):
         get_score_inter('1/2/3/4/5/6/7/8/9///')
Ejemplo n.º 4
0
 def test_all_fails(self):
     result = get_score_inter('--------------------')
     self.assertEqual(result, 0)
Ejemplo n.º 5
0
 def test_all_strikes(self):
     result = get_score_inter('XXXXXXXXXX')
     self.assertEqual(result, 270)
Ejemplo n.º 6
0
 def test_lower_case(self):
     result = get_score_inter('547/23Xx-3x81453-')
     self.assertEqual(result, 102)
Ejemplo n.º 7
0
 def test_wrong_symbol(self):
     with self.assertRaises(ValueError):
         get_score_inter('547/23XX-3y81453-')
     with self.assertRaises(ValueError):
         get_score_inter('547/23XX-3x8140-')
Ejemplo n.º 8
0
def tour_results(text_file, version):
    text_dict = {}
    new_list = []
    players_list = []
    players = {}
    sum_max = []
    with open(text_file, mode='r', encoding='utf8') as file:
        for line in file:
            text_file += line
            text_list = text_file.split('\n\n')
        for i in text_list:
            j = str(i).split('\n')
            n = {j[0]: j[1:]}
            text_dict.update(n)
        for key, value in text_dict.items():
            score1 = 0
            max = None
            if len(key) > 10:
                key_1 = key[17:]
            else:
                key_1 = key[3:]
            new_list.append('{:*^90} \n'.format(key_1 + ' '))
            for tour_player in value:
                if not tour_player.startswith('winner'):
                    tour_player_list = tour_player.split('\t')
                    result = tour_player_list[1]
                    players_list.append(tour_player_list[0])
                    if version != 'russian' and version != 'inter':
                        raise ValueError(
                            'Ошибка. Не указана версия программы расчета.')
                    else:
                        try:
                            if version == 'russian':
                                score = get_score(result)
                            elif version == 'inter':
                                score = get_score_inter(result)
                            if score > score1:
                                max = tour_player_list[0]
                                score1 = score
                            tour_player_list1 = [
                                '{:<10}'.format(tour_player_list[0]),
                                '{:<20}'.format(result), '{:<10}'.format(score)
                            ]
                            tour_player1 = '\t'.join(tour_player_list1)
                        except ValueError as exc:
                            tour_player_list1 = [
                                '{:<10}'.format(tour_player_list[0]),
                                '{:<25}'.format(result),
                                '{:>10}'.format(str(exc))
                            ]
                            tour_player1 = '\t'.join(tour_player_list1)
                else:
                    if max:
                        sum_max.append(max)
                        tour_player1 = f'\nПобедитель {max}!'
                    else:
                        tour_player1 = '\nВ туре нет победителя из-за ошибочных данных'

                y = {
                    tour_player_list[0]: [
                        players_list.count(tour_player_list[0]),
                        sum_max.count(tour_player_list[0])
                    ]
                }  # Выполнение дополнительного задания
                players.update(y)
                sorted_list = sorted(players.items(),
                                     key=lambda x: (x[1][1], x[1][0]),
                                     reverse=True)
                new_list.append(tour_player1)
        print('+', 8 * '-', '+', 10 * '-', '+', 12 * '-', '+', 11 * '-', '+')
        print('|{:^10}|'.format('Место'), '{:^10}'.format('Игрок'),
              '|{:<14}|'.format('Сыграно матчей'),
              '{:<12}|'.format('Всего побед'))
        print('+', 8 * '-', '+', 10 * '-', '+', 12 * '-', '+', 11 * '-', '+')
        k = 1
        for i in sorted_list:
            print('|{:^10}|'.format(k), '{:^10}'.format(i[0]),
                  '|{:^14}|'.format(i[1][0]), '{:^12}|'.format(i[1][1]))
            k += 1
        print('+', 8 * '-', '+', 10 * '-', '+', 12 * '-', '+', 11 * '-', '+')
        new_results = '\n'.join(new_list)

    return new_results