forked from lightstep/lightstep-tracer-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tracer_test.go
369 lines (297 loc) · 9.72 KB
/
tracer_test.go
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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
package lightstep_test
import (
"context"
"errors"
"fmt"
"sync"
"time"
"google.golang.org/grpc"
"github.com/lightstep/lightstep-tracer-common/golang/gogo/collectorpb"
"github.com/lightstep/lightstep-tracer-common/golang/gogo/collectorpb/collectorpbfakes"
. "github.com/lightstep/lightstep-tracer-go"
"github.com/lightstep/lightstep-tracer-go/lightstepfakes"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/opentracing/opentracing-go"
)
var _ = Describe("Tracer", func() {
var tracer Tracer
var opts Options
const accessToken = "ACCESS_TOKEN"
var fakeClient *collectorpbfakes.FakeCollectorServiceClient
var fakeConn ConnectorFactory
var fakeRecorder *lightstepfakes.FakeSpanRecorder
var eventHandler func(Event)
var eventChan <-chan Event
const eventBufferSize = 10
BeforeEach(func() {
opts.UseGRPC = true
fakeClient = new(collectorpbfakes.FakeCollectorServiceClient)
fakeClient.ReportReturns(&collectorpb.ReportResponse{}, nil)
fakeConn = fakeGrpcConnection(fakeClient)
fakeRecorder = new(lightstepfakes.FakeSpanRecorder)
eventHandler, eventChan = NewEventChannel(eventBufferSize)
SetGlobalEventHandler(eventHandler)
})
JustBeforeEach(func() {
tracer = NewTracer(opts)
})
AfterEach(func() {
closeTestTracer(tracer)
})
Describe("Start Span", func() {
BeforeEach(func() {
opts.AccessToken = accessToken
opts.ConnFactory = fakeConn
})
It("should start a span than can be finished", func() {
span := tracer.StartSpan("operation_name")
if !Expect(span).To(Not(BeNil())) {
return
}
span.Finish()
tracer.Flush(context.Background())
if !Expect(fakeClient.ReportCallCount()).To(Equal(1)) {
return
}
_, request, _ := fakeClient.ReportArgsForCall(0)
Expect(request.Spans).To(HaveLen(1))
})
It("should start a span that can be finished twice but only reports once", func() {
span := tracer.StartSpan("operation_name")
if !Expect(span).To(Not(BeNil())) {
return
}
span.Finish()
span.Finish()
tracer.Flush(context.Background())
if !Expect(fakeClient.ReportCallCount()).To(Equal(1)) {
return
}
_, request, _ := fakeClient.ReportArgsForCall(0)
Expect(request.Spans).To(HaveLen(1))
})
It("can start a span with references to internal spans", func() {
otherSpan := tracer.StartSpan("other")
Expect(func() {
tracer.StartSpan("test", opentracing.SpanReference{
ReferencedContext: otherSpan.Context(),
})
}).To(Not(Panic()))
})
It("can start a span with references to external spans", func() {
otherTracer := opentracing.NoopTracer{}
otherSpan := otherTracer.StartSpan("other")
Expect(func() {
tracer.StartSpan("test", opentracing.SpanReference{
ReferencedContext: otherSpan.Context(),
})
}).To(Not(Panic()))
})
})
Describe("Access Token", func() {
BeforeEach(func() {
opts.AccessToken = accessToken
opts.ConnFactory = fakeConn
})
It("should return the access token", func() {
Expect(GetLightStepAccessToken(tracer)).To(Equal(accessToken))
})
})
Describe("Flush", func() {
BeforeEach(func() {
opts.AccessToken = accessToken
opts.ConnFactory = fakeConn
})
Context("when the tracer is dropping spans", func() {
const ExpectedDroppedSpans = 2
JustBeforeEach(func() {
// overflow the span buffer so the tracer starts to drop spans
for i := 0; i < DefaultMaxSpans+ExpectedDroppedSpans; i++ {
tracer.StartSpan(fmt.Sprint("span ", i)).Finish()
}
})
It("emits EventStatusReport", func(done Done) {
tracer.Flush(context.Background())
err := <-eventChan
dropSpanErr, ok := err.(EventStatusReport)
Expect(ok).To(BeTrue())
Expect(dropSpanErr.DroppedSpans()).To(Equal(ExpectedDroppedSpans))
close(done)
})
It("emits exactly one event", func() {
tracer.Flush(context.Background())
Eventually(eventChan).Should(Receive())
Consistently(eventChan).ShouldNot(Receive())
})
})
Context("when the tracer is disabled", func() {
JustBeforeEach(func() {
tracer.Disable()
Eventually(eventChan).Should(Receive())
})
It("should not flush spans", func() {
reportCallCount := fakeClient.ReportCallCount()
tracer.StartSpan("these spans should not be recorded").Finish()
tracer.StartSpan("or flushed").Finish()
tracer.Flush(context.Background())
Consistently(fakeClient.ReportCallCount).Should(Equal(reportCallCount))
}, 5)
It("emits EventFlushError", func(done Done) {
tracer.Flush(context.Background())
event := <-eventChan
flushErrorEvent, ok := event.(EventFlushError)
Expect(ok).To(BeTrue())
Expect(flushErrorEvent.State()).To(Equal(FlushErrorTracerDisabled))
close(done)
})
It("emits exactly one event", func() {
tracer.Flush(context.Background())
Eventually(eventChan).Should(Receive())
Consistently(eventChan).ShouldNot(Receive())
})
})
Context("when tracer has been closed", func() {
var reportCallCount int
JustBeforeEach(func() {
tracer.Close(context.Background())
reportCallCount = fakeClient.ReportCallCount()
})
It("should not flush spans", func() {
tracer.StartSpan("can't flush this").Finish()
tracer.StartSpan("hammer time").Finish()
tracer.Flush(context.Background())
Consistently(fakeClient.ReportCallCount).Should(Equal(reportCallCount))
})
It("emits EventFlushError", func(done Done) {
tracer.Flush(context.Background())
Eventually(eventChan).Should(Receive())
event := <-eventChan
flushErrorEvent, ok := event.(EventFlushError)
Expect(ok).To(BeTrue())
Expect(flushErrorEvent.State()).To(Equal(FlushErrorTracerClosed))
close(done)
})
It("emits exactly two events", func() {
tracer.Flush(context.Background())
Eventually(eventChan).Should(Receive())
Eventually(eventChan).Should(Receive())
Consistently(eventChan).ShouldNot(Receive())
})
})
Context("when there is an error sending spans", func() {
BeforeEach(func() {
// set client to fail on the first call, then return normally
fakeClient.ReportReturnsOnCall(0, nil, errors.New("fail"))
fakeClient.ReportReturns(new(collectorpb.ReportResponse), nil)
})
It("should restore the spans that failed to be sent", func() {
tracer.StartSpan("if at first you don't succeed...").Finish()
tracer.StartSpan("...copy flushing back into your buffer").Finish()
tracer.Flush(context.Background())
tracer.Flush(context.Background())
Expect(len(getReportedGRPCSpans(fakeClient))).To(Equal(4))
})
})
Context("when a report is in progress", func() {
var startReportonce sync.Once
var startReportch chan struct{}
var finishReportch chan struct{}
BeforeEach(func() {
finishReportch = make(chan struct{})
startReportch = make(chan struct{})
startReportonce = sync.Once{}
fakeClient.ReportStub = func(ctx context.Context, req *collectorpb.ReportRequest, options ...grpc.CallOption) (*collectorpb.ReportResponse, error) {
startReportonce.Do(func() { close(startReportch) })
<-finishReportch
return new(collectorpb.ReportResponse), nil
}
})
JustBeforeEach(func() {
// wait for tracer to have a report in flight
Eventually(startReportch).Should(BeClosed())
})
It("retries flushing", func() {
tracer.StartSpan("these spans should sit in the buffer").Finish()
tracer.StartSpan("while the last report is in flight").Finish()
flushFinishedch := make(chan struct{})
go func() {
Flush(context.Background(), tracer)
close(flushFinishedch)
}()
// flush should wait for the last report to finish
Consistently(flushFinishedch).ShouldNot(BeClosed())
// no spans should have been reported yet
Expect(getReportedGRPCSpans(fakeClient)).To(HaveLen(0))
// allow the last report to finish
close(finishReportch)
// flush should now send a report with the last two spans
Eventually(flushFinishedch).Should(BeClosed())
// now the spans that were sitting in the buffer should be reported
Expect(getReportedGRPCSpans(fakeClient)).Should(HaveLen(2))
})
})
})
Describe("Close", func() {
BeforeEach(func() {
opts.AccessToken = accessToken
opts.ConnFactory = fakeConn
opts.MinReportingPeriod = 100 * time.Second
})
It("flushes the buffer before closing", func() {
tracer.StartSpan("span").Finish()
err := CloseTracer(tracer)
Expect(err).NotTo(HaveOccurred())
Expect(fakeClient.ReportCallCount()).To(Equal(1))
tracer.StartSpan("span2").Finish()
Consistently(fakeClient.ReportCallCount).Should(Equal(1))
})
})
Describe("valid SpanRecorder", func() {
BeforeEach(func() {
opts.AccessToken = accessToken
opts.ConnFactory = fakeConn
opts.Recorder = fakeRecorder
})
It("calls RecordSpan after finishing a span", func() {
tracer.StartSpan("span").Finish()
Expect(fakeRecorder.RecordSpanCallCount()).ToNot(BeZero())
})
})
Describe("nil SpanRecorder", func() {
BeforeEach(func() {
opts.AccessToken = accessToken
opts.ConnFactory = fakeConn
opts.Recorder = nil
})
It("doesn't call RecordSpan after finishing a span", func() {
span := tracer.StartSpan("span")
Expect(span.Finish).ToNot(Panic())
})
})
Describe("provides its ReporterID", func() {
BeforeEach(func() {
opts.AccessToken = accessToken
opts.ConnFactory = fakeConn
opts.Recorder = nil
})
It("is non-zero", func() {
rid, err := GetLightStepReporterID(tracer)
Expect(err).To(BeNil())
Expect(rid).To(Not(BeZero()))
})
})
})
var _ = Describe("UnsupportedTracer", func() {
type unsupportedTracer struct {
opentracing.Tracer
}
tracer := unsupportedTracer{}
Describe("has no ReporterID", func() {
It("is an error", func() {
rid, err := GetLightStepReporterID(tracer)
Expect(err).To(Not(BeNil()))
Expect(rid).To(BeZero())
})
})
})