Skip to content

Commit 34ae621

Browse files
committed
fix generated tests
1 parent 138d944 commit 34ae621

9 files changed

+56
-56
lines changed

extension/datadogfleetautomationextension/agent_components.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ func newLogComponent(set component.TelemetrySettings) corelog.Component {
3030
// The Forwarder sends the payloads to Datadog backend
3131
func newForwarder(cfg coreconfig.Component, log corelog.Component) defaultforwarder.Forwarder {
3232
keysPerDomain := map[string][]string{"https://api." + cfg.GetString("site"): {cfg.GetString("api_key")}}
33-
return defaultforwarder.NewDefaultForwarder(cfg, log, defaultforwarder.NewOptions(cfg, log, keysPerDomain))
33+
forwarderOptions := defaultforwarder.NewOptions(cfg, log, keysPerDomain)
34+
forwarderOptions.DisableAPIKeyChecking = true
35+
return defaultforwarder.NewDefaultForwarder(cfg, log, forwarderOptions)
3436
}
3537

3638
// create compressor with Gzip strategy, best compression

extension/datadogfleetautomationextension/fleetautomationextension.go

+8-9
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import (
1717
"github.com/DataDog/datadog-agent/pkg/util/compression"
1818
"github.com/DataDog/datadog-api-client-go/v2/api/datadog"
1919
"github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes/source"
20+
"github.com/google/uuid"
2021
"go.opentelemetry.io/collector/component"
2122
"go.opentelemetry.io/collector/confmap"
2223
"go.opentelemetry.io/collector/extension"
@@ -55,6 +56,7 @@ type fleetAutomationExtension struct {
5556
ticker *time.Ticker
5657
done chan bool
5758
mu sync.RWMutex
59+
uuid uuid.UUID
5860

5961
buildInfo component.BuildInfo
6062
moduleInfo service.ModuleInfos
@@ -171,14 +173,7 @@ func (e *fleetAutomationExtension) Start(_ context.Context, host component.Host)
171173
// It shuts down the HTTP server, stops forwarder, and passes signal on
172174
// channel to end goroutine that sends the Datadog fleet automation payloads.
173175
func (e *fleetAutomationExtension) Shutdown(ctx context.Context) error {
174-
if e.httpServer != nil {
175-
err := e.httpServer.Shutdown(ctx)
176-
if err != nil {
177-
e.telemetry.Logger.Error("Failed to shutdown local metadata server", zap.Error(err))
178-
}
179-
}
180-
e.done <- true
181-
defer close(e.done)
176+
e.stopLocalConfigServer()
182177
e.forwarder.Stop()
183178
e.telemetry.Logger.Info("Stopped Datadog Fleet Automation extension")
184179
return nil
@@ -285,7 +280,10 @@ func newExtension(
285280
}
286281
settings.Logger.Warn(err.Error())
287282
}
288-
283+
extUUID, err := uuid.NewRandom()
284+
if err != nil {
285+
return nil, err
286+
}
289287
telemetry := settings.TelemetrySettings
290288
// Get Hostname provider
291289
sp, err := sourceProviderGetter(telemetry, config.Hostname, 15*time.Second)
@@ -324,6 +322,7 @@ func newExtension(
324322
hostnameProvider: sp,
325323
hostnameSource: hostnameSource,
326324
hostname: hostname,
325+
uuid: extUUID,
327326
}, nil
328327
}
329328

extension/datadogfleetautomationextension/fleetautomationextension_test.go

+3-16
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ func Test_NotifyConfig(t *testing.T) {
159159
}
160160
faExt.componentChecker = mcc
161161
err = faExt.forwarder.Start()
162+
defer faExt.forwarder.Stop()
162163
assert.NoError(t, err)
163164

164165
err = faExt.NotifyConfig(ctx, conf)
@@ -586,24 +587,15 @@ func TestFleetAutomationExtension_Start(t *testing.T) {
586587
done: make(chan bool),
587588
}
588589

589-
// listen on ext.done to avoid panic
590-
go func() {
591-
<-ext.done
592-
}()
593-
594590
err := ext.Start(ctx, tt.host)
595591
if tt.expectedError != "" {
596592
assert.Error(t, err)
597593
assert.Contains(t, err.Error(), tt.expectedError)
598594
} else {
599595
assert.NoError(t, err)
600596
}
601-
if ext.httpServer != nil {
602-
err = ext.httpServer.Shutdown(ctx)
603-
assert.NoError(t, err)
604-
}
605-
ext.done <- true
606-
defer close(ext.done)
597+
err = ext.Shutdown(ctx)
598+
assert.NoError(t, err)
607599
})
608600
}
609601
}
@@ -654,11 +646,6 @@ func TestFleetAutomationExtension_Shutdown(t *testing.T) {
654646
ext.httpServer = tt.httpServer
655647
}
656648

