forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_utils.py
309 lines (268 loc) · 14.4 KB
/
test_utils.py
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import datetime
import os
import platform
import time
import unittest
from azure.monitor.opentelemetry.exporter import _utils
from azure.monitor.opentelemetry.exporter._generated.models import TelemetryItem
from opentelemetry.sdk.resources import Resource
from unittest.mock import patch
TEST_AI_DEVICE_ID = "TEST_AI_DEVICE_ID"
TEST_AI_DEVICE_LOCALE = "TEST_AI_DEVICE_LOCALE"
TEST_OS_VERSION = "TEST_OS_VERSION"
TEST_SDK_VERSION_PREFIX = "TEST_AZURE_SDK_VERSION_PREFIX"
TEST_AZURE_MONITOR_CONTEXT = {
"ai.device.id": TEST_AI_DEVICE_ID,
"ai.device.locale": TEST_AI_DEVICE_LOCALE,
"ai.device.osVersion": TEST_OS_VERSION,
"ai.device.type": "Other",
"ai.internal.sdkVersion": "{}py1.2.3:otel4.5.6:ext7.8.9".format(
TEST_SDK_VERSION_PREFIX,
),
}
TEST_TIMESTAMP = "TEST_TIMESTAMP"
TEST_TIME = "TEST_TIME"
TEST_WEBSITE_SITE_NAME = "TEST_WEBSITE_SITE_NAME"
class TestUtils(unittest.TestCase):
def setUp(self):
os.environ.clear()
self._valid_instrumentation_key = "1234abcd-5678-4efa-8abc-1234567890ab"
def test_nanoseconds_to_duration(self):
ns_to_duration = _utils.ns_to_duration
self.assertEqual(ns_to_duration(0), "0.00:00:00.000")
self.assertEqual(ns_to_duration(500000), "0.00:00:00.001") # Rounding
self.assertEqual(ns_to_duration(1000000), "0.00:00:00.001")
self.assertEqual(ns_to_duration(1500000), "0.00:00:00.002") # Rounding
self.assertEqual(ns_to_duration(1000000000), "0.00:00:01.000")
self.assertEqual(ns_to_duration(60 * 1000000000), "0.00:01:00.000")
self.assertEqual(ns_to_duration(3600 * 1000000000), "0.01:00:00.000")
self.assertEqual(ns_to_duration(86400 * 1000000000), "1.00:00:00.000")
@patch("time.time")
def test_ticks_since_dot_net_epoch(self, time_mock):
current_time = time.time()
shift_time = int(
(datetime.datetime(1970, 1, 1, 0, 0, 0) - datetime.datetime(1, 1, 1, 0, 0, 0)).total_seconds()
) * (10**7)
time_mock.return_value = current_time
ticks = _utils._ticks_since_dot_net_epoch()
expected_ticks = int(current_time * (10**7)) + shift_time
self.assertEqual(ticks, expected_ticks)
def test_populate_part_a_fields(self):
resource = Resource(
{
"service.name": "testServiceName",
"service.namespace": "testServiceNamespace",
"service.instance.id": "testServiceInstanceId",
"device.id": "testDeviceId",
"device.model.name": "testDeviceModel",
"device.manufacturer": "testDeviceMake",
"service.version": "testApplicationVer",
}
)
tags = _utils._populate_part_a_fields(resource)
self.assertIsNotNone(tags)
self.assertEqual(tags.get("ai.cloud.role"), "testServiceNamespace.testServiceName")
self.assertEqual(tags.get("ai.cloud.roleInstance"), "testServiceInstanceId")
self.assertEqual(tags.get("ai.internal.nodeName"), "testServiceInstanceId")
self.assertEqual(tags.get("ai.device.id"), "testDeviceId")
self.assertEqual(tags.get("ai.device.model"), "testDeviceModel")
self.assertEqual(tags.get("ai.device.oemName"), "testDeviceMake")
self.assertEqual(tags.get("ai.application.ver"), "testApplicationVer")
def test_populate_part_a_fields_default(self):
resource = Resource({"service.name": "testServiceName"})
tags = _utils._populate_part_a_fields(resource)
self.assertIsNotNone(tags)
self.assertEqual(tags.get("ai.cloud.role"), "testServiceName")
self.assertEqual(tags.get("ai.cloud.roleInstance"), platform.node())
self.assertEqual(tags.get("ai.internal.nodeName"), tags.get("ai.cloud.roleInstance"))
@patch("azure.monitor.opentelemetry.exporter._utils.ns_to_iso_str", return_value=TEST_TIME)
@patch("azure.monitor.opentelemetry.exporter._utils.azure_monitor_context", TEST_AZURE_MONITOR_CONTEXT)
def test_create_telemetry_item(self, mock_ns_to_iso_str):
result = _utils._create_telemetry_item(TEST_TIMESTAMP)
expected_tags = dict(TEST_AZURE_MONITOR_CONTEXT)
expected = TelemetryItem(
name="",
instrumentation_key="",
tags=expected_tags,
time=TEST_TIME,
)
self.assertEqual(result, expected)
# Unknown SDK Version Prefix
@patch("azure.monitor.opentelemetry.exporter._utils._is_attach_enabled", return_value=False)
@patch("azure.monitor.opentelemetry.exporter._utils.platform.system", return_value="")
def test_get_sdk_version_prefix(self, mock_system, mock_getenv):
result = _utils._get_sdk_version_prefix()
self.assertEqual(result, "uum_")
@patch("azure.monitor.opentelemetry.exporter._utils._is_attach_enabled", return_value=False)
@patch("azure.monitor.opentelemetry.exporter._utils.platform.system", return_value="Linux")
def test_get_sdk_version_prefix_linux(self, mock_system, mock_getenv):
result = _utils._get_sdk_version_prefix()
self.assertEqual(result, "ulm_")
@patch("azure.monitor.opentelemetry.exporter._utils._is_attach_enabled", return_value=False)
@patch("azure.monitor.opentelemetry.exporter._utils.platform.system", return_value="Windows")
def test_get_sdk_version_prefix_windows(self, mock_system, mock_getenv):
result = _utils._get_sdk_version_prefix()
self.assertEqual(result, "uwm_")
@patch("azure.monitor.opentelemetry.exporter._utils._is_attach_enabled", return_value=True)
@patch("azure.monitor.opentelemetry.exporter._utils.platform.system", return_value="")
def test_get_sdk_version_prefix_attach(self, mock_system, mock_getenv):
result = _utils._get_sdk_version_prefix()
self.assertEqual(result, "uui_")
@patch("azure.monitor.opentelemetry.exporter._utils._is_attach_enabled", return_value=True)
@patch("azure.monitor.opentelemetry.exporter._utils.platform.system", return_value="Linux")
def test_get_sdk_version_prefix_attach_linux(self, mock_system, mock_getenv):
result = _utils._get_sdk_version_prefix()
self.assertEqual(result, "uli_")
@patch("azure.monitor.opentelemetry.exporter._utils._is_attach_enabled", return_value=True)
@patch("azure.monitor.opentelemetry.exporter._utils.platform.system", return_value="Windows")
def test_get_sdk_version_prefix_attach_windows(self, mock_system, mock_getenv):
result = _utils._get_sdk_version_prefix()
self.assertEqual(result, "uwi_")
# App Service SDK Version Prefix
@patch.dict(
"azure.monitor.opentelemetry.exporter._utils.environ", {"WEBSITE_SITE_NAME": TEST_WEBSITE_SITE_NAME}, clear=True
)
@patch("azure.monitor.opentelemetry.exporter._utils.isdir", return_value=False)
@patch("azure.monitor.opentelemetry.exporter._utils.platform.system", return_value="")
def test_get_sdk_version_prefix_app_service(self, mock_system, mock_getenv):
result = _utils._get_sdk_version_prefix()
self.assertEqual(result, "aum_")
@patch.dict(
"azure.monitor.opentelemetry.exporter._utils.environ", {"WEBSITE_SITE_NAME": TEST_WEBSITE_SITE_NAME}, clear=True
)
@patch("azure.monitor.opentelemetry.exporter._utils.isdir", return_value=False)
@patch("azure.monitor.opentelemetry.exporter._utils.platform.system", return_value="Linux")
def test_get_sdk_version_prefix_app_service_linux(self, mock_system, mock_getenv):
result = _utils._get_sdk_version_prefix()
self.assertEqual(result, "alm_")
@patch.dict(
"azure.monitor.opentelemetry.exporter._utils.environ", {"WEBSITE_SITE_NAME": TEST_WEBSITE_SITE_NAME}, clear=True
)
@patch("azure.monitor.opentelemetry.exporter._utils.isdir", return_value=False)
@patch("azure.monitor.opentelemetry.exporter._utils.platform.system", return_value="Windows")
def test_get_sdk_version_prefix_app_service_windows(self, mock_system, mock_getenv):
result = _utils._get_sdk_version_prefix()
self.assertEqual(result, "awm_")
@patch.dict(
"azure.monitor.opentelemetry.exporter._utils.environ", {"WEBSITE_SITE_NAME": TEST_WEBSITE_SITE_NAME}, clear=True
)
@patch("azure.monitor.opentelemetry.exporter._utils.isdir", return_value=True)
@patch("azure.monitor.opentelemetry.exporter._utils.platform.system", return_value="")
def test_get_sdk_version_prefix_app_service_attach(self, mock_system, mock_getenv):
result = _utils._get_sdk_version_prefix()
self.assertEqual(result, "aui_")
@patch.dict(
"azure.monitor.opentelemetry.exporter._utils.environ", {"WEBSITE_SITE_NAME": TEST_WEBSITE_SITE_NAME}, clear=True
)
@patch("azure.monitor.opentelemetry.exporter._utils.isdir", return_value=True)
@patch("azure.monitor.opentelemetry.exporter._utils.platform.system", return_value="Linux")
def test_get_sdk_version_prefix_app_service_linux_attach(self, mock_system, mock_getenv):
result = _utils._get_sdk_version_prefix()
self.assertEqual(result, "ali_")
@patch.dict(
"azure.monitor.opentelemetry.exporter._utils.environ", {"WEBSITE_SITE_NAME": TEST_WEBSITE_SITE_NAME}, clear=True
)
@patch("azure.monitor.opentelemetry.exporter._utils.isdir", return_value=True)
@patch("azure.monitor.opentelemetry.exporter._utils.platform.system", return_value="Windows")
def test_get_sdk_version_prefix_app_service_windows_attach(self, mock_system, mock_getenv):
result = _utils._get_sdk_version_prefix()
self.assertEqual(result, "awi_")
# Function SDK Version Prefix
@patch.dict(
"azure.monitor.opentelemetry.exporter._utils.environ",
{"FUNCTIONS_WORKER_RUNTIME": TEST_WEBSITE_SITE_NAME},
clear=True,
)
@patch("azure.monitor.opentelemetry.exporter._utils._is_attach_enabled", return_value=False)
@patch("azure.monitor.opentelemetry.exporter._utils.platform.system", return_value="")
def test_get_sdk_version_prefix_function(self, mock_system, mock_getenv):
result = _utils._get_sdk_version_prefix()
self.assertEqual(result, "fum_")
@patch.dict(
"azure.monitor.opentelemetry.exporter._utils.environ",
{"FUNCTIONS_WORKER_RUNTIME": TEST_WEBSITE_SITE_NAME},
clear=True,
)
@patch("azure.monitor.opentelemetry.exporter._utils._is_attach_enabled", return_value=False)
@patch("azure.monitor.opentelemetry.exporter._utils.platform.system", return_value="Linux")
def test_get_sdk_version_prefix_function_linux(self, mock_system, mock_getenv):
result = _utils._get_sdk_version_prefix()
self.assertEqual(result, "flm_")
@patch.dict(
"azure.monitor.opentelemetry.exporter._utils.environ",
{"FUNCTIONS_WORKER_RUNTIME": TEST_WEBSITE_SITE_NAME},
clear=True,
)
@patch("azure.monitor.opentelemetry.exporter._utils._is_attach_enabled", return_value=False)
@patch("azure.monitor.opentelemetry.exporter._utils.platform.system", return_value="Windows")
def test_get_sdk_version_prefix_function_windows(self, mock_system, mock_getenv):
result = _utils._get_sdk_version_prefix()
self.assertEqual(result, "fwm_")
@patch.dict(
"azure.monitor.opentelemetry.exporter._utils.environ",
{"FUNCTIONS_WORKER_RUNTIME": TEST_WEBSITE_SITE_NAME},
clear=True,
)
@patch("azure.monitor.opentelemetry.exporter._utils._is_attach_enabled", return_value=True)
@patch("azure.monitor.opentelemetry.exporter._utils.platform.system", return_value="")
def test_get_sdk_version_prefix_function_attach(self, mock_system, mock_getenv):
result = _utils._get_sdk_version_prefix()
self.assertEqual(result, "fui_")
@patch.dict(
"azure.monitor.opentelemetry.exporter._utils.environ",
{"FUNCTIONS_WORKER_RUNTIME": TEST_WEBSITE_SITE_NAME},
clear=True,
)
@patch("azure.monitor.opentelemetry.exporter._utils._is_attach_enabled", return_value=True)
@patch("azure.monitor.opentelemetry.exporter._utils.platform.system", return_value="Linux")
def test_get_sdk_version_prefix_function_linux_attach(self, mock_system, mock_getenv):
result = _utils._get_sdk_version_prefix()
self.assertEqual(result, "fli_")
@patch.dict(
"azure.monitor.opentelemetry.exporter._utils.environ",
{"FUNCTIONS_WORKER_RUNTIME": TEST_WEBSITE_SITE_NAME},
clear=True,
)
@patch("azure.monitor.opentelemetry.exporter._utils._is_attach_enabled", return_value=True)
@patch("azure.monitor.opentelemetry.exporter._utils.platform.system", return_value="Windows")
def test_get_sdk_version_prefix_function_windows_attach(self, mock_system, mock_getenv):
result = _utils._get_sdk_version_prefix()
self.assertEqual(result, "fwi_")
# Attach
@patch(
"azure.monitor.opentelemetry.exporter._utils.isdir",
return_value=True,
)
@patch.dict("azure.monitor.opentelemetry.exporter._utils.environ", {"WEBSITE_SITE_NAME": TEST_WEBSITE_SITE_NAME})
def test_attach_enabled(self, mock_isdir):
self.assertEqual(_utils._is_attach_enabled(), True)
@patch(
"azure.monitor.opentelemetry.exporter._utils.isdir",
return_value=False,
)
@patch.dict("azure.monitor.opentelemetry.exporter._utils.environ", {"WEBSITE_SITE_NAME": TEST_WEBSITE_SITE_NAME})
def test_attach_app_service_disabled(self, mock_isdir):
self.assertEqual(_utils._is_attach_enabled(), False)
@patch(
"azure.monitor.opentelemetry.exporter._utils.isdir",
return_value=True,
)
@patch.dict("azure.monitor.opentelemetry.exporter._utils.environ", {}, clear=True)
def test_attach_off_app_service_with_agent(self, mock_isdir):
# This is not an expected scenario and just tests the default
self.assertEqual(_utils._is_attach_enabled(), False)
# Synthetic
def test_is_synthetic_source_bot(self):
properties = {"user_agent.synthetic.type": "bot"}
self.assertTrue(_utils._is_synthetic_source(properties))
def test_is_synthetic_source_test(self):
properties = {"user_agent.synthetic.type": "test"}
self.assertTrue(_utils._is_synthetic_source(properties))
def test_is_synthetic_source_none(self):
properties = {}
self.assertFalse(_utils._is_synthetic_source(properties))
def test_is_synthetic_source_other(self):
properties = {"user_agent.synthetic.type": "user"}
self.assertFalse(_utils._is_synthetic_source(properties))