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
|
/*
Package harness provides a suite of API compatibility checks. They were originally ported from the
OpenTracing Python library's "harness" module.
To run this test suite against your tracer, call harness.RunAPIChecks and provide it a function
that returns a Tracer implementation and a function to call to close it. The function will be
called to create a new tracer before each test in the suite is run, and the returned closer function
will be called after each test is finished.
Several options provide additional checks for your Tracer's behavior: CheckBaggageValues(true)
indicates your tracer supports baggage propagation, CheckExtract(true) tells the suite to test if
the Tracer can extract a trace context from text and binary carriers, and CheckInject(true) tests
if the Tracer can inject the trace context into a carrier.
The UseProbe option provides an APICheckProbe implementation that allows the test suite to
additionally check if two Spans are part of the same trace, and if a Span and a SpanContext
are part of the same trace. Implementing an APICheckProbe provides additional assertions that
your tracer is working properly.
*/
package harness
import (
"bytes"
"testing"
"time"
"github.com/opentracing/opentracing-go"
"github.com/opentracing/opentracing-go/log"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/suite"
)
// APICheckCapabilities describes capabilities of a Tracer that should be checked by APICheckSuite.
type APICheckCapabilities struct {
CheckBaggageValues bool // whether to check for propagation of baggage values
CheckExtract bool // whether to check if extracting contexts from carriers works
CheckInject bool // whether to check if injecting contexts works
Probe APICheckProbe // optional interface providing methods to check recorded data
}
// APICheckProbe exposes methods for testing data recorded by a Tracer.
type APICheckProbe interface {
// SameTrace helps tests assert that this tracer's spans are from the same trace.
SameTrace(first, second opentracing.Span) bool
// SameSpanContext helps tests assert that a span and a context are from the same trace and span.
SameSpanContext(opentracing.Span, opentracing.SpanContext) bool
}
// APICheckSuite is a testify suite for checking a Tracer against the OpenTracing API.
type APICheckSuite struct {
suite.Suite
opts APICheckCapabilities
newTracer func() (tracer opentracing.Tracer, closer func())
tracer opentracing.Tracer
closer func()
}
// RunAPIChecks runs a test suite to check a Tracer against the OpenTracing API.
// It is provided a function that will be executed to create and destroy a tracer for each test
// in the suite, and the given APICheckOption functional options `opts`.
func RunAPIChecks(
t *testing.T,
newTracer func() (tracer opentracing.Tracer, closer func()),
opts ...APICheckOption,
) {
s := &APICheckSuite{newTracer: newTracer}
for _, opt := range opts {
opt(s)
}
suite.Run(t, s)
}
// APICheckOption instances may be passed to NewAPICheckSuite.
type APICheckOption func(*APICheckSuite)
// CheckBaggageValues returns an option that sets whether to check for propagation of baggage values.
func CheckBaggageValues(val bool) APICheckOption {
return func(s *APICheckSuite) {
s.opts.CheckBaggageValues = val
}
}
// CheckExtract returns an option that sets whether to check if extracting contexts from carriers works.
func CheckExtract(val bool) APICheckOption {
return func(s *APICheckSuite) {
s.opts.CheckExtract = val
}
}
// CheckInject returns an option that sets whether to check if injecting contexts works.
func CheckInject(val bool) APICheckOption {
return func(s *APICheckSuite) {
s.opts.CheckInject = val
}
}
// CheckEverything returns an option that enables all API checks.
func CheckEverything() APICheckOption {
return func(s *APICheckSuite) {
s.opts.CheckBaggageValues = true
s.opts.CheckExtract = true
s.opts.CheckInject = true
}
}
// UseProbe returns an option that specifies an APICheckProbe implementation to use.
func UseProbe(probe APICheckProbe) APICheckOption {
return func(s *APICheckSuite) {
s.opts.Probe = probe
}
}
// SetupTest creates a tracer for this specific test invocation.
func (s *APICheckSuite) SetupTest() {
s.tracer, s.closer = s.newTracer()
if s.tracer == nil {
s.T().Fatalf("newTracer returned nil Tracer")
}
}
// TearDownTest closes the tracer, and clears the test-specific tracer.
func (s *APICheckSuite) TearDownTest() {
if s.closer != nil {
s.closer()
}
s.tracer, s.closer = nil, nil
}
// TestStartSpan checks if a Tracer can start a span and calls some span API methods.
func (s *APICheckSuite) TestStartSpan() {
span := s.tracer.StartSpan(
"Fry",
opentracing.Tag{Key: "birthday", Value: "August 14 1974"})
span.LogFields(
log.String("hospital", "Brooklyn Pre-Med Hospital"),
log.String("city", "Old New York"))
span.Finish()
}
// TestStartSpanWithParent checks if a Tracer can start a span with a specified parent.
func (s *APICheckSuite) TestStartSpanWithParent() {
parentSpan := s.tracer.StartSpan("Turanga Munda")
s.NotNil(parentSpan)
childFns := []func(opentracing.SpanContext) opentracing.SpanReference{
opentracing.ChildOf,
opentracing.FollowsFrom,
}
for _, childFn := range childFns {
span := s.tracer.StartSpan(
"Leela",
childFn(parentSpan.Context()),
opentracing.Tag{Key: "birthplace", Value: "sewers"})
span.Finish()
if s.opts.Probe != nil {
s.True(s.opts.Probe.SameTrace(parentSpan, span))
} else {
s.T().Log("harness.Probe not specified, skipping")
}
}
parentSpan.Finish()
}
// TestSetOperationName attempts to set the operation name on a span after it has been created.
func (s *APICheckSuite) TestSetOperationName() {
span := s.tracer.StartSpan("").SetOperationName("Farnsworth")
span.Finish()
}
// TestSpanTagValueTypes sets tags using values of different types.
func (s *APICheckSuite) TestSpanTagValueTypes() {
span := s.tracer.StartSpan("ManyTypes")
span.
SetTag("an_int", 9).
SetTag("a_bool", true).
SetTag("a_string", "aoeuidhtns")
}
// TestSpanTagsWithChaining tests chaining of calls to SetTag.
func (s *APICheckSuite) TestSpanTagsWithChaining() {
span := s.tracer.StartSpan("Farnsworth")
span.
SetTag("birthday", "9 April, 2841").
SetTag("loves", "different lengths of wires")
span.
SetTag("unicode_val", "non-ascii: \u200b").
SetTag("unicode_key_\u200b", "ascii val")
span.Finish()
}
// TestSpanLogs tests calls to log keys and values with spans.
func (s *APICheckSuite) TestSpanLogs() {
span := s.tracer.StartSpan("Fry")
span.LogKV(
"event", "frozen",
"year", 1999,
"place", "Cryogenics Labs")
span.LogKV(
"event", "defrosted",
"year", 2999,
"place", "Cryogenics Labs")
ts := time.Now()
span.FinishWithOptions(opentracing.FinishOptions{
LogRecords: []opentracing.LogRecord{
{
Timestamp: ts,
Fields: []log.Field{
log.String("event", "job-assignment"),
log.String("type", "delivery boy"),
},
},
}})
// Test deprecated log methods
span.LogEvent("an arbitrary event")
span.LogEventWithPayload("y", "z")
span.Log(opentracing.LogData{Event: "y", Payload: "z"})
}
func assertEmptyBaggage(t *testing.T, spanContext opentracing.SpanContext) {
if !assert.NotNil(t, spanContext, "assertEmptyBaggage got empty context") {
return
}
spanContext.ForeachBaggageItem(func(k, v string) bool {
assert.Fail(t, "new span shouldn't have baggage")
return false
})
}
// TestSpanBaggage tests calls to set and get span baggage, and if the CheckBaggageValues option
// is set, asserts that baggage values were successfully retrieved.
func (s *APICheckSuite) TestSpanBaggage() {
span := s.tracer.StartSpan("Fry")
assertEmptyBaggage(s.T(), span.Context())
spanRef := span.SetBaggageItem("Kiff-loves", "Amy")
s.Exactly(spanRef, span)
val := span.BaggageItem("Kiff-loves")
if s.opts.CheckBaggageValues {
s.Equal("Amy", val)
} else {
s.T().Log("CheckBaggageValues capability not set, skipping")
}
span.Finish()
}
// TestContextBaggage tests calls to set and get span baggage, and if the CheckBaggageValues option
// is set, asserts that baggage values were successfully retrieved from the span's SpanContext.
func (s *APICheckSuite) TestContextBaggage() {
span := s.tracer.StartSpan("Fry")
assertEmptyBaggage(s.T(), span.Context())
span.SetBaggageItem("Kiff-loves", "Amy")
if s.opts.CheckBaggageValues {
called := false
span.Context().ForeachBaggageItem(func(k, v string) bool {
s.False(called)
called = true
s.Equal("Kiff-loves", k)
s.Equal("Amy", v)
return true
})
} else {
s.T().Log("CheckBaggageValues capability not set, skipping")
}
span.Finish()
}
// TestTextPropagation tests if the Tracer can Inject a span into a TextMapCarrier, and later Extract it.
// If CheckExtract is set, it will check if Extract was successful (returned no error). If a Probe is set,
// it will check if the extracted context is in the same trace as the original span.
func (s *APICheckSuite) TestTextPropagation() {
span := s.tracer.StartSpan("Bender")
textCarrier := opentracing.TextMapCarrier{}
err := span.Tracer().Inject(span.Context(), opentracing.TextMap, textCarrier)
assert.NoError(s.T(), err)
extractedContext, err := s.tracer.Extract(opentracing.TextMap, textCarrier)
if s.opts.CheckExtract {
s.NoError(err)
assertEmptyBaggage(s.T(), extractedContext)
} else {
s.T().Log("CheckExtract capability not set, skipping")
}
if s.opts.Probe != nil {
s.True(s.opts.Probe.SameSpanContext(span, extractedContext))
} else {
s.T().Log("harness.Probe not specified, skipping")
}
span.Finish()
}
// TestHTTPPropagation tests if the Tracer can Inject a span into HTTP headers, and later Extract it.
// If CheckExtract is set, it will check if Extract was successful (returned no error). If a Probe is set,
// it will check if the extracted context is in the same trace as the original span.
func (s *APICheckSuite) TestHTTPPropagation() {
span := s.tracer.StartSpan("Bender")
textCarrier := opentracing.HTTPHeadersCarrier{}
err := span.Tracer().Inject(span.Context(), opentracing.HTTPHeaders, textCarrier)
s.NoError(err)
extractedContext, err := s.tracer.Extract(opentracing.HTTPHeaders, textCarrier)
if s.opts.CheckExtract {
s.NoError(err)
assertEmptyBaggage(s.T(), extractedContext)
} else {
s.T().Log("CheckExtract capability not set, skipping")
}
if s.opts.Probe != nil {
s.True(s.opts.Probe.SameSpanContext(span, extractedContext))
} else {
s.T().Log("harness.Probe not specified, skipping")
}
span.Finish()
}
// TestBinaryPropagation tests if the Tracer can Inject a span into a binary buffer, and later Extract it.
// If CheckExtract is set, it will check if Extract was successful (returned no error). If a Probe is set,
// it will check if the extracted context is in the same trace as the original span.
func (s *APICheckSuite) TestBinaryPropagation() {
span := s.tracer.StartSpan("Bender")
buf := new(bytes.Buffer)
err := span.Tracer().Inject(span.Context(), opentracing.Binary, buf)
s.NoError(err)
extractedContext, err := s.tracer.Extract(opentracing.Binary, buf)
if s.opts.CheckExtract {
s.NoError(err)
assertEmptyBaggage(s.T(), extractedContext)
} else {
s.T().Log("CheckExtract capability not set, skipping")
}
if s.opts.Probe != nil {
s.True(s.opts.Probe.SameSpanContext(span, extractedContext))
} else {
s.T().Log("harness.Probe not specified, skipping")
}
span.Finish()
}
// TestMandatoryFormats tests if all mandatory carrier formats are supported. If CheckExtract is set, it
// will check if the call to Extract was successful (returned no error such as ErrUnsupportedFormat).
func (s *APICheckSuite) TestMandatoryFormats() {
formats := []struct{ Format, Carrier interface{} }{
{opentracing.TextMap, opentracing.TextMapCarrier{}},
{opentracing.HTTPHeaders, opentracing.HTTPHeadersCarrier{}},
{opentracing.Binary, new(bytes.Buffer)},
}
span := s.tracer.StartSpan("Bender")
for _, fmtCarrier := range formats {
err := span.Tracer().Inject(span.Context(), fmtCarrier.Format, fmtCarrier.Carrier)
s.NoError(err)
spanCtx, err := s.tracer.Extract(fmtCarrier.Format, fmtCarrier.Carrier)
if s.opts.CheckExtract {
s.NoError(err)
assertEmptyBaggage(s.T(), spanCtx)
} else {
s.T().Log("CheckExtract capability not set, skipping")
}
}
}
// TestUnknownFormat checks if attempting to Inject or Extract using an unsupported format
// returns ErrUnsupportedFormat, if CheckInject and CheckExtract are set.
func (s *APICheckSuite) TestUnknownFormat() {
customFormat := "kiss my shiny metal ..."
span := s.tracer.StartSpan("Bender")
err := span.Tracer().Inject(span.Context(), customFormat, nil)
if s.opts.CheckInject {
s.Equal(opentracing.ErrUnsupportedFormat, err)
} else {
s.T().Log("CheckInject capability not set, skipping")
}
ctx, err := s.tracer.Extract(customFormat, nil)
s.Nil(ctx)
if s.opts.CheckExtract {
s.Equal(opentracing.ErrUnsupportedFormat, err)
} else {
s.T().Log("CheckExtract capability not set, skipping")
}
}
// ForeignSpanContext satisfies the opentracing.SpanContext interface, but otherwise does nothing.
type ForeignSpanContext struct{}
// ForeachBaggageItem could call handler for each baggage KV, but does nothing.
func (f ForeignSpanContext) ForeachBaggageItem(handler func(k, v string) bool) {}
// NotACarrier does not satisfy any of the opentracing carrier interfaces.
type NotACarrier struct{}
// TestInvalidInject checks if errors are returned when Inject is called with invalid inputs.
func (s *APICheckSuite) TestInvalidInject() {
if !s.opts.CheckInject {
s.T().Skip("CheckInject capability not set, skipping")
}
span := s.tracer.StartSpan("op")
// binary inject
err := span.Tracer().Inject(ForeignSpanContext{}, opentracing.Binary, new(bytes.Buffer))
s.Equal(opentracing.ErrInvalidSpanContext, err, "Foreign SpanContext should return invalid error")
err = span.Tracer().Inject(span.Context(), opentracing.Binary, NotACarrier{})
s.Equal(opentracing.ErrInvalidCarrier, err, "Carrier that's not io.Writer should return error")
// text inject
err = span.Tracer().Inject(ForeignSpanContext{}, opentracing.TextMap, opentracing.TextMapCarrier{})
s.Equal(opentracing.ErrInvalidSpanContext, err, "Foreign SpanContext should return invalid error")
err = span.Tracer().Inject(span.Context(), opentracing.TextMap, NotACarrier{})
s.Equal(opentracing.ErrInvalidCarrier, err, "Carrier that's not TextMapWriter should return error")
// HTTP inject
err = span.Tracer().Inject(ForeignSpanContext{}, opentracing.HTTPHeaders, opentracing.HTTPHeadersCarrier{})
s.Equal(opentracing.ErrInvalidSpanContext, err, "Foreign SpanContext should return invalid error")
err = span.Tracer().Inject(span.Context(), opentracing.HTTPHeaders, NotACarrier{})
s.Equal(opentracing.ErrInvalidCarrier, err, "Carrier that's not TextMapWriter should return error")
}
// TestInvalidExtract checks if errors are returned when Extract is called with invalid inputs.
func (s *APICheckSuite) TestInvalidExtract() {
if !s.opts.CheckExtract {
s.T().Skip("CheckExtract capability not set, skipping")
}
span := s.tracer.StartSpan("op")
// binary extract
ctx, err := span.Tracer().Extract(opentracing.Binary, NotACarrier{})
s.Equal(opentracing.ErrInvalidCarrier, err, "Carrier that's not io.Reader should return error")
s.Nil(ctx)
// text extract
ctx, err = span.Tracer().Extract(opentracing.TextMap, NotACarrier{})
s.Equal(opentracing.ErrInvalidCarrier, err, "Carrier that's not TextMapReader should return error")
s.Nil(ctx)
// HTTP extract
ctx, err = span.Tracer().Extract(opentracing.HTTPHeaders, NotACarrier{})
s.Equal(opentracing.ErrInvalidCarrier, err, "Carrier that's not TextMapReader should return error")
s.Nil(ctx)
span.Finish()
}
// TestMultiBaggage tests calls to set multiple baggage items, and if the CheckBaggageValues option
// is set, asserts that a baggage value was successfully retrieved from the span's SpanContext.
// It also ensures that returning false from the ForeachBaggageItem handler aborts iteration.
func (s *APICheckSuite) TestMultiBaggage() {
span := s.tracer.StartSpan("op")
assertEmptyBaggage(s.T(), span.Context())
span.SetBaggageItem("Bag1", "BaggageVal1")
span.SetBaggageItem("Bag2", "BaggageVal2")
if s.opts.CheckBaggageValues {
s.Equal("BaggageVal1", span.BaggageItem("Bag1"))
s.Equal("BaggageVal2", span.BaggageItem("Bag2"))
called := false
span.Context().ForeachBaggageItem(func(k, v string) bool {
s.False(called) // should only be called once
called = true
return false
})
s.True(called)
} else {
s.T().Log("CheckBaggageValues capability not set, skipping")
}
span.Finish()
}
|