forked from grafana/tempo-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtracing_test.go
171 lines (166 loc) · 3.65 KB
/
tracing_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
package manifestutils
import (
"errors"
"net/url"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"github.com/grafana/tempo-operator/api/tempo/v1alpha1"
)
func Test_PatchTracingJaegerEnv(t *testing.T) {
tt := []struct {
name string
inputTempo v1alpha1.TempoStack
inputPod corev1.PodTemplateSpec
expectPod corev1.PodTemplateSpec
expectErr error
}{
{
name: "valid settings",
inputTempo: v1alpha1.TempoStack{
Spec: v1alpha1.TempoStackSpec{
Observability: v1alpha1.ObservabilitySpec{
Tracing: v1alpha1.TracingConfigSpec{
SamplingFraction: "1.0",
OTLPHTTPEndpoint: "http://collector:4318",
},
},
},
},
inputPod: corev1.PodTemplateSpec{
ObjectMeta: metav1.ObjectMeta{
Annotations: map[string]string{
"existing.com": "true",
},
},
Spec: corev1.PodSpec{
Containers: []corev1.Container{
{
Name: "first",
Env: []corev1.EnvVar{
{
Name: "EXISTING_VAR",
Value: "1234",
},
},
},
},
},
},
expectPod: corev1.PodTemplateSpec{
ObjectMeta: metav1.ObjectMeta{
Annotations: map[string]string{
"existing.com": "true",
"sidecar.opentelemetry.io/inject": "true",
},
},
Spec: corev1.PodSpec{
Containers: []corev1.Container{
{
Name: "first",
Env: []corev1.EnvVar{
{
Name: "EXISTING_VAR",
Value: "1234",
},
{
Name: "OTEL_EXPORTER_OTLP_ENDPOINT",
Value: "http://collector:4318",
},
{
Name: "OTEL_TRACES_SAMPLER",
Value: "parentbased_traceidratio",
},
{
Name: "OTEL_TRACES_SAMPLER_ARG",
Value: "1.0",
},
},
},
},
},
},
},
{
name: "no sampling param",
inputTempo: v1alpha1.TempoStack{
Spec: v1alpha1.TempoStackSpec{
Observability: v1alpha1.ObservabilitySpec{
Tracing: v1alpha1.TracingConfigSpec{
SamplingFraction: "",
},
},
},
},
inputPod: corev1.PodTemplateSpec{
ObjectMeta: metav1.ObjectMeta{
Annotations: map[string]string{
"existing.com": "true",
},
},
Spec: corev1.PodSpec{
Containers: []corev1.Container{
{
Name: "first",
Env: []corev1.EnvVar{
{
Name: "EXISTING_VAR",
Value: "1234",
},
},
},
},
},
},
expectPod: corev1.PodTemplateSpec{
ObjectMeta: metav1.ObjectMeta{
Annotations: map[string]string{
"existing.com": "true",
},
},
Spec: corev1.PodSpec{
Containers: []corev1.Container{
{
Name: "first",
Env: []corev1.EnvVar{
{
Name: "EXISTING_VAR",
Value: "1234",
},
},
},
},
},
},
},
{
name: "invalid agent address",
inputTempo: v1alpha1.TempoStack{
Spec: v1alpha1.TempoStackSpec{
Observability: v1alpha1.ObservabilitySpec{
Tracing: v1alpha1.TracingConfigSpec{
SamplingFraction: "0.5",
OTLPHTTPEndpoint: "---invalid----",
},
},
},
},
inputPod: corev1.PodTemplateSpec{},
expectPod: corev1.PodTemplateSpec{},
expectErr: &url.Error{
Op: "parse",
URL: "---invalid----",
Err: errors.New("invalid URI for request"),
},
},
}
for _, tc := range tt {
t.Run(tc.name, func(t *testing.T) {
pod, err := PatchTracingJaegerEnv(tc.inputTempo, tc.inputPod)
require.Equal(t, tc.expectErr, err)
assert.Equal(t, tc.expectPod, pod)
})
}
}