Beispiel #1
0
    def test_get_match_history_with_limited_matches(self):
        url = BASE_URL + GET_MATCH_HISTORY + request_pars(LANGUAGE_PAR, 'account_id=None', STEAM_ID_PAR,
                                                          'format=json', 'matches_requested=1')
        request = self.executor(url)

        self.assertEqual(request.status_code, 200)
        dota2dict = response.build(request, url)
        self.assertEqual(len(dota2dict['matches']), 1)
Beispiel #2
0
    def test_parse_items_names_in_response(self):
        build = response.build(RequestMock().configure_single_match_result(), 'SomeUrl')

        self.assertEqual(build['players'][0]['item_0_name'], "Phase Boots")
        self.assertEqual(build['players'][0]['item_1_name'], "Shadow Blade")
        self.assertEqual(build['players'][0]['item_2_name'], "Dagon")
        self.assertEqual(build['players'][0]['item_3_name'], "Hand of Midas")
        self.assertEqual(build['players'][0]['item_4_name'], "Town Portal Scroll")
Beispiel #3
0
    def test_parse_items_names_in_response(self):
        build = response.build(RequestMock().configure_single_match_result(), 'SomeUrl')

        self.assertEqual(build['players'][0]['item_0_name'], "Phase Boots")
        self.assertEqual(build['players'][0]['item_1_name'], "Shadow Blade")  # I think the API did a whoopsie
        self.assertEqual(build['players'][0]['item_2_name'], "Dagon")
        self.assertEqual(build['players'][0]['item_3_name'], "Hand of Midas")
        self.assertEqual(build['players'][0]['item_4_name'], "Town Portal Scroll")
Beispiel #4
0
    def test_get_match_history_with_limited_matches(self):
        url = BASE_URL + GET_MATCH_HISTORY + request_pars(LANGUAGE_PAR, 'account_id=None', STEAM_ID_PAR,
                                                          'format=json', 'matches_requested=1')
        request = self.executor(url)

        self.assertEqual(request.status_code, 200)
        dota2dict = response.build(request, url)
        self.assertEqual(len(dota2dict['matches']), 1)
Beispiel #5
0
    def test_parse_leaver_status(self):
        build = response.build(RequestMock().configure_single_match_result(),
                               'SomeUrl')

        self.assertEqual(build['players'][0]['leaver_status'], 0)
        self.assertEqual(build['players'][0]['leaver_status_name'], "NONE")
        self.assertEqual(build['players'][0]['leaver_status_description'],
                         "finished match, no abandon")
Beispiel #6
0
    def test_parse_hero_names_in_response(self):
        build = response.build(RequestMock().configure_single_match_result(), 'SomeUrl')

        self.assertEqual(build['players'][0]['hero_name'], "Nature's Prophet")
        self.assertEqual(build['players'][1]['hero_name'], "Naga Siren")
        self.assertEqual(build['players'][2]['hero_name'], "Death Prophet")
        self.assertEqual(build['players'][3]['hero_name'], "Weaver")
        self.assertEqual(build['players'][4]['hero_name'], "Undying")
        self.assertEqual(build['players'][5]['hero_name'], "Ember Spirit")
        self.assertEqual(build['players'][6]['hero_name'], "Pudge")
        self.assertEqual(build['players'][7]['hero_name'], "Meepo")
        self.assertEqual(build['players'][8]['hero_name'], "Lich")
        self.assertEqual(build['players'][9]['hero_name'], "Kunkka")
Beispiel #7
0
    def test_get_match_history_from_only_one_player(self):
        url = BASE_URL + GET_MATCH_HISTORY + request_pars(LANGUAGE_PAR, 'account_id=%d' % PLAYER_ID, STEAM_ID_PAR,
                                                          'format=json', 'matches_requested=10')
        request = self.executor(url)

        self.assertEqual(request.status_code, 200)

        dota2dict = response.build(request, url)

        self.assertEqual(len(dota2dict['matches']), 10)
        for match in dota2dict['matches']:
            player_is_in_match = bool([p for p in match['players'] if p['account_id'] == PLAYER_ID])
            self.assertTrue(player_is_in_match, 'Player was not in a match from the result')
Beispiel #8
0
    def test_parse_hero_names_in_response(self):
        build = response.build(RequestMock().configure_single_match_result(), 'SomeUrl')

        self.assertEqual(build['players'][0]['hero_name'], "Nature's Prophet")
        self.assertEqual(build['players'][1]['hero_name'], "Naga Siren")
        self.assertEqual(build['players'][2]['hero_name'], "Death Prophet")
        self.assertEqual(build['players'][3]['hero_name'], "Weaver")
        self.assertEqual(build['players'][4]['hero_name'], "Undying")
        self.assertEqual(build['players'][5]['hero_name'], "Ember Spirit")
        self.assertEqual(build['players'][6]['hero_name'], "Pudge")
        self.assertEqual(build['players'][7]['hero_name'], "Meepo")
        self.assertEqual(build['players'][8]['hero_name'], "Lich")
        self.assertEqual(build['players'][9]['hero_name'], "Kunkka")
Beispiel #9
0
    def test_get_match_history_from_only_one_player(self):
        url = BASE_URL + GET_MATCH_HISTORY + request_pars(LANGUAGE_PAR, 'account_id=112351324', STEAM_ID_PAR,
                                                          'format=json', 'matches_requested=10')
        request = self.executor(url)

        self.assertEqual(request.status_code, 200)

        dota2dict = response.build(request, url)

        self.assertEqual(len(dota2dict['matches']), 10)
        for match in dota2dict['matches']:
            player_is_in_match = bool([p for p in match['players'] if p['account_id'] == 112351324])
            self.assertTrue(player_is_in_match, 'Player was not in a match from the result')
Beispiel #10
0
    def test_parse_lobby_name_in_response(self):
        build = response.build(RequestMock().configure_single_match_result(), 'SomeUrl')

        self.assertEqual(build['cluster_name'], "Europe West")
Beispiel #11
0
    def test_parse_lobby_name_in_response(self):
        build = response.build(RequestMock().configure_single_match_result(), 'SomeUrl')

        self.assertEqual(build['game_mode_name'], "All pick")
Beispiel #12
0
    def test_parse_lobby_name_in_response(self):
        build = response.build(RequestMock().configure_single_match_result(), 'SomeUrl')

        self.assertEqual(build['lobby_name'], "Public matchmaking")
Beispiel #13
0
    def test_parse_leaver_status(self):
        build = response.build(RequestMock().configure_single_match_result(), 'SomeUrl')

        self.assertEqual(build['players'][0]['leaver_status'], 0)
        self.assertEqual(build['players'][0]['leaver_status_name'], "NONE")
        self.assertEqual(build['players'][0]['leaver_status_description'], "finished match, no abandon")
Beispiel #14
0
    def test_parse_lobby_name_in_response(self):
        build = response.build(RequestMock().configure_single_match_result(), 'SomeUrl')

        self.assertEqual(build['cluster_name'], "Europe West")
Beispiel #15
0
    def test_parse_lobby_name_in_response(self):
        build = response.build(RequestMock().configure_single_match_result(), 'SomeUrl')

        self.assertEqual(build['game_mode_name'], "All pick")
Beispiel #16
0
    def test_parse_lobby_name_in_response(self):
        build = response.build(RequestMock().configure_single_match_result(), 'SomeUrl')

        self.assertEqual(build['lobby_name'], "Public matchmaking")