| LOW | tests/test_utils.py | 66 | def test_super_len_correctly_calculates_len_of_partially_read_file(self): |
| LOW | tests/test_utils.py | 73 | def test_super_len_handles_files_raising_weird_errors_in_tell(self, error): |
| LOW | tests/test_utils.py | 86 | def test_super_len_tell_ioerror(self, error): |
| LOW | tests/test_utils.py | 127 | def test_super_len_with__len__(self): |
| LOW | tests/test_utils.py | 132 | def test_super_len_with_no__len__(self): |
| LOW | tests/test_utils.py | 145 | def test_super_len_with_fileno(self): |
| LOW | tests/test_utils.py | 151 | def test_super_len_with_no_matches(self): |
| LOW | tests/test_utils.py | 165 | def test_not_vulnerable_to_bad_url_parsing(self, tmp_path, monkeypatch): |
| LOW | tests/test_utils.py | 173 | def test_empty_default_credentials_ignored(self, tmp_path, monkeypatch): |
| LOW | tests/test_utils.py | 263 | def test_bypass_no_proxy_keyword(self, url): |
| LOW | tests/test_utils.py | 277 | def test_not_bypass_no_proxy_keyword(self, url, monkeypatch): |
| LOW | tests/test_utils.py | 325 | def test_guess_filename_invalid(self, value): |
| LOW | tests/test_utils.py | 335 | def test_guess_filename_valid(self, value, expected_type): |
| LOW | tests/test_utils.py | 352 | def test_unzipped_paths_unchanged(self, path): |
| LOW | tests/test_utils.py | 355 | def test_zipped_paths_extracted(self, tmpdir): |
| LOW | tests/test_utils.py | 635 | def test__parse_content_type_header(value, expected): |
| LOW | tests/test_utils.py | 654 | def test_get_encoding_from_headers(value, expected): |
| LOW | tests/test_utils.py | 713 | def test_prepend_scheme_if_needed(value, expected): |
| LOW | tests/test_utils.py | 759 | def test_should_bypass_proxies(url, expected, monkeypatch): |
| LOW | tests/test_utils.py | 787 | def test_should_bypass_proxies_pass_only_hostname(url, expected): |
| LOW | tests/test_utils.py | 803 | def test_add_dict_to_cookiejar(cookiejar): |
| LOW | tests/test_utils.py | 838 | def test_should_bypass_proxies_no_proxy(url, expected, monkeypatch): |
| LOW | tests/test_utils.py | 861 | def test_should_bypass_proxies_no_proxy_domain_boundary(url, expected): |
| LOW | tests/test_utils.py | 886 | def test_should_bypass_proxies_win_registry(url, expected, override, monkeypatch): |
| LOW | tests/test_utils.py | 924 | def test_should_bypass_proxies_win_registry_bad_values(monkeypatch): |
| LOW | tests/test_utils.py | 974 | def test_set_environ_raises_exception(): |
| LOW | tests/test_utils.py | 426 | def test_bad_utf_like_encoding(self): |
| LOW | tests/test_utils.py | 491 | def test_requote_uri_with_unquoted_percents(uri, expected): |
| LOW | tests/test_packages.py | 8 | def test_can_access_idna_attribute(): |
| LOW | tests/test_packages.py | 12 | def test_can_access_chardet_attribute(): |
| LOW | tests/test_testserver.py | 63 | def test_basic_waiting_server(self): |
| LOW | tests/test_testserver.py | 117 | def test_requests_after_timeout_are_not_received(self): |
| LOW | tests/test_testserver.py | 130 | def test_request_recovery_with_bigger_timeout(self): |
| LOW | tests/test_testserver.py | 144 | def test_server_finishes_on_error(self): |
| LOW | tests/test_testserver.py | 156 | def test_server_finishes_when_no_connections(self): |
| LOW | tests/test_requests.py | 130 | def test_no_body_content_length(self, httpbin, method): |
| LOW | tests/test_requests.py | 135 | def test_empty_content_length(self, httpbin, method): |
| LOW | tests/test_requests.py | 139 | def test_override_content_length(self, httpbin): |
| LOW | tests/test_requests.py | 145 | def test_path_is_not_double_encoded(self): |
| LOW | tests/test_requests.py | 390 | def test_cookie_sent_on_redirect(self, httpbin): |
| LOW | tests/test_requests.py | 396 | def test_cookie_removed_on_expire(self, httpbin): |
| LOW | tests/test_requests.py | 406 | def test_cookie_quote_wrapped(self, httpbin): |
| LOW | tests/test_requests.py | 411 | def test_cookie_persists_via_api(self, httpbin): |
| LOW | tests/test_requests.py | 417 | def test_request_cookie_overrides_session_cookie(self, httpbin): |
| LOW | tests/test_requests.py | 425 | def test_request_cookies_not_persisted(self, httpbin): |
| LOW | tests/test_requests.py | 431 | def test_generic_cookiejar_works(self, httpbin): |
| LOW | tests/test_requests.py | 617 | def test_respect_proxy_env_on_send_self_prepared_request(self, httpbin): |
| LOW | tests/test_requests.py | 624 | def test_respect_proxy_env_on_send_session_prepared_request(self, httpbin): |
| LOW | tests/test_requests.py | 632 | def test_respect_proxy_env_on_send_with_redirects(self, httpbin): |
| LOW | tests/test_requests.py | 641 | def test_respect_proxy_env_on_get(self, httpbin): |
| LOW | tests/test_requests.py | 647 | def test_respect_proxy_env_on_request(self, httpbin): |
| LOW | tests/test_requests.py | 653 | def test_proxy_authorization_preserved_on_request(self, httpbin): |
| LOW | tests/test_requests.py | 1068 | def test_urlencoded_get_query_multivalued_param(self, httpbin): |
| LOW | tests/test_requests.py | 1073 | def test_form_encoded_post_query_multivalued_element(self, httpbin): |
| LOW | tests/test_requests.py | 1080 | def test_different_encodings_dont_break_post(self, httpbin): |
| LOW | tests/test_requests.py | 1731 | def test_header_remove_is_case_insensitive(self, httpbin): |
| LOW | tests/test_requests.py | 1738 | def test_params_are_merged_case_sensitive(self, httpbin): |
| LOW | tests/test_requests.py | 1744 | def test_long_authinfo_in_url(self): |
| LOW | tests/test_requests.py | 1753 | def test_header_keys_are_native(self, httpbin): |
| LOW | tests/test_requests.py | 1861 | def test_can_send_objects_with_files(self, httpbin, files): |
| 136 more matches not shown… |