-
Notifications
You must be signed in to change notification settings - Fork 15
/
grpc_test.go
207 lines (190 loc) · 4.33 KB
/
grpc_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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
package pinpoint
import (
"github.com/stretchr/testify/assert"
"testing"
)
func Test_agentGrpc_sendAgentInfo(t *testing.T) {
type args struct {
agent *agent
}
opts := []ConfigOption{
WithAppName("TestApp"),
}
cfg, _ := NewConfig(opts...)
tests := []struct {
name string
args args
}{
{"1", args{newTestAgent(cfg)}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
agent := tt.args.agent
agent.agentGrpc = newMockAgentGrpc(agent, t)
b := agent.agentGrpc.registerAgentWithRetry()
assert.Equal(t, true, b, "sendAgentInfo")
})
}
}
func Test_agentGrpc_sendApiMetadata(t *testing.T) {
type args struct {
agent *agent
}
opts := []ConfigOption{
WithAppName("TestApp"),
}
cfg, _ := NewConfig(opts...)
tests := []struct {
name string
args args
}{
{"1", args{newTestAgent(cfg)}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
agent := tt.args.agent
agent.agentGrpc = newMockAgentGrpc(agent, t)
b := agent.agentGrpc.sendApiMetadataWithRetry(asyncApiId, "Asynchronous Invocation", -1, apiTypeInvocation)
assert.Equal(t, true, b, "sendApiMetadata")
})
}
}
func Test_agentGrpc_sendSqlMetadata(t *testing.T) {
type args struct {
agent *agent
}
opts := []ConfigOption{
WithAppName("TestApp"),
}
cfg, _ := NewConfig(opts...)
tests := []struct {
name string
args args
}{
{"1", args{newTestAgent(cfg)}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
agent := tt.args.agent
agent.agentGrpc = newMockAgentGrpc(agent, t)
b := agent.agentGrpc.sendSqlMetadataWithRetry(1, "SELECT 1")
assert.Equal(t, true, b, "sendSqlMetadata")
})
}
}
func Test_agentGrpc_sendStringMetadata(t *testing.T) {
type args struct {
agent *agent
}
opts := []ConfigOption{
WithAppName("TestApp"),
}
cfg, _ := NewConfig(opts...)
tests := []struct {
name string
args args
}{
{"1", args{newTestAgent(cfg)}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
agent := tt.args.agent
agent.agentGrpc = newMockAgentGrpc(agent, t)
b := agent.agentGrpc.sendStringMetadataWithRetry(1, "string value")
assert.Equal(t, true, b, "sendStringMetadata")
})
}
}
func Test_pingStream_sendPing(t *testing.T) {
type args struct {
agent *agent
}
opts := []ConfigOption{
WithAppName("TestApp"),
}
cfg, _ := NewConfig(opts...)
tests := []struct {
name string
args args
}{
{"1", args{newTestAgent(cfg)}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
agent := tt.args.agent
agent.agentGrpc = newMockAgentGrpcPing(agent, t)
stream := agent.agentGrpc.newPingStreamWithRetry()
err := stream.sendPing()
assert.NoError(t, err, "sendPing")
})
}
}
func Test_spanStream_sendSpan(t *testing.T) {
type args struct {
agent *agent
}
tests := []struct {
name string
args args
}{
{"1", args{newTestAgent(defaultConfig())}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
agent := tt.args.agent
agent.spanGrpc = newMockSpanGrpc(agent, t)
stream := agent.spanGrpc.newSpanStreamWithRetry()
span := defaultSpan()
span.agent = agent
span.NewSpanEvent("t1")
err := stream.sendSpan(span.newEventChunk(true))
assert.NoError(t, err, "sendSpan")
})
}
}
func Test_statStream_sendStat(t *testing.T) {
type args struct {
agent *agent
}
tests := []struct {
name string
args args
}{
{"1", args{newTestAgent(defaultConfig())}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
agent := tt.args.agent
agent.statGrpc = newMockStatGrpc(agent, t)
stream := agent.statGrpc.newStatStreamWithRetry()
stats := make([]*inspectorStats, 1)
stats[0] = getStats()
msg := makePAgentStatBatch(stats)
err := stream.sendStats(msg)
assert.NoError(t, err, "sendStats")
})
}
}
func Test_statStream_sendStatRetry(t *testing.T) {
type args struct {
agent *agent
}
tests := []struct {
name string
args args
}{
{"1", args{newTestAgent(defaultConfig())}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
agent := tt.args.agent
agent.statGrpc = newRetryMockStatGrpc(agent, t)
stream := agent.statGrpc.newStatStreamWithRetry()
stats := make([]*inspectorStats, 1)
stats[0] = getStats()
msg := makePAgentStatBatch(stats)
err := stream.sendStats(msg)
assert.NoError(t, err, "sendStats")
})
}
}