File size: 3,227 Bytes
abeebae | 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 | import unittest
from huggingface_hub.utils._errors import (
EntryNotFoundError,
RepositoryNotFoundError,
RevisionNotFoundError,
_raise_for_status,
_raise_with_request_id,
)
from requests.exceptions import HTTPError
from requests.models import Response
class TestErrorUtils(unittest.TestCase):
def test__raise_for_status_repo_not_found(self):
response = Response()
response.headers = {"X-Error-Code": "RepoNotFound", "X-Request-Id": 123}
response.status_code = 404
with self.assertRaisesRegex(
RepositoryNotFoundError, "Repository Not Found"
) as context:
_raise_for_status(response)
self.assertEqual(context.exception.response.status_code, 404)
self.assertIn("Request ID: 123", str(context.exception))
def test__raise_for_status_repo_not_found_without_error_code(self):
response = Response()
response.headers = {"X-Request-Id": 123}
response.status_code = 401
with self.assertRaisesRegex(
RepositoryNotFoundError, "Repository Not Found"
) as context:
_raise_for_status(response)
self.assertEqual(context.exception.response.status_code, 401)
self.assertIn("Request ID: 123", str(context.exception))
def test_raise_for_status_revision_not_found(self):
response = Response()
response.headers = {"X-Error-Code": "RevisionNotFound", "X-Request-Id": 123}
response.status_code = 404
with self.assertRaisesRegex(
RevisionNotFoundError, "Revision Not Found"
) as context:
_raise_for_status(response)
self.assertEqual(context.exception.response.status_code, 404)
self.assertIn("Request ID: 123", str(context.exception))
def test_raise_for_status_entry_not_found(self):
response = Response()
response.headers = {"X-Error-Code": "EntryNotFound", "X-Request-Id": 123}
response.status_code = 404
with self.assertRaisesRegex(EntryNotFoundError, "Entry Not Found") as context:
_raise_for_status(response)
self.assertEqual(context.exception.response.status_code, 404)
self.assertIn("Request ID: 123", str(context.exception))
def test_raise_for_status_fallback(self):
response = Response()
response.status_code = 404
response.headers = {
"X-Request-Id": "test-id",
}
response.url = "test_URL"
with self.assertRaisesRegex(HTTPError, "Request ID: test-id") as context:
_raise_for_status(response)
self.assertEqual(context.exception.response.status_code, 404)
self.assertEqual(context.exception.response.url, "test_URL")
def test_raise_with_request_id(self):
response = Response()
response.status_code = 404
response.headers = {
"X-Request-Id": "test-id",
}
response.url = "test_URL"
with self.assertRaisesRegex(HTTPError, "Request ID: test-id") as context:
_raise_with_request_id(response)
self.assertEqual(context.exception.response.status_code, 404)
self.assertEqual(context.exception.response.url, "test_URL")
|