forked from elastic/elastic-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler_action_diagnostics_test.go
401 lines (335 loc) · 16.9 KB
/
handler_action_diagnostics_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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
// or more contributor license agreements. Licensed under the Elastic License;
// you may not use this file except in compliance with the Elastic License.
package handlers
import (
"context"
"os"
"path"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/require"
"go.uber.org/zap/zapcore"
"github.com/elastic/elastic-agent-client/v7/pkg/client"
"github.com/elastic/elastic-agent-client/v7/pkg/proto"
"github.com/elastic/elastic-agent/pkg/control/v2/cproto"
"github.com/elastic/elastic-agent/internal/pkg/agent/application/paths"
"github.com/elastic/elastic-agent/internal/pkg/agent/errors"
"github.com/elastic/elastic-agent/internal/pkg/core/monitoring/config"
"github.com/elastic/elastic-agent/internal/pkg/diagnostics"
"github.com/elastic/elastic-agent/internal/pkg/fleetapi"
"github.com/elastic/elastic-agent/pkg/component"
"github.com/elastic/elastic-agent/pkg/component/runtime"
"github.com/elastic/elastic-agent/pkg/core/logger"
mockhandlers "github.com/elastic/elastic-agent/testing/mocks/internal_/pkg/agent/application/actions/handlers"
mockackers "github.com/elastic/elastic-agent/testing/mocks/internal_/pkg/fleetapi/acker"
)
var defaultRateLimit config.Limit = config.Limit{
Interval: 1 * time.Millisecond,
Burst: 10,
}
var hook1 diagnostics.Hook = diagnostics.Hook{
Name: "hook1",
Filename: "hook1.yaml",
ContentType: "application/yaml",
Hook: func(ctx context.Context) []byte {
return []byte(`hook: 1`)
},
}
var globalHooksNameAndFiles map[string]string
func init() {
globalHooksNameAndFiles = map[string]string{}
for _, gh := range diagnostics.GlobalHooks() {
globalHooksNameAndFiles[gh.Name] = gh.Filename
}
}
var (
mockInputUnit = component.Unit{ID: "UnitID", Type: client.UnitTypeInput}
mockUnitDiagnostic = runtime.ComponentUnitDiagnostic{
Component: component.Component{
ID: "ComponentID",
Units: []component.Unit{mockInputUnit},
},
Unit: mockInputUnit,
Results: []*proto.ActionDiagnosticUnitResult{
{
Name: "mock unit diagnostic result",
Filename: "mock_unit_diag_file.yaml",
ContentType: "application/yaml",
Content: []byte("hello: there"),
},
},
}
)
func TestDiagnosticHandlerHappyPathWithLogs(t *testing.T) {
tempAgentRoot := t.TempDir()
paths.SetTop(tempAgentRoot)
err := os.MkdirAll(path.Join(tempAgentRoot, "data"), 0755)
require.NoError(t, err)
mockDiagProvider := mockhandlers.NewDiagnosticsProvider(t)
mockUploader := mockhandlers.NewUploader(t)
testLogger, observedLogs := logger.NewTesting("diagnostic-handler-test")
handler := NewDiagnostics(testLogger, mockDiagProvider, defaultRateLimit, mockUploader)
mockDiagProvider.EXPECT().DiagnosticHooks().Return([]diagnostics.Hook{hook1})
mockDiagProvider.EXPECT().PerformDiagnostics(mock.Anything, mock.Anything).Return([]runtime.ComponentUnitDiagnostic{mockUnitDiagnostic})
mockDiagProvider.EXPECT().PerformComponentDiagnostics(mock.Anything, mock.Anything).Return([]runtime.ComponentDiagnostic{}, nil)
mockAcker := mockackers.NewAcker(t)
mockAcker.EXPECT().Ack(mock.Anything, mock.Anything).RunAndReturn(func(ctx context.Context, a fleetapi.Action) error {
require.IsType(t, new(fleetapi.ActionDiagnostics), a)
assert.NoError(t, a.(*fleetapi.ActionDiagnostics).Err)
return nil
})
mockAcker.EXPECT().Commit(mock.Anything).Return(nil)
mockUploader.EXPECT().UploadDiagnostics(mock.Anything, mock.Anything, mock.Anything, mock.Anything, mock.Anything).Return("upload-id", nil)
diagAction := &fleetapi.ActionDiagnostics{}
handler.collectDiag(context.Background(), diagAction, mockAcker)
assert.Len(t, observedLogs.FilterLevelExact(zapcore.ErrorLevel).All(), 0)
// need 2 logs for each coordinator hook (start and end)
assert.Lenf(
t,
observedLogs.FilterLevelExact(zapcore.DebugLevel).
FilterField(zapcore.Field{Key: "hook", Type: zapcore.StringType, String: hook1.Name}).
FilterField(zapcore.Field{Key: "filename", Type: zapcore.StringType, String: hook1.Filename}).
All(),
2,
"couldn't find start/end logs for hook %q file %q", hook1.Name, hook1.Filename)
assert.Lenf(
t,
observedLogs.FilterLevelExact(zapcore.DebugLevel).
FilterField(zapcore.Field{Key: "hook", Type: zapcore.StringType, String: hook1.Name}).
FilterField(zapcore.Field{Key: "filename", Type: zapcore.StringType, String: hook1.Filename}).
FilterFieldKey("elapsed").
All(),
1,
"couldn't find end log with elapsed time for hook %q file %q", hook1.Name, hook1.Filename)
// need 2 logs also for each global hook
for n, f := range globalHooksNameAndFiles {
assert.Lenf(t,
observedLogs.FilterLevelExact(zapcore.DebugLevel).
FilterField(zapcore.Field{Key: "hook", Type: zapcore.StringType, String: n}).
FilterField(zapcore.Field{Key: "filename", Type: zapcore.StringType, String: f}).
All(),
2,
"couldn't find start/end logs for global hook %q file %q", n, f)
assert.Lenf(
t,
observedLogs.FilterLevelExact(zapcore.DebugLevel).
FilterField(zapcore.Field{Key: "hook", Type: zapcore.StringType, String: n}).
FilterField(zapcore.Field{Key: "filename", Type: zapcore.StringType, String: f}).
FilterFieldKey("elapsed").
All(),
1,
"couldn't find end log with elapsed time for hook %q file %q", n, f)
}
// need a final log with the action and total elapsed time
assert.Lenf(t,
observedLogs.FilterLevelExact(zapcore.DebugLevel).
FilterField(zapcore.Field{Key: "action", Type: zapcore.StringerType, Interface: diagAction}).
FilterFieldKey("elapsed").All(),
1,
"couldn't find final log for action that includes the elapsed time")
// this is also checked in the Ack() mock call
assert.NoError(t, diagAction.Err)
}
func TestDiagnosticHandlerUploaderErrorWithLogs(t *testing.T) {
tempAgentRoot := t.TempDir()
paths.SetTop(tempAgentRoot)
err := os.MkdirAll(path.Join(tempAgentRoot, "data"), 0755)
require.NoError(t, err)
mockDiagProvider := mockhandlers.NewDiagnosticsProvider(t)
mockUploader := mockhandlers.NewUploader(t)
testLogger, observedLogs := logger.NewTesting("diagnostic-handler-test")
handler := NewDiagnostics(testLogger, mockDiagProvider, defaultRateLimit, mockUploader)
mockDiagProvider.EXPECT().DiagnosticHooks().Return([]diagnostics.Hook{})
mockDiagProvider.EXPECT().PerformDiagnostics(mock.Anything, mock.Anything).Return([]runtime.ComponentUnitDiagnostic{})
mockDiagProvider.EXPECT().PerformComponentDiagnostics(mock.Anything, mock.Anything).Return([]runtime.ComponentDiagnostic{}, nil)
// this error will be returbned by the uploader
uploaderError := errors.New("upload went wrong!")
mockUploader.EXPECT().UploadDiagnostics(mock.Anything, mock.Anything, mock.Anything, mock.Anything, mock.Anything).Return("", uploaderError)
mockAcker := mockackers.NewAcker(t)
mockAcker.EXPECT().Ack(mock.Anything, mock.Anything).RunAndReturn(func(ctx context.Context, a fleetapi.Action) error {
require.IsType(t, new(fleetapi.ActionDiagnostics), a)
// verify that we are acking the action with the correct error set
assert.ErrorIs(t, a.(*fleetapi.ActionDiagnostics).Err, uploaderError)
return nil
})
mockAcker.EXPECT().Commit(mock.Anything).Return(nil)
diagAction := &fleetapi.ActionDiagnostics{}
handler.collectDiag(context.Background(), diagAction, mockAcker)
// assert that we logged an ERROR log that includes the error from uploader and the action
assert.Len(t,
observedLogs.FilterLevelExact(zapcore.ErrorLevel).
FilterField(zapcore.Field{Key: "error.message", Type: zapcore.ErrorType, Interface: uploaderError}).
FilterField(zapcore.Field{Key: "action", Type: zapcore.StringerType, Interface: diagAction}).
All(),
1)
// we could assert the logs for the hooks, but those will be the same as the happy path, so for brevity we won't
}
func TestDiagnosticHandlerZipArchiveErrorWithLogs(t *testing.T) {
tempAgentRoot := t.TempDir()
paths.SetTop(tempAgentRoot)
// we don't set a 'data' subdirectory in order to make the zip process return an error
// this is the only way/trick to do it with the current implementation, sadly :(
mockDiagProvider := mockhandlers.NewDiagnosticsProvider(t)
mockUploader := mockhandlers.NewUploader(t)
testLogger, observedLogs := logger.NewTesting("diagnostic-handler-test")
handler := NewDiagnostics(testLogger, mockDiagProvider, defaultRateLimit, mockUploader)
mockDiagProvider.EXPECT().DiagnosticHooks().Return([]diagnostics.Hook{})
mockDiagProvider.EXPECT().PerformDiagnostics(mock.Anything, mock.Anything).Return([]runtime.ComponentUnitDiagnostic{})
mockDiagProvider.EXPECT().PerformComponentDiagnostics(mock.Anything, mock.Anything).Return([]runtime.ComponentDiagnostic{}, nil)
mockAcker := mockackers.NewAcker(t)
mockAcker.EXPECT().Ack(mock.Anything, mock.Anything).RunAndReturn(func(ctx context.Context, a fleetapi.Action) error {
require.IsType(t, new(fleetapi.ActionDiagnostics), a)
assert.Error(t, a.(*fleetapi.ActionDiagnostics).Err)
return nil
})
mockAcker.EXPECT().Commit(mock.Anything).Return(nil)
diagAction := &fleetapi.ActionDiagnostics{}
handler.collectDiag(context.Background(), diagAction, mockAcker)
// assert that we logged an ERROR log that includes the error from the zip compression and the action
assert.Len(t,
observedLogs.FilterLevelExact(zapcore.ErrorLevel).
FilterFieldKey("error.message").
FilterField(zapcore.Field{Key: "action", Type: zapcore.StringerType, Interface: diagAction}).
All(),
1)
// we could assert the logs for the hooks, but those will be the same as the happy path, so for brevity we won't
}
func TestDiagnosticHandlerAckErrorWithLogs(t *testing.T) {
tempAgentRoot := t.TempDir()
paths.SetTop(tempAgentRoot)
err := os.MkdirAll(path.Join(tempAgentRoot, "data"), 0755)
require.NoError(t, err)
mockDiagProvider := mockhandlers.NewDiagnosticsProvider(t)
mockUploader := mockhandlers.NewUploader(t)
testLogger, observedLogs := logger.NewTesting("diagnostic-handler-test")
handler := NewDiagnostics(testLogger, mockDiagProvider, defaultRateLimit, mockUploader)
mockDiagProvider.EXPECT().DiagnosticHooks().Return([]diagnostics.Hook{})
mockDiagProvider.EXPECT().PerformDiagnostics(mock.Anything, mock.Anything).Return([]runtime.ComponentUnitDiagnostic{})
mockDiagProvider.EXPECT().PerformComponentDiagnostics(mock.Anything, mock.Anything).Return([]runtime.ComponentDiagnostic{}, nil)
mockAcker := mockackers.NewAcker(t)
ackError := errors.New("acking went wrong")
mockAcker.EXPECT().Ack(mock.Anything, mock.Anything).RunAndReturn(func(ctx context.Context, a fleetapi.Action) error {
require.IsType(t, new(fleetapi.ActionDiagnostics), a)
assert.NoError(t, a.(*fleetapi.ActionDiagnostics).Err)
return ackError
})
mockAcker.EXPECT().Commit(mock.Anything).Return(nil)
mockUploader.EXPECT().UploadDiagnostics(mock.Anything, mock.Anything, mock.Anything, mock.Anything, mock.Anything).Return("upload-id", nil)
diagAction := &fleetapi.ActionDiagnostics{}
handler.collectDiag(context.Background(), diagAction, mockAcker)
// assert that we logged an ERROR log that includes the error from acker and the action
assert.Len(t,
observedLogs.FilterLevelExact(zapcore.ErrorLevel).
FilterField(zapcore.Field{Key: "error.message", Type: zapcore.ErrorType, Interface: ackError}).
FilterField(zapcore.Field{Key: "action", Type: zapcore.StringerType, Interface: diagAction}).
All(),
1)
// we could assert the logs for the hooks, but those will be the same as the happy path, so for brevity we won't
}
func TestDiagnosticHandlerCommitErrorWithLogs(t *testing.T) {
tempAgentRoot := t.TempDir()
paths.SetTop(tempAgentRoot)
err := os.MkdirAll(path.Join(tempAgentRoot, "data"), 0755)
require.NoError(t, err)
mockDiagProvider := mockhandlers.NewDiagnosticsProvider(t)
mockUploader := mockhandlers.NewUploader(t)
testLogger, observedLogs := logger.NewTesting("diagnostic-handler-test")
handler := NewDiagnostics(testLogger, mockDiagProvider, defaultRateLimit, mockUploader)
mockDiagProvider.EXPECT().DiagnosticHooks().Return([]diagnostics.Hook{})
mockDiagProvider.EXPECT().PerformDiagnostics(mock.Anything, mock.Anything).Return([]runtime.ComponentUnitDiagnostic{})
mockDiagProvider.EXPECT().PerformComponentDiagnostics(mock.Anything, mock.Anything).Return([]runtime.ComponentDiagnostic{}, nil)
mockAcker := mockackers.NewAcker(t)
mockAcker.EXPECT().Ack(mock.Anything, mock.Anything).RunAndReturn(func(ctx context.Context, a fleetapi.Action) error {
require.IsType(t, new(fleetapi.ActionDiagnostics), a)
assert.NoError(t, a.(*fleetapi.ActionDiagnostics).Err)
return nil
})
commitError := errors.New("commit went wrong")
mockAcker.EXPECT().Commit(mock.Anything).Return(commitError)
mockUploader.EXPECT().UploadDiagnostics(mock.Anything, mock.Anything, mock.Anything, mock.Anything, mock.Anything).Return("upload-id", nil)
diagAction := &fleetapi.ActionDiagnostics{}
handler.collectDiag(context.Background(), diagAction, mockAcker)
// assert that we logged an ERROR log that includes the error from acker and the action
assert.Len(t,
observedLogs.FilterLevelExact(zapcore.ErrorLevel).
FilterField(zapcore.Field{Key: "error.message", Type: zapcore.ErrorType, Interface: commitError}).
FilterField(zapcore.Field{Key: "action", Type: zapcore.StringerType, Interface: diagAction}).
All(),
1)
// we could assert the logs for the hooks, but those will be the same as the happy path, so for brevity we won't
}
func TestDiagnosticHandlerContexteExpiredErrorWithLogs(t *testing.T) {
tempAgentRoot := t.TempDir()
paths.SetTop(tempAgentRoot)
err := os.MkdirAll(path.Join(tempAgentRoot, "data"), 0755)
require.NoError(t, err)
mockDiagProvider := mockhandlers.NewDiagnosticsProvider(t)
mockUploader := mockhandlers.NewUploader(t)
testLogger, observedLogs := logger.NewTesting("diagnostic-handler-test")
handler := NewDiagnostics(testLogger, mockDiagProvider, defaultRateLimit, mockUploader)
mockDiagProvider.EXPECT().DiagnosticHooks().Return([]diagnostics.Hook{})
mockAcker := mockackers.NewAcker(t)
mockAcker.EXPECT().Ack(mock.Anything, mock.Anything).RunAndReturn(func(ctx context.Context, a fleetapi.Action) error {
require.IsType(t, new(fleetapi.ActionDiagnostics), a)
assert.ErrorIs(t, a.(*fleetapi.ActionDiagnostics).Err, context.Canceled)
return nil
})
mockAcker.EXPECT().Commit(mock.Anything).Return(nil)
diagAction := &fleetapi.ActionDiagnostics{}
ctx, cancel := context.WithCancel(context.Background())
cancel()
handler.collectDiag(ctx, diagAction, mockAcker)
// assert that we logged an ERROR log that includes the error from running the hooks with an expired context and the action
assert.Len(t,
observedLogs.FilterLevelExact(zapcore.ErrorLevel).
FilterField(zapcore.Field{Key: "error.message", Type: zapcore.ErrorType, Interface: context.Canceled}).
FilterField(zapcore.Field{Key: "action", Type: zapcore.StringerType, Interface: diagAction}).
All(),
1)
// we could assert the logs for the hooks, but those will be the same as the happy path, so for brevity we won't
}
func TestDiagnosticHandlerWithCPUProfile(t *testing.T) {
tempAgentRoot := t.TempDir()
paths.SetTop(tempAgentRoot)
err := os.MkdirAll(path.Join(tempAgentRoot, "data"), 0755)
require.NoError(t, err)
// make a flag to check if a CPU profile is collected.
cpuCalled := false
getCPUDiag = func(_ context.Context, _ time.Duration) ([]byte, error) {
cpuCalled = true
return []byte(`hello, world!`), nil
}
mockDiagProvider := mockhandlers.NewDiagnosticsProvider(t)
mockUploader := mockhandlers.NewUploader(t)
testLogger, _ := logger.NewTesting("diagnostic-handler-test")
handler := NewDiagnostics(testLogger, mockDiagProvider, defaultRateLimit, mockUploader)
mockDiagProvider.EXPECT().DiagnosticHooks().Return([]diagnostics.Hook{hook1})
mockDiagProvider.EXPECT().PerformDiagnostics(mock.Anything, mock.Anything).Return([]runtime.ComponentUnitDiagnostic{mockUnitDiagnostic})
// only match if CPU metrics are requested.
mockDiagProvider.EXPECT().PerformComponentDiagnostics(mock.Anything, mock.MatchedBy(func(additionalMetrics []cproto.AdditionalDiagnosticRequest) bool {
for _, metric := range additionalMetrics {
if metric == cproto.AdditionalDiagnosticRequest_CPU {
return true
}
}
return false
})).Return([]runtime.ComponentDiagnostic{}, nil)
mockAcker := mockackers.NewAcker(t)
mockAcker.EXPECT().Ack(mock.Anything, mock.Anything).RunAndReturn(func(ctx context.Context, a fleetapi.Action) error {
require.IsType(t, new(fleetapi.ActionDiagnostics), a)
assert.NoError(t, a.(*fleetapi.ActionDiagnostics).Err)
return nil
})
mockAcker.EXPECT().Commit(mock.Anything).Return(nil)
mockUploader.EXPECT().UploadDiagnostics(mock.Anything, mock.Anything, mock.Anything, mock.Anything, mock.Anything).Return("upload-id", nil)
diagAction := &fleetapi.ActionDiagnostics{
AdditionalMetrics: []string{"CPU"},
}
handler.collectDiag(context.Background(), diagAction, mockAcker)
// Check that CPU profile was collected and passed to PerformComponentDiagnostics
assert.True(t, cpuCalled, "CPU profile collector was not called.")
mockDiagProvider.AssertExpectations(t)
}