This repository was archived by the owner on Feb 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtest__gapic.py
More file actions
81 lines (62 loc) · 2.8 KB
/
test__gapic.py
File metadata and controls
81 lines (62 loc) · 2.8 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
# 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
class Test_make_report_error_api(unittest.TestCase):
@staticmethod
def _call_fut(client):
from google.cloud.error_reporting._gapic import make_report_error_api
return make_report_error_api(client)
def test_make_report_error_api(self):
client = mock.Mock(
spec=["project", "_credentials", "_client_info", "_client_options"]
)
# Call the function being tested.
patch = mock.patch(
"google.cloud.errorreporting_v1beta1.ReportErrorsServiceClient"
)
with patch as patched:
report_error_client = self._call_fut(client)
# Assert that the final error client has the project in
# the expected location.
self.assertIs(report_error_client._project, client.project)
self.assertIs(report_error_client._gapic_api, patched.return_value)
patched.assert_called_once_with(
credentials=client._credentials,
client_info=client._client_info,
client_options=client._client_options,
)
class Test_ErrorReportingGapicApi(unittest.TestCase):
PROJECT = "PROJECT"
def _make_one(self, gapic_api, project):
from google.cloud.error_reporting._gapic import _ErrorReportingGapicApi
return _ErrorReportingGapicApi(gapic_api, project)
def test_constructor(self):
gapic_api = mock.Mock(spec=[])
gapic_client_wrapper = self._make_one(gapic_api, self.PROJECT)
self.assertEqual(gapic_client_wrapper._project, self.PROJECT)
self.assertEqual(gapic_client_wrapper._gapic_api, gapic_api)
def test_report_error_event(self):
import google.cloud.errorreporting_v1beta1
gapic_api = mock.Mock(spec=["report_error_event"])
gapic_client_wrapper = self._make_one(gapic_api, self.PROJECT)
error_report = {"message": "The cabs are here."}
gapic_client_wrapper.report_error_event(error_report)
project_name = f"projects/{self.PROJECT}"
error_pb = google.cloud.errorreporting_v1beta1.ReportedErrorEvent(
message=error_report["message"]
)
gapic_api.report_error_event.assert_called_once_with(
project_name=project_name, event=error_pb
)