|
1 | 1 | import asyncio
|
2 | 2 | import socket
|
| 3 | +import sys |
3 | 4 | import unittest
|
4 | 5 |
|
5 | 6 | from uvloop import _testbase as tb
|
6 | 7 |
|
7 | 8 |
|
| 9 | +PY37 = sys.version_info >= (3, 7, 0) |
| 10 | + |
| 11 | + |
8 | 12 | class BaseTestDNS:
|
9 | 13 |
|
10 | 14 | def _test_getaddrinfo(self, *args, **kwargs):
|
@@ -177,6 +181,57 @@ async def run():
|
177 | 181 | finally:
|
178 | 182 | self.loop.close()
|
179 | 183 |
|
| 184 | + @unittest.skipUnless(PY37, 'requires Python 3.7') |
| 185 | + def test_getaddrinfo_tracing(self): |
| 186 | + from time import monotonic |
| 187 | + from uvloop import start_tracing, stop_tracing |
| 188 | + from uvloop.tracing import Tracer, Span |
| 189 | + |
| 190 | + class DummySpan(Span): |
| 191 | + def __init__(self, name, parent=None): |
| 192 | + self.name = name |
| 193 | + self.parent = parent |
| 194 | + self.start_time = monotonic() |
| 195 | + self.finish_time = None |
| 196 | + self.children = [] |
| 197 | + self.tags = {} |
| 198 | + |
| 199 | + def set_tag(self, key, value): |
| 200 | + self.tags[key] = value |
| 201 | + |
| 202 | + def finish(self, finish_time=None): |
| 203 | + self.finish_time = finish_time or monotonic() |
| 204 | + |
| 205 | + @property |
| 206 | + def is_finished(self): |
| 207 | + return self.finish_time is not None |
| 208 | + |
| 209 | + |
| 210 | + class DummyTracer(Tracer): |
| 211 | + def start_span(self, name, parent_span): |
| 212 | + span = DummySpan(name, parent_span) |
| 213 | + parent_span.children.append(span) |
| 214 | + return span |
| 215 | + |
| 216 | + root_span = DummySpan('root') |
| 217 | + start_tracing(DummyTracer(), root_span) |
| 218 | + self.loop.run_until_complete( |
| 219 | + self.loop.getaddrinfo('example.com', 80) |
| 220 | + ) |
| 221 | + root_span.finish() |
| 222 | + assert root_span.children |
| 223 | + assert root_span.children[0].name == 'getaddrinfo' |
| 224 | + assert root_span.children[0].tags['host'] == b'example.com' |
| 225 | + assert root_span.children[0].tags['port'] == b'80' |
| 226 | + assert root_span.children[0].is_finished |
| 227 | + assert root_span.children[0].start_time < root_span.children[0].finish_time |
| 228 | + |
| 229 | + stop_tracing() |
| 230 | + self.loop.run_until_complete( |
| 231 | + self.loop.getaddrinfo('example.com', 80) |
| 232 | + ) |
| 233 | + assert len(root_span.children) == 1 |
| 234 | + |
180 | 235 |
|
181 | 236 | class Test_AIO_DNS(BaseTestDNS, tb.AIOTestCase):
|
182 | 237 | pass
|
0 commit comments