-
Notifications
You must be signed in to change notification settings - Fork 39
/
agent_test.go
161 lines (141 loc) · 4.16 KB
/
agent_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
// (c) Copyright IBM Corp. 2022
package instana
import (
"bytes"
"context"
"encoding/json"
"io/ioutil"
"net/http"
"strings"
"testing"
"github.com/instana/go-sensor/acceptor"
"github.com/instana/go-sensor/autoprofile"
"github.com/stretchr/testify/assert"
)
func Test_agentS_SendSpans(t *testing.T) {
tests := []struct {
name string
spans []Span
}{
{
name: "big span",
spans: []Span{
{
Data: HTTPSpanData{
Tags: HTTPSpanTags{
URL: strings.Repeat("1", maxContentLength),
},
},
},
},
},
{
name: "multiple big span",
spans: []Span{
{Data: HTTPSpanData{Tags: HTTPSpanTags{URL: strings.Repeat("1", maxContentLength)}}},
{Data: HTTPSpanData{Tags: HTTPSpanTags{URL: strings.Repeat("1", maxContentLength)}}},
{Data: HTTPSpanData{Tags: HTTPSpanTags{URL: strings.Repeat("1", maxContentLength)}}},
{Data: HTTPSpanData{Tags: HTTPSpanTags{URL: strings.Repeat("1", maxContentLength)}}},
{Data: HTTPSpanData{Tags: HTTPSpanTags{URL: strings.Repeat("1", maxContentLength)}}},
{Data: HTTPSpanData{Tags: HTTPSpanTags{URL: strings.Repeat("1", maxContentLength)}}},
},
},
{
name: "not really a big span",
spans: []Span{
{
Data: HTTPSpanData{
Tags: HTTPSpanTags{
URL: strings.Repeat("1", maxContentLength/2),
},
},
},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
ad := &agentCommunicator{
host: "", from: &fromS{},
client: &httpClientMock{
resp: &http.Response{
StatusCode: 200,
Body: ioutil.NopCloser(bytes.NewReader([]byte("{}"))),
},
},
}
agent := &agentS{agentComm: ad, logger: defaultLogger}
err := agent.SendSpans(tt.spans)
assert.NoError(t, err)
})
}
}
type httpClientMock struct {
resp *http.Response
err error
}
func (h httpClientMock) Do(req *http.Request) (*http.Response, error) {
return h.resp, h.err
}
func Test_agentResponse_getExtraHTTPHeaders(t *testing.T) {
tests := []struct {
name string
originalJSON string
want []string
}{
{
name: "old config",
originalJSON: `{"pid":37808,"agentUuid":"88:66:5a:ff:fe:05:a5:f0","extraHeaders":["expected-value"],"secrets":{"matcher":"contains-ignore-case","list":["key","pass","secret"]}}`,
want: []string{"expected-value"},
},
{
name: "new config",
originalJSON: `{"pid":38381,"agentUuid":"88:66:5a:ff:fe:05:a5:f0","tracing":{"extra-http-headers":["expected-value"]},"extraHeaders":["non-expected-value"],"secrets":{"matcher":"contains-ignore-case","list":["key","pass","secret"]}}`,
want: []string{"expected-value"},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
r := &agentResponse{}
json.Unmarshal([]byte(tt.originalJSON), r)
assert.Equalf(t, tt.want, r.getExtraHTTPHeaders(), "getExtraHTTPHeaders()")
})
}
}
func Test_agentApplyHostSettings(t *testing.T) {
fsm := &fsmS{
agentComm: &agentCommunicator{
host: "",
from: &fromS{},
},
}
response := agentResponse{
Pid: 37892,
HostID: "myhost",
Tracing: struct {
ExtraHTTPHeaders []string `json:"extra-http-headers"`
}{
ExtraHTTPHeaders: []string{"my-unwanted-custom-headers"},
},
}
opts := &Options{
Service: "test_service",
Tracer: TracerOptions{
CollectableHTTPHeaders: []string{"x-custom-header-1", "x-custom-header-2"},
},
AgentClient: alwaysReadyClient{},
}
sensor = newSensor(opts)
defer func() {
sensor = nil
}()
fsm.applyHostAgentSettings(response)
assert.NotContains(t, sensor.options.Tracer.CollectableHTTPHeaders, "my-unwanted-custom-headers")
}
type alwaysReadyClient struct{}
func (alwaysReadyClient) Ready() bool { return true }
func (alwaysReadyClient) SendMetrics(data acceptor.Metrics) error { return nil }
func (alwaysReadyClient) SendEvent(event *EventData) error { return nil }
func (alwaysReadyClient) SendSpans(spans []Span) error { return nil }
func (alwaysReadyClient) SendProfiles(profiles []autoprofile.Profile) error { return nil }
func (alwaysReadyClient) Flush(context.Context) error { return nil }