20
20
from unittest import IsolatedAsyncioTestCase
21
21
22
22
from cisco_opentelemetry_specifications import SemanticAttributes
23
+ from opentelemetry .semconv .trace import SpanAttributes
23
24
from cisco_telescope .configuration import Configuration
24
25
from cisco_telescope .instrumentations .aiohttp import AiohttpInstrumentorWrapper
25
26
from .base_http_test import BaseHttpTest
@@ -43,20 +44,7 @@ async def test_get_request_sanity(self):
43
44
headers = self .request_headers (),
44
45
chunked = True ,
45
46
) as resp :
46
- self .assertEqual (resp .status , 200 )
47
- spans = self .memory_exporter .get_finished_spans ()
48
- self .assertEqual (len (spans ), 1 )
49
- span = spans [0 ]
50
- self .assert_captured_headers (
51
- span ,
52
- SemanticAttributes .HTTP_REQUEST_HEADER ,
53
- self .request_headers (),
54
- )
55
- self .assert_captured_headers (
56
- span ,
57
- SemanticAttributes .HTTP_RESPONSE_HEADER ,
58
- self .response_headers (),
59
- )
47
+ self ._assert_basic_attributes_and_headers (resp )
60
48
61
49
async def test_post_request_sanity (self ):
62
50
Configuration ().payloads_enabled = True
@@ -67,21 +55,10 @@ async def test_post_request_sanity(self):
67
55
chunked = True ,
68
56
data = self .request_body (),
69
57
) as resp :
70
- self .assertEqual (resp . status , 200 )
58
+ self ._assert_basic_attributes_and_headers (resp )
71
59
spans = self .memory_exporter .get_finished_spans ()
72
- self .assertEqual (len (spans ), 1 )
73
60
span = spans [0 ]
74
61
75
- self .assert_captured_headers (
76
- span ,
77
- SemanticAttributes .HTTP_REQUEST_HEADER ,
78
- self .request_headers (),
79
- )
80
- self .assert_captured_headers (
81
- span ,
82
- SemanticAttributes .HTTP_RESPONSE_HEADER ,
83
- self .response_headers (),
84
- )
85
62
self .assertEqual (
86
63
span .attributes [SemanticAttributes .HTTP_REQUEST_BODY ],
87
64
self .request_body (),
@@ -167,3 +144,21 @@ async def test_response_content_unharmed(self):
167
144
span .attributes [SemanticAttributes .HTTP_RESPONSE_BODY ],
168
145
resp_body ,
169
146
)
147
+
148
+ def _assert_basic_attributes_and_headers (self , resp ):
149
+ self .assertEqual (resp .status , 200 )
150
+ spans = self .memory_exporter .get_finished_spans ()
151
+ self .assertEqual (len (spans ), 1 )
152
+ span = spans [0 ]
153
+ self .assertEqual (span .attributes [SpanAttributes .HTTP_METHOD ], resp .method )
154
+ self .assertEqual (span .attributes [SpanAttributes .HTTP_URL ], str (resp .url ))
155
+ self .assert_captured_headers (
156
+ span ,
157
+ SemanticAttributes .HTTP_REQUEST_HEADER ,
158
+ self .request_headers (),
159
+ )
160
+ self .assert_captured_headers (
161
+ span ,
162
+ SemanticAttributes .HTTP_RESPONSE_HEADER ,
163
+ self .response_headers (),
164
+ )
0 commit comments