657-
// listen on ext.done to avoid panic
658-
go func() {
659-
<-ext.done
660-
}()
661-
662649
err := ext.Shutdown(ctx)
663650
if tt.expectedError != "" {
664651
assert.Error(t, err)

extension/datadogfleetautomationextension/generated_package_test.go

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extension/datadogfleetautomationextension/go.mod

+1-4
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ require (
1313
github.com/DataDog/datadog-agent/pkg/metrics v0.64.0-rc.5
1414
github.com/DataDog/datadog-agent/pkg/serializer v0.64.0-rc.5
1515
github.com/DataDog/datadog-agent/pkg/util/compression v0.64.0-rc.5
16-
github.com/DataDog/datadog-agent/pkg/util/uuid v0.64.0-rc.5
1716
github.com/DataDog/datadog-api-client-go/v2 v2.35.0
1817
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.26.0
18+
github.com/google/uuid v1.6.0
1919
github.com/open-telemetry/opentelemetry-collector-contrib/internal/datadog v0.121.0
2020
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/datadog v0.121.0
2121
github.com/stretchr/testify v1.10.0
@@ -27,7 +27,6 @@ require (
2727
go.opentelemetry.io/collector/extension/extensioncapabilities v0.121.0
2828
go.opentelemetry.io/collector/extension/extensiontest v0.121.0
2929
go.opentelemetry.io/collector/service v0.121.0
30-
go.uber.org/goleak v1.3.0
3130
go.uber.org/zap v1.27.0
3231
)
3332

@@ -64,7 +63,6 @@ require (
6463
github.com/DataDog/datadog-agent/pkg/trace v0.64.0-rc.5 // indirect
6564
github.com/DataDog/datadog-agent/pkg/util/backoff v0.64.0-rc.5 // indirect
6665
github.com/DataDog/datadog-agent/pkg/util/buf v0.64.0-rc.5 // indirect
67-
github.com/DataDog/datadog-agent/pkg/util/cache v0.64.0-rc.5 // indirect
6866
github.com/DataDog/datadog-agent/pkg/util/common v0.64.0-rc.5 // indirect
6967
github.com/DataDog/datadog-agent/pkg/util/executable v0.64.0-rc.5 // indirect
7068
github.com/DataDog/datadog-agent/pkg/util/filesystem v0.64.0-rc.5 // indirect
@@ -134,7 +132,6 @@ require (
134132
github.com/google/gnostic-models v0.6.8 // indirect
135133
github.com/google/go-cmp v0.7.0 // indirect
136134
github.com/google/gofuzz v1.2.0 // indirect
137-
github.com/google/uuid v1.6.0 // indirect
138135
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.0 // indirect
139136
github.com/hashicorp/errwrap v1.1.0 // indirect
140137
github.com/hashicorp/go-multierror v1.1.1 // indirect

extension/datadogfleetautomationextension/go.sum

-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extension/datadogfleetautomationextension/http.go

+20-8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
package datadogfleetautomationextension // import "github.com/open-telemetry/opentelemetry-collector-contrib/extension/datadogfleetautomationextension"
55

66
import (
7+
"context"
78
"encoding/json"
89
"fmt"
910
"net"
@@ -13,7 +14,6 @@ import (
1314
"time"
1415

1516
"github.com/DataDog/datadog-agent/comp/forwarder/defaultforwarder"
16-
"github.com/DataDog/datadog-agent/pkg/util/uuid"
1717
"go.uber.org/zap"
1818
)
1919

@@ -22,10 +22,18 @@ const (
2222
defaultHealthCheckV2Endpoint = "localhost:13133"
2323
)
2424

25-
var (
26-
nowFunc = time.Now
27-
uuidFunc = uuid.GetUUID
28-
)
25+
var nowFunc = time.Now
26+
27+
func (e *fleetAutomationExtension) stopLocalConfigServer() {
28+
if e.httpServer != nil {
29+
if err := e.httpServer.Shutdown(context.Background()); err != nil {
30+
e.telemetry.Logger.Error("Failed to shutdown HTTP server", zap.Error(err))
31+
}
32+
}
33+
if e.done != nil {
34+
close(e.done)
35+
}
36+
}
2937

3038
func (e *fleetAutomationExtension) startLocalConfigServer() {
3139
// TODO: let user specify port in config? Or remove?
@@ -101,7 +109,11 @@ func (e *fleetAutomationExtension) getHealthCheckStatus() (map[string]any, error
101109
if err != nil {
102110
return nil, fmt.Errorf("failed to make request to health check endpoint: %w", err)
103111
}
104-
defer resp.Body.Close()
112+
defer func() {
113+
if resp.Body != nil {
114+
resp.Body.Close()
115+
}
116+
}()
105117

106118
// Parse the JSON response
107119
var result map[string]any
@@ -167,13 +179,13 @@ func (e *fleetAutomationExtension) prepareAndSendFleetAutomationPayloads() (*Com
167179
Hostname: e.hostname,
168180
Timestamp: nowFunc().UnixNano(),
169181
Metadata: e.agentMetadataPayload,
170-
UUID: uuidFunc(),
182+
UUID: e.uuid.String(),
171183
}
172184
p := otelAgentPayload{
173185
Hostname: e.hostname,
174186
Timestamp: nowFunc().UnixNano(),
175187
Metadata: e.otelMetadataPayload,
176-
UUID: uuidFunc(),
188+
UUID: e.uuid.String(),
177189
}
178190

179191
// Use datadog-agent serializer to send these payloads

extension/datadogfleetautomationextension/http_test.go

+13-10
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"github.com/DataDog/datadog-agent/pkg/metrics/servicecheck"
1717
"github.com/DataDog/datadog-agent/pkg/serializer/marshaler"
1818
"github.com/DataDog/datadog-agent/pkg/serializer/types"
19-
"github.com/DataDog/datadog-agent/pkg/util/uuid"
19+
googleuuid "github.com/google/uuid"
2020
"github.com/stretchr/testify/assert"
2121
"go.opentelemetry.io/collector/component"
2222
"go.uber.org/zap"
@@ -85,9 +85,7 @@ func TestStartLocalConfigServer(t *testing.T) {
8585
}
8686

8787
// Stop the server
88-
if e.httpServer != nil {
89-
e.httpServer.Close()
90-
}
88+
e.stopLocalConfigServer()
9189
})
9290
}
9391
}
@@ -482,6 +480,7 @@ func TestPrepareAndSendFleetAutomationPayloads(t *testing.T) {
482480
} else {
483481
assert.Nil(t, payload)
484482
}
483+
close(e.done)
485484
})
486485
}
487486
}
@@ -522,12 +521,6 @@ func TestHandleMetadata(t *testing.T) {
522521
}()
523522
// Mock the UUID
524523
mockUUID := "123e4567-e89b-12d3-a456-426614174000"
525-
uuidFunc = func() string {
526-
return mockUUID
527-
}
528-
defer func() {
529-
uuidFunc = uuid.GetUUID
530-
}()
531524

