Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: update all unit tests in instrumetation libraries with InitCollector API #1036

Merged
merged 33 commits into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
3a5a5cc
refactor: updated unit tests in google cloud platform with InitCollec…
Angith Jan 30, 2025
ebdceca
refactor: updated unit tests in amqp091 instrumentation library with …
Angith Jan 30, 2025
8e729f8
refactor: fixed TestClient unit test in amqp instrumentation library
Angith Jan 31, 2025
4c1b046
refactor: updated unit tests in awssdk instrumentation library with I…
Angith Feb 3, 2025
53aede5
refactor: updated unit tests in instaawsv2 with InitCollector API
Angith Feb 3, 2025
4646f3f
refactor: updated unit tests in instaawsv2 with InitCollector API
Angith Feb 3, 2025
70b7319
refactor: updated unit tests in instaazurefunction with InitCollector…
Angith Feb 3, 2025
8ffe1ef
refactor: updated unit tests in instabeego with InitCollector API
Angith Feb 3, 2025
d7692f0
refactor: updated unit tests in instaecho with InitCollector API
Angith Feb 3, 2025
8637611
refactor: updated unit tests in instafiber with InitCollector API
Angith Feb 3, 2025
6d27cec
refactor: updated unit tests in instagin with InitCollector API
Angith Feb 3, 2025
03d9591
refactor: updated unit tests in instagocb with InitCollector API
Angith Feb 3, 2025
86a4985
refactor: updated example in instaecho with InitCollector API
Angith Feb 3, 2025
8ddeb92
refactor: updated unit test in instagorm with InitCollector API
Angith Feb 3, 2025
8a383c1
refactor: updated unit test in instagraphql with InitCollector API
Angith Feb 3, 2025
689cab1
refactor: updated unit test in instagrpc with InitCollector API
Angith Feb 4, 2025
a324a25
refactor: updated unit test in instahttprouter with InitCollector API
Angith Feb 4, 2025
687234d
refactor: updated unit test in instalambda with InitCollector API
Angith Feb 4, 2025
1190c06
refactor: updated unit test in instalogrus with InitCollector API
Angith Feb 4, 2025
c8b3679
refactor: updated unit test in instamongo with InitCollector API
Angith Feb 4, 2025
e38bff4
refactor: updated unit test in instamux with InitCollector API
Angith Feb 4, 2025
574dc26
refactor: updated unit test in instapgx with InitCollector API
Angith Feb 4, 2025
5df5788
refactor: updated unit test in instaredigo with InitCollector API
Angith Feb 4, 2025
0a18493
refactor: updated unit test in instaredis with InitCollector API
Angith Feb 4, 2025
87241ff
refactor: updated unit test in instasarama with InitCollector API
Angith Feb 4, 2025
e2aecc7
refactor: updated unit test in instafasthttp with InitCollector API
Angith Feb 5, 2025
78e60ba
refactor: updated examples with InitCollector API
Angith Feb 5, 2025
bfa08b7
refactor: updated unit tests in instacosmos with InitCollector API
Angith Feb 5, 2025
370debe
refactor: updated unit tests in instagorm with InitCollector API
Angith Feb 5, 2025
e21f62d
refactor: updated unit tests in instagraphql with InitCollector API
Angith Feb 5, 2025
1fd7a87
Merge branch 'main' into refactor/instrumentation-unit-tests
Angith Feb 5, 2025
1d12905
Merge branch 'main' into refactor/instrumentation-unit-tests
Angith Feb 7, 2025
d51ce80
Merge branch 'main' into refactor/instrumentation-unit-tests
Angith Feb 13, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions example_httpserver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,13 @@ import (

// This example shows how to instrument an HTTP server with Instana tracing
func Example_tracingNamedHandlerFunc() {
sensor := instana.NewSensor("my-http-server")
c := instana.InitCollector(&instana.Options{
Service: "my-http-server",
})
defer instana.ShutdownCollector()

// To instrument a handler function, pass it as an argument to instana.TracingHandlerFunc()
http.HandleFunc("/", instana.TracingHandlerFunc(sensor, "/", func(w http.ResponseWriter, req *http.Request) {
http.HandleFunc("/", instana.TracingHandlerFunc(c, "/", func(w http.ResponseWriter, req *http.Request) {
// Extract the parent span and use its tracer to initialize any child spans to trace the calls
// inside the handler, e.g. database queries, 3rd-party API requests, etc.
if parent, ok := instana.SpanFromContext(req.Context()); ok {
Expand All @@ -32,7 +35,7 @@ func Example_tracingNamedHandlerFunc() {
// In case your handler is implemented as an http.Handler, pass its ServeHTTP method instead.
// You can also use instana.TracingNamedHandlerFunc() to provide a unique route identifier to
// group the calls to this route later in Instana UI.
http.HandleFunc("/files", instana.TracingNamedHandlerFunc(sensor, "index", "/:path", http.FileServer(http.Dir("./")).ServeHTTP))
http.HandleFunc("/files", instana.TracingNamedHandlerFunc(c, "index", "/:path", http.FileServer(http.Dir("./")).ServeHTTP))

if err := http.ListenAndServe(":0", nil); err != nil {
log.Fatalf("failed to start server: %s", err)
Expand All @@ -42,7 +45,10 @@ func Example_tracingNamedHandlerFunc() {
// This example demonstrates how to instrument a 3rd-party HTTP router that uses pattern matching to make sure
// the original path template is forwarded to Instana
func Example_httpRoutePatternMatching() {
sensor := instana.NewSensor("my-http-server")
c := instana.InitCollector(&instana.Options{
Service: "my-http-server",
})
defer instana.ShutdownCollector()

// Initialize your router. Here for simplicity we use stdlib http.ServeMux, however you
// can use any router that supports http.Handler/http.HandlerFunc, such as github.com/gorilla/mux
Expand All @@ -53,7 +59,7 @@ func Example_httpRoutePatternMatching() {
// in UI as `http.path_tpl` if the request path is different (we assume that this request
// has been routed to the handler via a matched pattern)
r.HandleFunc("/articles/{category}/{id:[0-9]+}", instana.TracingHandlerFunc(
sensor,
c,
"/articles/{category}/{id:[0-9]+}",
func(w http.ResponseWriter, req *http.Request) {
// ...
Expand Down
9 changes: 6 additions & 3 deletions example_instrumentation_go1.10_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,23 @@ import (
func ExampleWrapSQLConnector() {
// Here we initialize a new instance of instana.Sensor, however it is STRONGLY recommended
// to use a single instance throughout your application
sensor := instana.NewSensor("my-http-client")
c := instana.InitCollector(&instana.Options{
Service: "my-http-client",
})
defer instana.ShutdownCollector()

// Instrument the connector. Normally this would be a type provided by the driver library.
// Here we use a test mock to avoid bringing external dependencies.
//
// Note that instana.WrapSQLConnector() requires the connection string to send it later
// along with database spans.
connector := instana.WrapSQLConnector(sensor, "driver connection string", &sqlConnector{})
connector := instana.WrapSQLConnector(c, "driver connection string", &sqlConnector{})

// Use wrapped connector to initialize the database client. Note that
db := sql.OpenDB(connector)

// Inject parent span into the context
span := sensor.Tracer().StartSpan("entry")
span := c.Tracer().StartSpan("entry")
ctx := instana.ContextWithSpan(context.Background(), span)

// Query the database, passing the context containing the active span
Expand Down
26 changes: 18 additions & 8 deletions example_instrumentation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,12 @@ import (
func ExampleTracingHandlerFunc() {
// Here we initialize a new instance of instana.Sensor, however it is STRONGLY recommended
// to use a single instance throughout your application
sensor := instana.NewSensor("my-http-server")
c := instana.InitCollector(&instana.Options{
Service: "my-http-server",
})
defer instana.ShutdownCollector()

http.HandleFunc("/", instana.TracingNamedHandlerFunc(sensor, "root", "/", func(w http.ResponseWriter, req *http.Request) {
http.HandleFunc("/", instana.TracingNamedHandlerFunc(c, "root", "/", func(w http.ResponseWriter, req *http.Request) {
// handler code
}))
}
Expand All @@ -26,16 +29,20 @@ func ExampleTracingHandlerFunc() {
func ExampleRoundTripper() {
// Here we initialize a new instance of instana.Sensor, however it is STRONGLY recommended
// to use a single instance throughout your application
sensor := instana.NewSensor("my-http-client")
span := sensor.Tracer().StartSpan("entry")
c := instana.InitCollector(&instana.Options{
Service: "my-http-server",
})
defer instana.ShutdownCollector()

span := c.Tracer().StartSpan("entry")

// Make sure to finish the span so it can be properly recorded in the backend
defer span.Finish()

// http.DefaultTransport is used as a default RoundTripper, however you can provide
// your own implementation
client := &http.Client{
Transport: instana.RoundTripper(sensor, nil),
Transport: instana.RoundTripper(c, nil),
}

// Inject parent span into the request context
Expand All @@ -50,17 +57,20 @@ func ExampleRoundTripper() {
func ExampleSQLOpen() {
// Here we initialize a new instance of instana.Sensor, however it is STRONGLY recommended
// to use a single instance throughout your application
sensor := instana.NewSensor("my-http-client")
c := instana.InitCollector(&instana.Options{
Service: "my-http-server",
})
defer instana.ShutdownCollector()

// Instrument the driver. Normally this would be a type provided by the driver library, e.g.
// pq.Driver{} or mysql.Driver{}, but here we use a test mock to avoid bringing external dependencies
instana.InstrumentSQLDriver(sensor, "your_db_driver", sqlDriver{})
instana.InstrumentSQLDriver(c, "your_db_driver", sqlDriver{})

// Replace sql.Open() with instana.SQLOpen()
db, _ := instana.SQLOpen("your_db_driver", "driver connection string")

// Inject parent span into the context
span := sensor.Tracer().StartSpan("entry")
span := c.Tracer().StartSpan("entry")
ctx := instana.ContextWithSpan(context.Background(), span)

// Query the database, passing the context containing the active span
Expand Down
9 changes: 6 additions & 3 deletions instrumentation/cloud.google.com/go/pubsub/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@ import (
// This example show how to instrument and HTTP handler that receives Google Cloud Pub/Sub messages
// via the push delivery method.
func ExampleTracingHandlerFunc() {
// Initialize sensor
sensor := instana.NewSensor("pubsub-consumer")
// Initialize collector
c := instana.InitCollector(&instana.Options{
Service: "pubsub-consumer",
})
defer instana.ShutdownCollector()

// Wrap your Pub/Sub message handler with pubsub.TracingHandlerFunc
http.Handle("/", pubsub.TracingHandlerFunc(sensor, "/", func(w http.ResponseWriter, req *http.Request) {
http.Handle("/", pubsub.TracingHandlerFunc(c, "/", func(w http.ResponseWriter, req *http.Request) {
var delivery struct {
Message struct {
Data []byte `json:"data"`
Expand Down
64 changes: 30 additions & 34 deletions instrumentation/cloud.google.com/go/pubsub/pubsub_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,14 @@ func TestClient_Topic(t *testing.T) {
defer teardown()

recorder := instana.NewTestRecorder()
tracer := instana.NewTracerWithEverything(&instana.Options{AgentClient: alwaysReadyClient{}}, recorder)
c := instana.InitCollector(&instana.Options{
AgentClient: alwaysReadyClient{},
Recorder: recorder,
})

sensor := instana.NewSensorWithTracer(tracer)
defer instana.ShutdownSensor()
defer instana.ShutdownCollector()

pSpan := tracer.StartSpan("parent-span")
pSpan := c.StartSpan("parent-span")
ctx := context.Background()
if pSpan != nil {
ctx = instana.ContextWithSpan(ctx, pSpan)
Expand All @@ -45,23 +47,23 @@ func TestClient_Topic(t *testing.T) {

examples := map[string]func(*testing.T, *pubsub.Message) *pubsub.PublishResult{
"ClientProject": func(t *testing.T, msg *pubsub.Message) *pubsub.PublishResult {
client, err := pubsub.NewClient(ctx, "test-project", sensor, option.WithGRPCConn(conn))
client, err := pubsub.NewClient(ctx, "test-project", c, option.WithGRPCConn(conn))
require.NoError(t, err)

top := client.Topic("test-topic")

return top.Publish(ctx, msg)
},
"OtherProject": func(t *testing.T, msg *pubsub.Message) *pubsub.PublishResult {
client, err := pubsub.NewClient(ctx, "other-project", sensor, option.WithGRPCConn(conn))
client, err := pubsub.NewClient(ctx, "other-project", c, option.WithGRPCConn(conn))
require.NoError(t, err)

top := client.TopicInProject("test-topic", "test-project")

return top.Publish(ctx, msg)
},
"CreateTopic": func(t *testing.T, msg *pubsub.Message) *pubsub.PublishResult {
client, err := pubsub.NewClient(ctx, "test-project", sensor, option.WithGRPCConn(conn))
client, err := pubsub.NewClient(ctx, "test-project", c, option.WithGRPCConn(conn))
require.NoError(t, err)

top, err := client.CreateTopic(ctx, "new-test-topic")
Expand All @@ -70,7 +72,7 @@ func TestClient_Topic(t *testing.T) {
return top.Publish(ctx, msg)
},
"CreateTopicWithConfig": func(t *testing.T, msg *pubsub.Message) *pubsub.PublishResult {
client, err := pubsub.NewClient(ctx, "test-project", sensor, option.WithGRPCConn(conn))
client, err := pubsub.NewClient(ctx, "test-project", c, option.WithGRPCConn(conn))
require.NoError(t, err)

conf := &gpubsub.TopicConfig{
Expand Down Expand Up @@ -140,13 +142,11 @@ func TestClient_Topics(t *testing.T) {
require.NoError(t, err)
defer teardown()

sensor := instana.NewSensorWithTracer(
instana.NewTracerWithEverything(
instana.DefaultOptions(),
instana.NewTestRecorder(),
),
)
defer instana.ShutdownSensor()
c := instana.InitCollector(&instana.Options{
AgentClient: alwaysReadyClient{},
Recorder: instana.NewTestRecorder(),
})
defer instana.ShutdownCollector()

topicNames := []string{"first-topic", "second-topic"}

Expand All @@ -157,7 +157,7 @@ func TestClient_Topics(t *testing.T) {
require.NoError(t, err)
}

client, err := pubsub.NewClient(context.Background(), "test-project", sensor, option.WithGRPCConn(conn))
client, err := pubsub.NewClient(context.Background(), "test-project", c, option.WithGRPCConn(conn))
require.NoError(t, err)

var res []*pubsub.PublishResult
Expand Down Expand Up @@ -196,13 +196,11 @@ func TestClient_Subscription(t *testing.T) {
require.NoError(t, err)
defer teardown()

sensor := instana.NewSensorWithTracer(
instana.NewTracerWithEverything(
instana.DefaultOptions(),
instana.NewTestRecorder(),
),
)
defer instana.ShutdownSensor()
c := instana.InitCollector(&instana.Options{
AgentClient: alwaysReadyClient{},
Recorder: instana.NewTestRecorder(),
})
defer instana.ShutdownCollector()

top, err := srv.GServer.CreateTopic(context.Background(), &pb.Topic{
Name: "projects/test-project/topics/test-topic",
Expand All @@ -221,7 +219,7 @@ func TestClient_Subscription(t *testing.T) {
})
require.NoError(t, err)

client, err := pubsub.NewClient(context.Background(), "test-project", sensor, option.WithGRPCConn(conn))
client, err := pubsub.NewClient(context.Background(), "test-project", c, option.WithGRPCConn(conn))
require.NoError(t, err)

return client.Subscription("test-subscription")
Expand All @@ -237,14 +235,14 @@ func TestClient_Subscription(t *testing.T) {
})
require.NoError(t, err)

client, err := pubsub.NewClient(context.Background(), "other-project", sensor, option.WithGRPCConn(conn))
client, err := pubsub.NewClient(context.Background(), "other-project", c, option.WithGRPCConn(conn))
require.NoError(t, err)

return client.SubscriptionInProject("test-subscription", "test-project")
},

"CreateSubscriptionWithConfig": func(t *testing.T, topicName string) *pubsub.Subscription {
client, err := pubsub.NewClient(context.Background(), "test-project", sensor, option.WithGRPCConn(conn))
client, err := pubsub.NewClient(context.Background(), "test-project", c, option.WithGRPCConn(conn))
require.NoError(t, err)

sub, err := client.CreateSubscription(context.Background(), "test-subscription", gpubsub.SubscriptionConfig{
Expand Down Expand Up @@ -288,13 +286,11 @@ func TestClient_Subscriptions(t *testing.T) {
require.NoError(t, err)
defer teardown()

sensor := instana.NewSensorWithTracer(
instana.NewTracerWithEverything(
instana.DefaultOptions(),
instana.NewTestRecorder(),
),
)
defer instana.ShutdownSensor()
c := instana.InitCollector(&instana.Options{
AgentClient: alwaysReadyClient{},
Recorder: instana.NewTestRecorder(),
})
defer instana.ShutdownCollector()

top, err := srv.GServer.CreateTopic(context.Background(), &pb.Topic{
Name: "projects/test-project/topics/test-topic",
Expand All @@ -311,7 +307,7 @@ func TestClient_Subscriptions(t *testing.T) {
require.NoError(t, err)
}

client, err := pubsub.NewClient(context.Background(), "test-project", sensor, option.WithGRPCConn(conn))
client, err := pubsub.NewClient(context.Background(), "test-project", c, option.WithGRPCConn(conn))
require.NoError(t, err)

var subs []string
Expand Down
33 changes: 18 additions & 15 deletions instrumentation/cloud.google.com/go/pubsub/push_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ import (

func TestTracingHandler(t *testing.T) {
recorder := instana.NewTestRecorder()
sensor := instana.NewSensorWithTracer(
instana.NewTracerWithEverything(&instana.Options{AgentClient: alwaysReadyClient{}}, recorder),
)
defer instana.ShutdownSensor()
c := instana.InitCollector(&instana.Options{
AgentClient: alwaysReadyClient{},
Recorder: recorder,
})
defer instana.ShutdownCollector()

payload, err := ioutil.ReadFile("testdata/message.json")
require.NoError(t, err)
Expand All @@ -36,7 +37,7 @@ func TestTracingHandler(t *testing.T) {
numCalls int
reqSpan opentracing.Span
)
h := pubsub.TracingHandlerFunc(sensor, "/", func(w http.ResponseWriter, req *http.Request) {
h := pubsub.TracingHandlerFunc(c, "/", func(w http.ResponseWriter, req *http.Request) {
numCalls++

var ok bool
Expand Down Expand Up @@ -88,16 +89,17 @@ func TestTracingHandler(t *testing.T) {

func TestTracingHandlerFunc_TracePropagation(t *testing.T) {
recorder := instana.NewTestRecorder()
sensor := instana.NewSensorWithTracer(
instana.NewTracerWithEverything(&instana.Options{AgentClient: alwaysReadyClient{}}, recorder),
)
defer instana.ShutdownSensor()
c := instana.InitCollector(&instana.Options{
AgentClient: alwaysReadyClient{},
Recorder: recorder,
})
defer instana.ShutdownCollector()

payload, err := ioutil.ReadFile("testdata/message_with_context.json")
require.NoError(t, err)

var numCalls int
h := pubsub.TracingHandlerFunc(sensor, "/", func(w http.ResponseWriter, req *http.Request) {
h := pubsub.TracingHandlerFunc(c, "/", func(w http.ResponseWriter, req *http.Request) {
numCalls++

_, ok := instana.SpanFromContext(req.Context())
Expand Down Expand Up @@ -146,13 +148,14 @@ func TestTracingHandlerFunc_TracePropagation(t *testing.T) {

func TestTracingHandlerFunc_NotPubSub(t *testing.T) {
recorder := instana.NewTestRecorder()
sensor := instana.NewSensorWithTracer(
instana.NewTracerWithEverything(&instana.Options{AgentClient: alwaysReadyClient{}}, recorder),
)
defer instana.ShutdownSensor()
c := instana.InitCollector(&instana.Options{
AgentClient: alwaysReadyClient{},
Recorder: recorder,
})
defer instana.ShutdownCollector()

var numCalls int
h := pubsub.TracingHandlerFunc(sensor, "/", func(w http.ResponseWriter, req *http.Request) {
h := pubsub.TracingHandlerFunc(c, "/", func(w http.ResponseWriter, req *http.Request) {
numCalls++

_, ok := instana.SpanFromContext(req.Context())
Expand Down
Loading
Loading