-
Notifications
You must be signed in to change notification settings - Fork 53
/
tracer_test.go
730 lines (578 loc) · 18.9 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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
package lightstep_test
import (
"context"
"errors"
"fmt"
"strings"
"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/constants"
"github.com/lightstep/lightstep-tracer-go/lightstepfakes"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/opentracing/opentracing-go"
"github.com/opentracing/opentracing-go/log"
)
var _ = Describe("Tracer", func() {
var tracer Tracer
var opts Options
const accessToken = "ACCESS_TOKEN"
var tags = opentracing.Tags{constants.ComponentNameKey: "test-service"}
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("New Tracer", func() {
BeforeEach(func() {
opts.AccessToken = accessToken
opts.ConnFactory = fakeConn
})
It("should emit a warning when the service name is unset", func() {
event := <-eventChan
ems, ok := event.(EventMissingService)
Expect(ok).To(BeTrue())
str := ems.String()
// String should contain the default service name which is the name of this test
ok = strings.Contains(str, "{lightstep-tracer-go.test}")
Expect(ok).To(BeTrue())
})
})
Describe("Start Span", func() {
BeforeEach(func() {
opts.AccessToken = accessToken
opts.Tags = tags
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("#Log", func() {
BeforeEach(func() {
opts.AccessToken = accessToken
opts.Tags = tags
opts.ConnFactory = fakeConn
})
It("logs the data", func() {
span := tracer.StartSpan("test")
Expect(span).NotTo(BeNil())
logData := opentracing.LogData{
Timestamp: time.Now(),
Event: "event",
Payload: "test",
}
span.Log(logData)
span.Finish()
tracer.Flush(context.Background())
Expect(fakeClient.ReportCallCount()).To(Equal(1))
_, request, _ := fakeClient.ReportArgsForCall(0)
Expect(request.Spans).To(HaveLen(1))
logs := request.Spans[0].Logs
Expect(logs).To(HaveLen(1))
Expect(logs[0].Fields).To(Equal([]*collectorpb.KeyValue{&collectorpb.KeyValue{
Key: "event",
Value: &collectorpb.KeyValue_StringValue{
StringValue: "event",
},
}, &collectorpb.KeyValue{
Key: "payload",
Value: &collectorpb.KeyValue_JsonValue{
JsonValue: `"test"`,
},
}}))
})
It("can happen concurrently with Flush", func() {
span := tracer.StartSpan("test")
Expect(span).NotTo(BeNil())
wg := &sync.WaitGroup{}
wg.Add(2)
span.Log(opentracing.LogData{
Timestamp: time.Now(),
Event: "event",
Payload: "test",
})
span.Finish()
go func() {
defer wg.Done()
span.Log(opentracing.LogData{
Timestamp: time.Now(),
Event: "another",
Payload: "abc",
})
}()
go func() {
defer wg.Done()
tracer.Flush(context.Background())
}()
wg.Wait()
Expect(fakeClient.ReportCallCount()).To(Equal(1))
})
})
Describe("#LogFields", func() {
BeforeEach(func() {
opts.AccessToken = accessToken
opts.Tags = tags
opts.ConnFactory = fakeConn
})
It("logs the fields", func() {
span := tracer.StartSpan("test")
Expect(span).NotTo(BeNil())
span.LogFields(log.String("event", "test"))
span.Finish()
tracer.Flush(context.Background())
Expect(fakeClient.ReportCallCount()).To(Equal(1))
_, request, _ := fakeClient.ReportArgsForCall(0)
Expect(request.Spans).To(HaveLen(1))
logs := request.Spans[0].Logs
Expect(logs).To(HaveLen(1))
Expect(logs[0].Fields).To(Equal([]*collectorpb.KeyValue{&collectorpb.KeyValue{
Key: "event",
Value: &collectorpb.KeyValue_StringValue{
StringValue: "test",
},
}}))
})
It("can happen concurrently with Flush", func() {
span := tracer.StartSpan("test")
Expect(span).NotTo(BeNil())
wg := &sync.WaitGroup{}
wg.Add(2)
span.LogFields(log.String("event", "test"))
span.Finish()
go func() {
defer wg.Done()
span.LogFields(log.String("another event", "abc"))
}()
go func() {
defer wg.Done()
tracer.Flush(context.Background())
}()
wg.Wait()
Expect(fakeClient.ReportCallCount()).To(Equal(1))
})
})
Describe("#SetTag", func() {
BeforeEach(func() {
opts.AccessToken = accessToken
opts.Tags = tags
opts.ConnFactory = fakeConn
})
It("applies the tag to the span", func() {
span := tracer.StartSpan("test")
Expect(span).NotTo(BeNil())
span.SetTag("a", "bc")
span.Finish()
tracer.Flush(context.Background())
Expect(fakeClient.ReportCallCount()).To(Equal(1))
_, request, _ := fakeClient.ReportArgsForCall(0)
Expect(request.Spans).To(HaveLen(1))
tags := request.Spans[0].Tags
Expect(tags).To(HaveLen(1))
Expect(tags[0]).To(Equal(&collectorpb.KeyValue{
Key: "a",
Value: &collectorpb.KeyValue_StringValue{
StringValue: "bc",
},
}))
})
It("can happen concurrently with Flush", func() {
span := tracer.StartSpan("test")
Expect(span).NotTo(BeNil())
wg := &sync.WaitGroup{}
wg.Add(2)
span.SetTag("abc", 123)
span.Finish()
go func() {
defer wg.Done()
span.SetTag("a", "bc")
}()
go func() {
defer wg.Done()
tracer.Flush(context.Background())
}()
wg.Wait()
Expect(fakeClient.ReportCallCount()).To(Equal(1))
})
})
Describe("Access Token", func() {
BeforeEach(func() {
opts.AccessToken = accessToken
opts.Tags = tags
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.Tags = tags
opts.ConnFactory = fakeConn
opts.Recorder = fakeRecorder
})
Context("when the span context is not sampled", func() {
It("the span should not be recorded", func() {
span := tracer.StartSpan("parent", SetTraceID(1), SetSampled("false"))
span.Finish()
Expect(fakeRecorder.RecordSpanCallCount()).To(Equal(0))
})
})
Context("when the span context is sampled", func() {
It("the span should be recorded", func() {
span := tracer.StartSpan("parent", SetTraceID(1), SetSampled("true"))
span.Finish()
Expect(fakeRecorder.RecordSpanCallCount()).To(Equal(1))
span = tracer.StartSpan("parent", SetTraceID(1), SetSampled("fals"))
span.Finish()
Expect(fakeRecorder.RecordSpanCallCount()).To(Equal(2))
})
})
Context("when the parent span carries the Sampled flag", func() {
It("should propagate flags from parent to child", func() {
opentracing.SetGlobalTracer(tracer)
opentracingParentSpan := tracer.StartSpan("parent", SetTraceID(1), SetSampled("false"))
opentracingParentContext := opentracing.ContextWithSpan(context.Background(), opentracingParentSpan)
opentracingChildSpan, _ := opentracing.StartSpanFromContext(opentracingParentContext, "child")
lightstepChildSpanContext, _ := opentracingChildSpan.Context().(SpanContext)
Expect(lightstepChildSpanContext.Sampled).To(Equal("false"))
opentracingChildSpan.Finish()
opentracingParentSpan.Finish()
})
})
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.FlushDuration()).To(BeNumerically(">", 0))
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 one 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())
Expect(len(getReportedGRPCSpans(fakeClient))).To(Equal(2))
tracer.Flush(context.Background())
Expect(len(getReportedGRPCSpans(fakeClient))).To(Equal(4))
})
It("emits EventFlushError & EventStatusReport", func(done Done) {
tracer.Flush(context.Background())
event := <-eventChan
eventFlushError, ok := event.(EventFlushError)
Expect(ok).To(BeTrue())
Expect(eventFlushError.State()).To(Equal(FlushErrorTransport))
event = <-eventChan
dropSpanErr, ok := event.(EventStatusReport)
Expect(ok).To(BeTrue())
Expect(dropSpanErr.FlushDuration()).To(BeNumerically(">", 0))
Expect(dropSpanErr.DroppedSpans()).To(BeZero())
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 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))
})
})
Context("when there are errors sending spans & more spans are being reported", func() {
BeforeEach(func() {
var once sync.Once
fakeClient.ReportStub = func(
ctx context.Context,
in *collectorpb.ReportRequest,
opts ...grpc.CallOption,
) (*collectorpb.ReportResponse, error) {
once.Do(func() {
for i := 0; i < DefaultMaxSpans; i++ {
tracer.StartSpan(fmt.Sprint("span ", i)).Finish()
}
})
return nil, errors.New("fail")
}
})
It("should fail to restore the spans that failed to be sent", func() {
tracer.StartSpan("if at first you don't succeed...").Finish()
tracer.StartSpan("...fail to copy flushing back into your buffer").Finish()
tracer.Flush(context.Background())
Expect(len(getReportedGRPCSpans(fakeClient))).To(Equal(2))
tracer.Flush(context.Background())
Expect(len(getReportedGRPCSpans(fakeClient))).To(Equal(DefaultMaxSpans + 2))
tracer.Flush(context.Background())
Expect(len(getReportedGRPCSpans(fakeClient))).To(Equal(2*DefaultMaxSpans + 2))
})
It("emits EventFlushErrors & EventStatusReports", func(done Done) {
tracer.StartSpan("if at first you don't succeed...").Finish()
tracer.StartSpan("...fail to copy flushing back into your buffer").Finish()
expectEvents := func(expectedDroppedSpans int) {
event := <-eventChan
eventFlushError, ok := event.(EventFlushError)
Expect(ok).To(BeTrue())
Expect(eventFlushError.State()).To(Equal(FlushErrorTransport))
event = <-eventChan
dropSpanErr, ok := event.(EventStatusReport)
Expect(ok).To(BeTrue())
Expect(dropSpanErr.FlushDuration()).To(BeNumerically(">", 0))
Expect(dropSpanErr.SentSpans()).To(BeZero())
Expect(dropSpanErr.DroppedSpans()).To(Equal(expectedDroppedSpans), event.String())
Expect(dropSpanErr.EncodingErrors()).To(BeZero())
}
tracer.Flush(context.Background())
expectEvents(2)
tracer.Flush(context.Background())
expectEvents(0)
tracer.Flush(context.Background())
expectEvents(0)
close(done)
})
It("emits exactly two events", func() {
tracer.Flush(context.Background())
Eventually(eventChan).Should(Receive())
Eventually(eventChan).Should(Receive())
Consistently(eventChan).ShouldNot(Receive())
})
})
})
Describe("Close", func() {
BeforeEach(func() {
opts.AccessToken = accessToken
opts.Tags = tags
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.Tags = tags
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.Tags = tags
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.Tags = tags
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())
})
})
})