Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create exceptions (and bases) for RPC-only errors in core #2936

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 25 additions & 2 deletions core/google/cloud/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"""Custom exceptions for :mod:`google.cloud` package.

See: https://cloud.google.com/storage/docs/json_api/v1/status-codes
See: https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto
"""

# Avoid the grpc and google.cloud.grpc collision.
Expand Down Expand Up @@ -72,6 +73,11 @@ def errors(self):
return [copy.deepcopy(error) for error in self._errors]


class GoogleCloudRPCError(GoogleCloudError):
"""Base error class for RPC errors that do not map directly to HTTP errors.
"""


class Redirection(GoogleCloudError):
"""Base for 3xx responses

Expand Down Expand Up @@ -181,10 +187,24 @@ class ServiceUnavailable(ServerError):


class GatewayTimeout(ServerError):
"""Excepption mapping a `504 Gateway Timeout'` response."""
"""Exception mapping a '504 Gateway Timeout' response."""
code = 504


class RPCServerError(GoogleCloudRPCError):
"""Base for 5xx-like RPC errors: (abstract)"""


class Unknown(RPCServerError):
"""Exception mapping a '2 UNKNOWN' RPC error."""
code = 2


class DataLoss(RPCServerError):
"""Exception mapping a '15 DATA LOSS' RPC error."""
code = 15


def make_exception(response, content, error_info=None, use_json=True):
"""Factory: create exception based on HTTP response code.

Expand Down Expand Up @@ -245,8 +265,11 @@ def _walk_subclasses(klass):
yield subsub


# Build the code->exception class mapping.
# Build the HTTP code->exception class mapping, excluding RPC-only exceptions.
for _eklass in _walk_subclasses(GoogleCloudError):
if issubclass(_eklass, GoogleCloudRPCError):
continue

code = getattr(_eklass, 'code', None)
if code is not None:
_HTTP_CODE_TO_EXCEPTION[code] = _eklass
7 changes: 7 additions & 0 deletions core/unit_tests/test_exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ def test_ctor_explicit(self):
self.assertEqual(e.message, 'Testing')
self.assertEqual(list(e.errors), [ERROR])

def test_rpc_only_errors_not_exported(self):
from google.cloud.exceptions import GoogleCloudRPCError
from google.cloud.exceptions import _HTTP_CODE_TO_EXCEPTION
http_exceptions = _HTTP_CODE_TO_EXCEPTION.values()

This comment was marked as spam.

This comment was marked as spam.

self.assertFalse(
any([issubclass(e, GoogleCloudRPCError) for e in http_exceptions]))


class Test_make_exception(unittest.TestCase):

Expand Down