forked from googleapis/google-cloud-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_client.py
More file actions
110 lines (88 loc) · 3.88 KB
/
test_client.py
File metadata and controls
110 lines (88 loc) · 3.88 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# Copyright 2016 Google LLC
#
# 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 unittest
import mock
def _make_credentials():
import google.auth.credentials
return mock.Mock(spec=google.auth.credentials.Credentials)
class TestClient(unittest.TestCase):
@staticmethod
def _get_target_class():
from google.cloud.runtimeconfig.client import Client
return Client
def _make_one(self, *args, **kw):
return self._get_target_class()(*args, **kw)
def test_ctor_wo_client_info(self):
from google.cloud._http import ClientInfo
from google.cloud.runtimeconfig._http import Connection
PROJECT = "PROJECT"
http = object()
creds = _make_credentials()
client = self._make_one(project=PROJECT, credentials=creds, _http=http)
self.assertIsInstance(client._connection, Connection)
self.assertIs(client._credentials, creds)
self.assertIs(client._http_internal, http)
self.assertIsInstance(client._connection._client_info, ClientInfo)
def test_ctor_w_client_info(self):
from google.cloud._http import ClientInfo
from google.cloud.runtimeconfig._http import Connection
PROJECT = "PROJECT"
http = object()
creds = _make_credentials()
client_info = ClientInfo()
client = self._make_one(
project=PROJECT, credentials=creds, _http=http, client_info=client_info
)
self.assertIsInstance(client._connection, Connection)
self.assertIs(client._credentials, creds)
self.assertIs(client._http_internal, http)
self.assertIs(client._connection._client_info, client_info)
def test_ctor_w_empty_client_options(self):
from google.api_core.client_options import ClientOptions
http = object()
client_options = ClientOptions()
client = self._make_one(_http=http, client_options=client_options)
self.assertEqual(
client._connection.API_BASE_URL, client._connection.DEFAULT_API_ENDPOINT
)
def test_constructor_w_client_options_object(self):
from google.api_core.client_options import ClientOptions
http = object()
client_options = ClientOptions(
api_endpoint="https://foo-runtimeconfig.googleapis.com"
)
client = self._make_one(_http=http, client_options=client_options)
self.assertEqual(
client._connection.API_BASE_URL, "https://foo-runtimeconfig.googleapis.com"
)
def test_constructor_w_client_options_dict(self):
http = object()
client_options = {"api_endpoint": "https://foo-runtimeconfig.googleapis.com"}
client = self._make_one(_http=http, client_options=client_options)
self.assertEqual(
client._connection.API_BASE_URL, "https://foo-runtimeconfig.googleapis.com"
)
def test_config(self):
PROJECT = "PROJECT"
CONFIG_NAME = "config_name"
creds = _make_credentials()
client = self._make_one(project=PROJECT, credentials=creds)
new_config = client.config(CONFIG_NAME)
self.assertEqual(new_config.name, CONFIG_NAME)
self.assertIs(new_config._client, client)
self.assertEqual(new_config.project, PROJECT)
self.assertEqual(
new_config.full_name, "projects/%s/configs/%s" % (PROJECT, CONFIG_NAME)
)
self.assertFalse(new_config.description)