-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Add logging connection and client. #1560
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
Changes from 1 commit
86b21ea
a96ff79
c5f19ab
b83c3df
64318db
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| # Copyright 2015 Google Inc. All rights reserved. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| """Google Cloud Logging API wrapper. | ||
| """ | ||
|
||
|
|
||
| from gcloud.logging.client import Client | ||
| from gcloud.logging.connection import Connection | ||
|
|
||
|
|
||
| SCOPE = Connection.SCOPE | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| # Copyright 2015 Google Inc. All rights reserved. | ||
|
||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| """Client for interacting with the Google Cloud Pub/Sub API.""" | ||
|
||
|
|
||
|
|
||
| from gcloud.client import JSONClient | ||
| from gcloud.logging.connection import Connection | ||
|
|
||
|
|
||
| class Client(JSONClient): | ||
| """Client to bundle configuration needed for API requests. | ||
|
|
||
| :type project: string | ||
| :param project: the project which the client acts on behalf of. Will be | ||
| passed when creating a topic. If not passed, | ||
|
||
| falls back to the default inferred from the environment. | ||
|
|
||
| :type credentials: :class:`oauth2client.client.OAuth2Credentials` or | ||
| :class:`NoneType` | ||
| :param credentials: The OAuth2 Credentials to use for the connection | ||
| owned by this client. If not passed (and if no ``http`` | ||
| object is passed), falls back to the default inferred | ||
| from the environment. | ||
|
|
||
| :type http: :class:`httplib2.Http` or class that defines ``request()``. | ||
| :param http: An optional HTTP object to make requests. If not passed, an | ||
| ``http`` object is created that is bound to the | ||
| ``credentials`` for the current object. | ||
| """ | ||
|
|
||
| _connection_class = Connection | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,85 @@ | ||
| # Copyright 2015 Google Inc. All rights reserved. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| """Create / interact with gcloud logging connections.""" | ||
|
|
||
| from gcloud import connection as base_connection | ||
|
|
||
|
|
||
| class Connection(base_connection.JSONConnection): | ||
| """A connection to Google Cloud Pubsub via the JSON REST API. | ||
|
||
|
|
||
| :type credentials: :class:`oauth2client.client.OAuth2Credentials` | ||
| :param credentials: (Optional) The OAuth2 Credentials to use for this | ||
| connection. | ||
|
|
||
| :type http: :class:`httplib2.Http` or class that defines ``request()``. | ||
| :param http: (Optional) HTTP object to make requests. | ||
|
|
||
| :type api_base_url: string | ||
| :param api_base_url: The base of the API call URL. Defaults to the value | ||
| :attr:`Connection.API_BASE_URL`. | ||
| """ | ||
|
|
||
| API_BASE_URL = 'https://logging.googleapis.com' | ||
| """The base of the API call URL.""" | ||
|
|
||
| API_VERSION = 'v2beta1' | ||
| """The version of the API, used in building the API call's URL.""" | ||
|
|
||
| API_URL_TEMPLATE = '{api_base_url}/{api_version}{path}' | ||
| """A template for the URL of a particular API call.""" | ||
|
|
||
| SCOPE = ('https://www.googleapis.com/auth/logging.read', | ||
| 'https://www.googleapis.com/auth/logging.write', | ||
| 'https://www.googleapis.com/auth/logging.admin', | ||
| 'https://www.googleapis.com/auth/cloud-platform') | ||
| """The scopes required for authenticating as a Cloud Pub/Sub consumer.""" | ||
|
|
||
| def __init__(self, credentials=None, http=None, api_base_url=None): | ||
| super(Connection, self).__init__(credentials=credentials, http=http) | ||
| if api_base_url is None: | ||
| api_base_url = self.__class__.API_BASE_URL | ||
|
||
| self.api_base_url = api_base_url | ||
|
|
||
| def build_api_url(self, path, query_params=None, | ||
| api_base_url=None, api_version=None): | ||
|
||
| """Construct an API url given a few components, some optional. | ||
|
|
||
| Typically, you shouldn't need to use this method. | ||
|
|
||
| :type path: string | ||
| :param path: The path to the resource. | ||
|
|
||
| :type query_params: dict | ||
| :param query_params: A dictionary of keys and values to insert into | ||
| the query string of the URL. | ||
|
|
||
| :type api_base_url: string | ||
| :param api_base_url: The base URL for the API endpoint. | ||
| Typically you won't have to provide this. | ||
|
|
||
| :type api_version: string | ||
| :param api_version: The version of the API to call. | ||
| Typically you shouldn't provide this and instead | ||
| use the default for the library. | ||
|
|
||
| :rtype: string | ||
| :returns: The URL assembled from the pieces provided. | ||
| """ | ||
| if api_base_url is None: | ||
| api_base_url = self.api_base_url | ||
| return super(Connection, self.__class__).build_api_url( | ||
| path, query_params=query_params, | ||
| api_base_url=api_base_url, api_version=api_version) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| # Copyright 2015 Google Inc. All rights reserved. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| import unittest2 | ||
|
|
||
|
|
||
| class TestClient(unittest2.TestCase): | ||
|
|
||
| def _getTargetClass(self): | ||
| from gcloud.logging.client import Client | ||
| return Client | ||
|
|
||
| def _makeOne(self, *args, **kw): | ||
| return self._getTargetClass()(*args, **kw) | ||
|
|
||
| def test_ctor(self): | ||
| PROJECT = 'PROJECT' | ||
| CREDS = _Credentials() | ||
| CLIENT_OBJ = self._makeOne(project=PROJECT, credentials=CREDS) | ||
|
||
|
|
||
|
|
||
| class _Credentials(object): | ||
|
|
||
| _scopes = None | ||
|
|
||
| @staticmethod | ||
| def create_scoped_required(): | ||
| return True | ||
|
|
||
| def create_scoped(self, scope): | ||
| self._scopes = scope | ||
| return self | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,71 @@ | ||
| # Copyright 2015 Google Inc. All rights reserved. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| import unittest2 | ||
|
|
||
|
|
||
| class TestConnection(unittest2.TestCase): | ||
|
|
||
| def _getTargetClass(self): | ||
| from gcloud.logging.connection import Connection | ||
| return Connection | ||
|
|
||
| def _makeOne(self, *args, **kw): | ||
| return self._getTargetClass()(*args, **kw) | ||
|
|
||
| def test_default_url(self): | ||
| conn = self._makeOne() | ||
| klass = self._getTargetClass() | ||
| self.assertEqual(conn.api_base_url, klass.API_BASE_URL) | ||
|
|
||
| def test_custom_url_from_constructor(self): | ||
| HOST = object() | ||
| conn = self._makeOne(api_base_url=HOST) | ||
|
|
||
| klass = self._getTargetClass() | ||
| self.assertNotEqual(conn.api_base_url, klass.API_BASE_URL) | ||
| self.assertEqual(conn.api_base_url, HOST) | ||
|
|
||
| def test_build_api_url_no_extra_query_params(self): | ||
| conn = self._makeOne() | ||
| URI = '/'.join([ | ||
| conn.API_BASE_URL, | ||
| conn.API_VERSION, | ||
| 'foo', | ||
| ]) | ||
| self.assertEqual(conn.build_api_url('/foo'), URI) | ||
|
|
||
| def test_build_api_url_w_extra_query_params(self): | ||
| from six.moves.urllib.parse import parse_qsl | ||
| from six.moves.urllib.parse import urlsplit | ||
| conn = self._makeOne() | ||
| uri = conn.build_api_url('/foo', {'bar': 'baz'}) | ||
| scheme, netloc, path, qs, _ = urlsplit(uri) | ||
| self.assertEqual('%s://%s' % (scheme, netloc), conn.API_BASE_URL) | ||
| self.assertEqual(path, | ||
| '/'.join(['', conn.API_VERSION, 'foo'])) | ||
| parms = dict(parse_qsl(qs)) | ||
| self.assertEqual(parms['bar'], 'baz') | ||
|
|
||
| def test_build_api_url_w_base_url_override(self): | ||
| base_url1 = 'api-base-url1' | ||
| base_url2 = 'api-base-url2' | ||
| conn = self._makeOne(api_base_url=base_url1) | ||
| URI = '/'.join([ | ||
| base_url2, | ||
| conn.API_VERSION, | ||
| 'foo', | ||
| ]) | ||
| self.assertEqual( | ||
| conn.build_api_url('/foo', api_base_url=base_url2), URI) |
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.