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

Allow bytes or string as project value in datastore clients. #1638

Merged
merged 1 commit into from
Mar 22, 2016
Merged
Show file tree
Hide file tree
Changes from all 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
15 changes: 10 additions & 5 deletions gcloud/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,21 +132,26 @@ class _ClientProjectMixin(object):
passed falls back to the default inferred from the
environment.

:raises: :class:`ValueError` if the project is neither passed in nor
set in the environment.
:raises: :class:`EnvironmentError` if the project is neither passed in nor
set in the environment. :class:`ValueError` if the project value
is invalid.
"""

def __init__(self, project=None):
project = _determine_default_project(project)
project = self._determine_default(project)
if project is None:
raise ValueError('Project was not passed and could not be '
'determined from the environment.')
raise EnvironmentError('Project was not passed and could not be '
'determined from the environment.')
if isinstance(project, six.binary_type):
project = project.decode('utf-8')
if not isinstance(project, six.string_types):
raise ValueError('Project must be a string.')
self.project = project

@staticmethod
def _determine_default(project):
return _determine_default_project(project)


class JSONClient(Client, _ClientProjectMixin):
"""Client to for Google JSON-based API.
Expand Down
12 changes: 7 additions & 5 deletions gcloud/datastore/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from gcloud._helpers import _LocalStack
from gcloud._helpers import _app_engine_id
from gcloud._helpers import _compute_engine_id
from gcloud.client import _ClientProjectMixin
from gcloud.client import Client as _BaseClient
from gcloud.datastore import helpers
from gcloud.datastore.connection import Connection
Expand Down Expand Up @@ -155,7 +156,7 @@ def _extended_lookup(connection, project, key_pbs,
return results


class Client(_BaseClient):
class Client(_BaseClient, _ClientProjectMixin):
"""Convenience wrapper for invoking APIs/factories w/ a project.

:type project: string
Expand All @@ -180,14 +181,15 @@ class Client(_BaseClient):

def __init__(self, project=None, namespace=None,
credentials=None, http=None):
project = _determine_default_project(project)
if project is None:
raise EnvironmentError('Project could not be inferred.')
self.project = project
_ClientProjectMixin.__init__(self, project=project)
self.namespace = namespace
self._batch_stack = _LocalStack()
super(Client, self).__init__(credentials, http)

@staticmethod
def _determine_default(project):
return _determine_default_project(project)

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.


def _push_batch(self, batch):
"""Push a batch/transaction onto our stack.

Expand Down
2 changes: 1 addition & 1 deletion gcloud/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def mock_determine_proj(project):
return None

with _Monkey(client, _determine_default_project=mock_determine_proj):
self.assertRaises(ValueError, self._makeOne)
self.assertRaises(EnvironmentError, self._makeOne)

self.assertEqual(FUNC_CALLS, [(None, '_determine_default_project')])

Expand Down