File tree 2 files changed +0
-27
lines changed
2 files changed +0
-27
lines changed Original file line number Diff line number Diff line change 4
4
"testing"
5
5
6
6
. "github.com/bsm/ginkgo/v2"
7
- . "github.com/bsm/ginkgo/v2/extensions/table"
8
7
. "github.com/bsm/gomega"
9
8
)
10
9
Original file line number Diff line number Diff line change @@ -34,32 +34,6 @@ func TestNewWithTracerProvider(t *testing.T) {
34
34
}
35
35
}
36
36
37
- func TestNewWithAttributes (t * testing.T ) {
38
- provider := sdktrace .NewTracerProvider ()
39
- hook := newTracingHook ("" , WithTracerProvider (provider ), WithAttributes (semconv .NetPeerNameKey .String ("localhost" )))
40
- ctx , span := provider .Tracer ("redis-test" ).Start (context .TODO (), "redis-test" )
41
- cmd := redis .NewCmd (ctx , "ping" )
42
- defer span .End ()
43
-
44
- processHook := hook .ProcessHook (func (ctx context.Context , cmd redis.Cmder ) error {
45
- attrs := trace .SpanFromContext (ctx ).(sdktrace.ReadOnlySpan ).Attributes ()
46
- if ! (attrs [0 ] == semconv .DBSystemRedis ) {
47
- t .Fatalf ("expected attrs[0] to be semconv.DBSystemRedis, got: %v" , attrs [0 ])
48
- }
49
- if ! (attrs [1 ] == semconv .NetPeerNameKey .String ("localhost" )) {
50
- t .Fatalf ("expected attrs[1] to be semconv.NetPeerNameKey.String(\" localhost\" ), got: %v" , attrs [1 ])
51
- }
52
- if ! (attrs [2 ] == semconv .DBStatementKey .String ("ping" )) {
53
- t .Fatalf ("expected attrs[2] to be semconv.DBStatementKey.String(\" ping\" ), got: %v" , attrs [2 ])
54
- }
55
- return nil
56
- })
57
- err := processHook (ctx , cmd )
58
- if err != nil {
59
- t .Fatal (err )
60
- }
61
- }
62
-
63
37
func TestWithDBStatement (t * testing.T ) {
64
38
provider := sdktrace .NewTracerProvider ()
65
39
hook := newTracingHook (
You can’t perform that action at this time.
0 commit comments