forked from googleapis/google-cloud-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_client_v2.py
More file actions
146 lines (117 loc) · 4.79 KB
/
test_client_v2.py
File metadata and controls
146 lines (117 loc) · 4.79 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# Copyright 2017 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):
project = "PROJECT"
@staticmethod
def _get_target_class():
from google.cloud.trace.client import Client
return Client
def _make_one(self, *args, **kw):
return self._get_target_class()(*args, **kw)
def test_constructor(self):
credentials = _make_credentials()
client = self._make_one(project=self.project, credentials=credentials)
self.assertEqual(client.project, self.project)
def test_trace_api(self):
clients = []
api_obj = object()
def make_api(client_obj):
clients.append(client_obj)
return api_obj
credentials = _make_credentials()
client = self._make_one(project=self.project, credentials=credentials)
patch = mock.patch("google.cloud.trace.client.make_trace_api", new=make_api)
with patch:
api = client.trace_api
self.assertIs(api, api_obj)
self.assertEqual(clients, [client])
def test_trace_api_existing(self):
"""Check that the client caches _trace_api."""
client = self._make_one(project=self.project, credentials=_make_credentials())
client._trace_api = mock.sentinel.trace_api
self.assertIs(client.trace_api, mock.sentinel.trace_api)
def test_batch_write_spans(self):
from google.cloud.trace._gapic import _TraceAPI
credentials = _make_credentials()
client = self._make_one(project=self.project, credentials=credentials)
name = "projects/{}".format(self.project)
spans = "fake_spans_for_test"
mock_trace_api = mock.Mock(spec=_TraceAPI)
mock_trace_api.patch_traces = mock.Mock()
patch = mock.patch(
"google.cloud.trace.client.make_trace_api", return_value=mock_trace_api
)
with patch:
client.batch_write_spans(name=name, spans=spans)
mock_trace_api.batch_write_spans.assert_called_with(
name=name, spans=spans, retry=None, timeout=None
)
def test_create_span(self):
from google.cloud.trace._gapic import _TraceAPI
credentials = _make_credentials()
client = self._make_one(project=self.project, credentials=credentials)
name = "projects/{}".format(self.project)
span_id = "1111"
display_name = "test display name"
start_time = "test start time"
end_time = "test end time"
parent_span_id = "test parent span id"
attributes = "test attributes"
stack_trace = "test stack trace"
time_events = "test time events"
links = "test links"
status = "test status"
same_process_as_parent_span = "test same process as parent span"
child_span_count = "test child span count"
mock_trace_api = mock.Mock(spec=_TraceAPI)
mock_trace_api.patch_traces = mock.Mock()
patch = mock.patch(
"google.cloud.trace.client.make_trace_api", return_value=mock_trace_api
)
with patch:
client.create_span(
name=name,
span_id=span_id,
display_name=display_name,
start_time=start_time,
end_time=end_time,
parent_span_id=parent_span_id,
attributes=attributes,
stack_trace=stack_trace,
time_events=time_events,
links=links,
status=status,
same_process_as_parent_span=same_process_as_parent_span,
child_span_count=child_span_count,
)
mock_trace_api.create_span.assert_called_with(
name=name,
span_id=span_id,
display_name=display_name,
start_time=start_time,
end_time=end_time,
parent_span_id=parent_span_id,
attributes=attributes,
stack_trace=stack_trace,
time_events=time_events,
links=links,
status=status,
same_process_as_parent_span=same_process_as_parent_span,
child_span_count=child_span_count,
)