-
Notifications
You must be signed in to change notification settings - Fork 360
Expand file tree
/
Copy pathOpensearchTransportClientTest.groovy
More file actions
327 lines (300 loc) · 9.82 KB
/
Copy pathOpensearchTransportClientTest.groovy
File metadata and controls
327 lines (300 loc) · 9.82 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
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
import datadog.trace.agent.test.AgentTestRunner
import datadog.trace.api.DDSpanTypes
import datadog.trace.bootstrap.instrumentation.api.Tags
import datadog.trace.test.util.Flaky
import org.opensearch.action.admin.cluster.health.ClusterHealthRequest
import org.opensearch.client.transport.TransportClient
import org.opensearch.common.io.FileSystemUtils
import org.opensearch.common.settings.Settings
import org.opensearch.common.transport.TransportAddress
import org.opensearch.index.IndexNotFoundException
import org.opensearch.node.InternalSettingsPreparer
import org.opensearch.node.Node
import org.opensearch.transport.Netty4Plugin
import org.opensearch.transport.TransportService
import org.opensearch.transport.client.PreBuiltTransportClient
import spock.lang.Shared
import static datadog.trace.agent.test.utils.TraceUtils.runUnderTrace
import static org.opensearch.cluster.ClusterName.CLUSTER_NAME_SETTING
@Flaky
class OpensearchTransportClientTest extends AgentTestRunner {
public static final long TIMEOUT = 10000 // 10 seconds
@Shared
TransportAddress tcpPublishAddress
@Shared
Node testNode
@Shared
File aosWorkingDir
@Shared
String clusterName = UUID.randomUUID().toString()
@Shared
TransportClient client
@Override
boolean useStrictTraceWrites() {
//FIXME IDM
false
}
def setupSpec() {
aosWorkingDir = File.createTempDir("test-aos-working-dir-", "")
aosWorkingDir.deleteOnExit()
println "AOS work dir: $aosWorkingDir"
def settings = Settings.builder()
.put("path.home", aosWorkingDir.path)
.put(CLUSTER_NAME_SETTING.getKey(), clusterName)
.put("node.name", "test-node")
.put("transport.type", "netty4")
.build()
testNode = new Node(InternalSettingsPreparer.prepareEnvironment(
settings, [:], null, null), [Netty4Plugin], false) {}
testNode.start()
tcpPublishAddress = testNode.injector().getInstance(TransportService).boundAddress().publishAddress()
client = new PreBuiltTransportClient(
Settings.builder()
// Since we use listeners to close spans this should make our span closing deterministic which is good for tests
.put("thread_pool.listener.size", 1)
.put(CLUSTER_NAME_SETTING.getKey(), clusterName)
.build()
)
client.addTransportAddress(tcpPublishAddress)
runUnderTrace("setup") {
// this may potentially create multiple requests and therefore multiple spans, so we wrap this call
// into a top level trace to get exactly one trace in the result.
client.admin().cluster().prepareHealth().setWaitForYellowStatus().execute().actionGet(TIMEOUT)
}
TEST_WRITER.waitForTraces(1)
}
def cleanupSpec() {
testNode?.close()
if (aosWorkingDir != null) {
FileSystemUtils.deleteSubDirectories(aosWorkingDir.toPath())
aosWorkingDir.delete()
}
}
def "test opensearch status"() {
setup:
def result = client.admin().cluster().health(new ClusterHealthRequest())
def status = result.get().status
expect:
status.name() == "GREEN"
assertTraces(2) {
trace(1) {
span {
serviceName "opensearch"
resourceName "NodesStatsAction"
operationName "opensearch.query"
spanType DDSpanTypes.OPENSEARCH
topLevel true
tags {
"$Tags.COMPONENT" "opensearch-java"
"$Tags.SPAN_KIND" Tags.SPAN_KIND_CLIENT
"$Tags.DB_TYPE" "opensearch"
"opensearch.action" "NodesStatsAction"
"opensearch.request" "NodesStatsRequest"
"opensearch.node.cluster.name" clusterName
defaultTags()
}
}
}
trace(1) {
span {
serviceName "opensearch"
resourceName "IndicesStatsAction"
operationName "opensearch.query"
spanType DDSpanTypes.OPENSEARCH
topLevel true
tags {
"$Tags.COMPONENT" "opensearch-java"
"$Tags.SPAN_KIND" Tags.SPAN_KIND_CLIENT
"$Tags.DB_TYPE" "opensearch"
"opensearch.action" "IndicesStatsAction"
"opensearch.request" "IndicesStatsRequest"
"opensearch.shard.broadcast.failed" 0
"opensearch.shard.broadcast.successful" 0
"opensearch.shard.broadcast.total" 0
defaultTags()
}
}
}
}
}
def "test opensearch error"() {
when:
client.prepareGet(indexName, indexType, id).get()
then:
thrown IndexNotFoundException
and:
assertTraces(2) {
trace(1) {
span {
serviceName "opensearch"
resourceName "NodesStatsAction"
operationName "opensearch.query"
spanType DDSpanTypes.OPENSEARCH
topLevel true
tags {
"$Tags.COMPONENT" "opensearch-java"
"$Tags.SPAN_KIND" Tags.SPAN_KIND_CLIENT
"$Tags.DB_TYPE" "opensearch"
"opensearch.action" "NodesStatsAction"
"opensearch.request" "NodesStatsRequest"
"opensearch.node.cluster.name" clusterName
defaultTags()
}
}
}
trace(1) {
span {
serviceName "opensearch"
resourceName "IndicesStatsAction"
operationName "opensearch.query"
spanType DDSpanTypes.OPENSEARCH
topLevel true
tags {
"$Tags.COMPONENT" "opensearch-java"
"$Tags.SPAN_KIND" Tags.SPAN_KIND_CLIENT
"$Tags.DB_TYPE" "opensearch"
"opensearch.action" "IndicesStatsAction"
"opensearch.request" "IndicesStatsRequest"
"opensearch.shard.broadcast.failed" 0
"opensearch.shard.broadcast.successful" 0
"opensearch.shard.broadcast.total" 0
defaultTags()
}
}
}
}
where:
indexName = "invalid-index"
indexType = null
id = "1"
}
def "test opensearch get"() {
setup:
assert TEST_WRITER == []
def indexResult = client.admin().indices().prepareCreate(indexName).get()
TEST_WRITER.waitForTraces(1)
expect:
indexResult.index() == indexName
TEST_WRITER.size() == 1
when:
def emptyResult = client.prepareGet(indexName, indexType, id).get()
then:
!emptyResult.isExists()
emptyResult.id == id
emptyResult.index == indexName
when:
def createResult = client.prepareIndex(indexName, indexType, id).setSource([:]).get()
then:
createResult.id == id
createResult.index == indexName
createResult.status().status == 201
when:
def result = client.prepareGet(indexName, indexType, id).get()
then:
result.isExists()
result.id == id
result.index == indexName
and:
assertTraces(5) {
trace(1) {
span {
serviceName "opensearch"
resourceName "NodesStatsAction"
operationName "opensearch.query"
spanType DDSpanTypes.OPENSEARCH
topLevel true
tags {
"$Tags.COMPONENT" "opensearch-java"
"$Tags.SPAN_KIND" Tags.SPAN_KIND_CLIENT
"$Tags.DB_TYPE" "opensearch"
"opensearch.action" "NodesStatsAction"
"opensearch.request" "NodesStatsRequest"
"opensearch.node.cluster.name" clusterName
defaultTags()
}
}
}
trace(1) {
span {
serviceName "opensearch"
resourceName "IndicesStatsAction"
operationName "opensearch.query"
spanType DDSpanTypes.OPENSEARCH
topLevel true
tags {
"$Tags.COMPONENT" "opensearch-java"
"$Tags.SPAN_KIND" Tags.SPAN_KIND_CLIENT
"$Tags.DB_TYPE" "opensearch"
"opensearch.action" "IndicesStatsAction"
"opensearch.request" "IndicesStatsRequest"
"opensearch.shard.broadcast.failed" 0
"opensearch.shard.broadcast.successful" 1
"opensearch.shard.broadcast.total" 2
defaultTags()
}
}
}
trace(1) {
span {
serviceName "opensearch"
resourceName "PutMappingAction"
operationName "opensearch.query"
spanType DDSpanTypes.OPENSEARCH
topLevel true
tags {
"$Tags.COMPONENT" "opensearch-java"
"$Tags.SPAN_KIND" Tags.SPAN_KIND_CLIENT
"$Tags.DB_TYPE" "opensearch"
"opensearch.action" "PutMappingAction"
"opensearch.request" "PutMappingRequest"
defaultTags()
}
}
}
trace(1) {
span {
serviceName "opensearch"
resourceName "NodesStatsAction"
operationName "opensearch.query"
spanType DDSpanTypes.OPENSEARCH
topLevel true
tags {
"$Tags.COMPONENT" "opensearch-java"
"$Tags.SPAN_KIND" Tags.SPAN_KIND_CLIENT
"$Tags.DB_TYPE" "opensearch"
"opensearch.action" "NodesStatsAction"
"opensearch.request" "NodesStatsRequest"
"opensearch.node.cluster.name" clusterName
defaultTags()
}
}
}
trace(1) {
span {
serviceName "opensearch"
resourceName "IndicesStatsAction"
operationName "opensearch.query"
spanType DDSpanTypes.OPENSEARCH
topLevel true
tags {
"$Tags.COMPONENT" "opensearch-java"
"$Tags.SPAN_KIND" Tags.SPAN_KIND_CLIENT
"$Tags.DB_TYPE" "opensearch"
"opensearch.action" "IndicesStatsAction"
"opensearch.request" "IndicesStatsRequest"
"opensearch.shard.broadcast.failed" 0
"opensearch.shard.broadcast.successful" 1
"opensearch.shard.broadcast.total" 2
defaultTags()
}
}
}
}
cleanup:
client.admin().indices().prepareDelete(indexName).get()
where:
indexName = "test-index"
indexType = null
id = "1"
}
}