532525
tests := []struct {
533526
name string
@@ -554,6 +547,7 @@ func TestHandleMetadata(t *testing.T) {
554547
},
555548
ticker: time.NewTicker(DefaultReporterPeriod),
556549
done: make(chan bool),
550+
uuid: googleuuid.MustParse(mockUUID),
557551
}, logs
558552
},
559553
expectedStatus: http.StatusOK,
@@ -573,6 +567,7 @@ func TestHandleMetadata(t *testing.T) {
573567
hostnameSource: "unset",
574568
ticker: time.NewTicker(DefaultReporterPeriod),
575569
done: make(chan bool),
570+
uuid: googleuuid.MustParse(mockUUID),
576571
}, logs
577572
},
578573
expectedStatus: http.StatusOK,
@@ -597,6 +592,7 @@ func TestHandleMetadata(t *testing.T) {
597592
},
598593
ticker: time.NewTicker(DefaultReporterPeriod),
599594
done: make(chan bool),
595+
uuid: googleuuid.MustParse(mockUUID),
600596
}, logs
601597
},
602598
expectedStatus: http.StatusInternalServerError,
@@ -636,6 +632,7 @@ func TestHandleMetadata(t *testing.T) {
636632
}
637633
assert.True(t, found, "Expected log message not found: %s", expectedLog)
638634
}
635+
close(e.done)
639636
})
640637
}
641638
}
@@ -690,6 +687,12 @@ func TestMakeGetRequest(t *testing.T) {
690687

691688
// Call makeGetRequest
692689
resp, err := makeGetRequest(tt.url)
690+
defer func() {
691+
if resp != nil {
692+
_, _ = resp.Body.Read(nil)
693+
_ = resp.Body.Close()
694+
}
695+
}()
693696
// Verify the result
694697
if tt.expectedError == "" {
695698
assert.NoError(t, err)

extension/datadogfleetautomationextension/metadata.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ status:
44
class: extension
55
stability:
66
development: [extension]
7-
distributions: [core, contrib, k8s]
7+
distributions: []
88
codeowners:
99
active: [jackgopack4, dineshg13, mx-psi]
10+
11+
tests:
12+
goleak:
13+
skip: true

0 commit comments

Comments
 (0)