-
Notifications
You must be signed in to change notification settings - Fork 933
/
Copy pathHttpUrlConnectionTest.groovy
333 lines (297 loc) · 9.35 KB
/
HttpUrlConnectionTest.groovy
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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
import io.opentelemetry.api.trace.Span
import io.opentelemetry.instrumentation.test.AgentTestTrait
import io.opentelemetry.instrumentation.test.base.HttpClientTest
import io.opentelemetry.semconv.trace.attributes.SemanticAttributes
import spock.lang.Unroll
import static io.opentelemetry.api.trace.SpanKind.CLIENT
import static io.opentelemetry.api.trace.SpanKind.SERVER
import static io.opentelemetry.semconv.trace.attributes.SemanticAttributes.NetTransportValues.IP_TCP
class HttpUrlConnectionTest extends HttpClientTest<HttpURLConnection> implements AgentTestTrait {
static final RESPONSE = "Hello."
static final STATUS = 200
@Override
HttpURLConnection buildRequest(String method, URI uri, Map<String, String> headers) {
return uri.toURL().openConnection() as HttpURLConnection
}
@Override
int sendRequest(HttpURLConnection connection, String method, URI uri, Map<String, String> headers) {
if (uri.toString().contains("/read-timeout")) {
connection.readTimeout = READ_TIMEOUT_MS
}
try {
connection.setRequestMethod(method)
headers.each { connection.setRequestProperty(it.key, it.value) }
connection.setRequestProperty("Connection", "close")
connection.useCaches = true
connection.connectTimeout = CONNECT_TIMEOUT_MS
def parentSpan = Span.current()
def stream = connection.inputStream
assert Span.current() == parentSpan
stream.readLines()
stream.close()
return connection.getResponseCode()
} finally {
connection.disconnect()
}
}
@Override
int maxRedirects() {
20
}
@Override
Integer responseCodeOnRedirectError() {
return 302
}
@Override
boolean testReusedRequest() {
// HttpURLConnection can't be reused
return false
}
@Override
boolean testCallback() {
return false
}
@Override
boolean testReadTimeout() {
true
}
@Unroll
def "trace request (useCaches: #useCaches)"() {
setup:
def url = resolveAddress("/success").toURL()
runWithSpan("someTrace") {
HttpURLConnection connection = url.openConnection()
connection.useCaches = useCaches
assert Span.current().getSpanContext().isValid()
def stream = connection.inputStream
def lines = stream.readLines()
stream.close()
assert connection.getResponseCode() == STATUS
assert lines == [RESPONSE]
// call again to ensure the cycling is ok
connection = url.openConnection()
connection.useCaches = useCaches
assert Span.current().getSpanContext().isValid()
// call before input stream to test alternate behavior
assert connection.getResponseCode() == STATUS
connection.inputStream
stream = connection.inputStream // one more to ensure state is working
lines = stream.readLines()
stream.close()
assert lines == [RESPONSE]
}
expect:
assertTraces(1) {
trace(0, 5) {
span(0) {
name "someTrace"
hasNoParent()
attributes {
}
}
span(1) {
name "HTTP GET"
kind CLIENT
childOf span(0)
attributes {
"$SemanticAttributes.NET_TRANSPORT" IP_TCP
"$SemanticAttributes.NET_PEER_NAME" "localhost"
"$SemanticAttributes.NET_PEER_PORT" server.httpPort()
"$SemanticAttributes.HTTP_URL" "$url"
"$SemanticAttributes.HTTP_METHOD" "GET"
"$SemanticAttributes.HTTP_STATUS_CODE" STATUS
"$SemanticAttributes.HTTP_FLAVOR" "1.1"
"$SemanticAttributes.HTTP_RESPONSE_CONTENT_LENGTH" Long
}
}
span(2) {
name "test-http-server"
kind SERVER
childOf span(1)
attributes {
}
}
span(3) {
name "HTTP GET"
kind CLIENT
childOf span(0)
attributes {
"$SemanticAttributes.NET_TRANSPORT" IP_TCP
"$SemanticAttributes.NET_PEER_NAME" "localhost"
"$SemanticAttributes.NET_PEER_PORT" server.httpPort()
"$SemanticAttributes.HTTP_URL" "$url"
"$SemanticAttributes.HTTP_METHOD" "GET"
"$SemanticAttributes.HTTP_STATUS_CODE" STATUS
"$SemanticAttributes.HTTP_FLAVOR" "1.1"
"$SemanticAttributes.HTTP_RESPONSE_CONTENT_LENGTH" Long
}
}
span(4) {
name "test-http-server"
kind SERVER
childOf span(3)
attributes {
}
}
}
}
where:
useCaches << [false, true]
}
def "test broken API usage (#iteration)"() {
setup:
def url = resolveAddress("/success").toURL()
HttpURLConnection connection = runWithSpan("someTrace") {
HttpURLConnection con = url.openConnection()
con.setRequestProperty("Connection", "close")
assert Span.current().getSpanContext().isValid()
assert con.getResponseCode() == STATUS
return con
}
expect:
assertTraces(1) {
trace(0, 3) {
span(0) {
name "someTrace"
hasNoParent()
attributes {
}
}
span(1) {
name "HTTP GET"
kind CLIENT
childOf span(0)
attributes {
"$SemanticAttributes.NET_PEER_NAME" "localhost"
"$SemanticAttributes.NET_PEER_PORT" server.httpPort()
"$SemanticAttributes.NET_TRANSPORT" IP_TCP
"$SemanticAttributes.HTTP_URL" "$url"
"$SemanticAttributes.HTTP_METHOD" "GET"
"$SemanticAttributes.HTTP_STATUS_CODE" STATUS
"$SemanticAttributes.HTTP_FLAVOR" "1.1"
"$SemanticAttributes.HTTP_RESPONSE_CONTENT_LENGTH" Long
}
}
serverSpan(it, 2, span(1))
}
}
cleanup:
connection.disconnect()
where:
iteration << (1..10)
}
def "test post request"() {
setup:
def url = resolveAddress("/success").toURL()
runWithSpan("someTrace") {
HttpURLConnection connection = url.openConnection()
connection.setRequestMethod("POST")
String urlParameters = "q=ASDF&w=&e=&r=12345&t="
// Send post request
connection.setDoOutput(true)
DataOutputStream wr = new DataOutputStream(connection.getOutputStream())
wr.writeBytes(urlParameters)
wr.flush()
wr.close()
assert connection.getResponseCode() == STATUS
def stream = connection.inputStream
def lines = stream.readLines()
stream.close()
assert lines == [RESPONSE]
}
expect:
assertTraces(1) {
trace(0, 3) {
span(0) {
name "someTrace"
hasNoParent()
attributes {
}
}
span(1) {
name "HTTP POST"
kind CLIENT
childOf span(0)
attributes {
"$SemanticAttributes.NET_TRANSPORT" IP_TCP
"$SemanticAttributes.NET_PEER_NAME" "localhost"
"$SemanticAttributes.NET_PEER_PORT" server.httpPort()
"$SemanticAttributes.HTTP_URL" "$url"
"$SemanticAttributes.HTTP_METHOD" "POST"
"$SemanticAttributes.HTTP_STATUS_CODE" STATUS
"$SemanticAttributes.HTTP_FLAVOR" "1.1"
"$SemanticAttributes.HTTP_REQUEST_CONTENT_LENGTH" Long
"$SemanticAttributes.HTTP_RESPONSE_CONTENT_LENGTH" Long
}
}
span(2) {
name "test-http-server"
kind SERVER
childOf span(1)
attributes {
}
}
}
}
}
def "sun.net.www.protocol.http.HttpURLConnection.getOutputStream should transform GET into POST"() {
setup:
def url = resolveAddress("/success").toURL()
runWithSpan("someTrace") {
HttpURLConnection connection = url.openConnection()
def connectionClassName = connection.getClass().getName()
assert "sun.net.www.protocol.http.HttpURLConnection".equals(connectionClassName)
connection.setRequestMethod("GET")
String urlParameters = "q=ASDF&w=&e=&r=12345&t="
// Send POST request
connection.setDoOutput(true)
DataOutputStream wr = new DataOutputStream(connection.getOutputStream())
wr.writeBytes(urlParameters)
wr.flush()
wr.close()
assert connection.getResponseCode() == STATUS
def stream = connection.inputStream
def lines = stream.readLines()
stream.close()
assert lines == [RESPONSE]
}
expect:
assertTraces(1) {
trace(0, 3) {
span(0) {
name "someTrace"
hasNoParent()
attributes {
}
}
span(1) {
name "HTTP POST"
kind CLIENT
childOf span(0)
attributes {
"$SemanticAttributes.NET_TRANSPORT" IP_TCP
"$SemanticAttributes.NET_PEER_NAME" "localhost"
"$SemanticAttributes.NET_PEER_PORT" server.httpPort()
"$SemanticAttributes.HTTP_URL" "$url"
"$SemanticAttributes.HTTP_METHOD" "POST"
"$SemanticAttributes.HTTP_STATUS_CODE" STATUS
"$SemanticAttributes.HTTP_FLAVOR" "1.1"
"$SemanticAttributes.HTTP_REQUEST_CONTENT_LENGTH" Long
"$SemanticAttributes.HTTP_RESPONSE_CONTENT_LENGTH" Long
}
}
span(2) {
name "test-http-server"
kind SERVER
childOf span(1)
attributes {
}
}
}
}
}
}