generated from NdoleStudio/go-http-client
-
Notifications
You must be signed in to change notification settings - Fork 2
/
option_test.go
112 lines (85 loc) · 2.01 KB
/
option_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
package otelroundtripper
import (
"go.opentelemetry.io/otel/metric/noop"
"net/http"
"testing"
"go.opentelemetry.io/otel/attribute"
semconv "go.opentelemetry.io/otel/semconv/v1.18.0"
"github.com/stretchr/testify/assert"
)
func TestWithParent(t *testing.T) {
t.Run("parent is not set when the parent is nil", func(t *testing.T) {
// Setup
t.Parallel()
// Arrange
cfg := defaultConfig()
// Act
WithParent(nil).apply(cfg)
// Assert
assert.NotNil(t, cfg.parent)
})
t.Run("parent is set when the parent is not nil", func(t *testing.T) {
// Setup
t.Parallel()
// Arrange
cfg := defaultConfig()
parent := &http.Transport{}
// Act
WithParent(parent).apply(cfg)
// Assert
assert.NotNil(t, cfg.parent)
assert.Equal(t, parent, cfg.parent)
})
}
func TestWithName(t *testing.T) {
t.Run("name is not set when the parent is an empty string", func(t *testing.T) {
// Setup
t.Parallel()
// Arrange
cfg := defaultConfig()
// Act
WithName(" ").apply(cfg)
// Assert
assert.Equal(t, "http.client", cfg.name)
})
t.Run("name is set when the name is not an empty string", func(t *testing.T) {
// Setup
t.Parallel()
// Arrange
cfg := defaultConfig()
name := " name "
// Act
WithName(name).apply(cfg)
// Assert
assert.Equal(t, "name", cfg.name)
})
}
func TestWithMeter(t *testing.T) {
t.Run("meter is set successfully", func(t *testing.T) {
// Setup
t.Parallel()
// Arrange
cfg := defaultConfig()
meter := noop.NewMeterProvider().Meter("http.client")
// Act
WithMeter(meter).apply(cfg)
// Assert
assert.Equal(t, meter, cfg.meter)
})
}
func TestWithAttributes(t *testing.T) {
t.Run("attributes are successfully", func(t *testing.T) {
// Setup
t.Parallel()
// Arrange
cfg := defaultConfig()
attributes := []attribute.KeyValue{
semconv.ServiceNamespaceKey.String("namespace"),
semconv.ServiceInstanceIDKey.Int(1),
}
// Act
WithAttributes(attributes...).apply(cfg)
// Assert
assert.Equal(t, attributes, cfg.attributes)
})
}