@@ -16,7 +16,7 @@ import (
16
16
"github.com/DataDog/datadog-agent/pkg/metrics/servicecheck"
17
17
"github.com/DataDog/datadog-agent/pkg/serializer/marshaler"
18
18
"github.com/DataDog/datadog-agent/pkg/serializer/types"
19
- "github.com/DataDog/datadog-agent/pkg/util /uuid"
19
+ googleuuid "github.com/google /uuid"
20
20
"github.com/stretchr/testify/assert"
21
21
"go.opentelemetry.io/collector/component"
22
22
"go.uber.org/zap"
@@ -85,9 +85,7 @@ func TestStartLocalConfigServer(t *testing.T) {
85
85
}
86
86
87
87
// Stop the server
88
- if e .httpServer != nil {
89
- e .httpServer .Close ()
90
- }
88
+ e .stopLocalConfigServer ()
91
89
})
92
90
}
93
91
}
@@ -482,6 +480,7 @@ func TestPrepareAndSendFleetAutomationPayloads(t *testing.T) {
482
480
} else {
483
481
assert .Nil (t , payload )
484
482
}
483
+ close (e .done )
485
484
})
486
485
}
487
486
}
@@ -522,12 +521,6 @@ func TestHandleMetadata(t *testing.T) {
522
521
}()
523
522
// Mock the UUID
524
523
mockUUID := "123e4567-e89b-12d3-a456-426614174000"
525
- uuidFunc = func () string {
526
- return mockUUID
527
- }
528
- defer func () {
529
- uuidFunc = uuid .GetUUID
530
- }()
531
524
532
525
tests := []struct {
533
526
name string
@@ -554,6 +547,7 @@ func TestHandleMetadata(t *testing.T) {
554
547
},
555
548
ticker : time .NewTicker (DefaultReporterPeriod ),
556
549
done : make (chan bool ),
550
+ uuid : googleuuid .MustParse (mockUUID ),
557
551
}, logs
558
552
},
559
553
expectedStatus : http .StatusOK ,
@@ -573,6 +567,7 @@ func TestHandleMetadata(t *testing.T) {
573
567
hostnameSource : "unset" ,
574
568
ticker : time .NewTicker (DefaultReporterPeriod ),
575
569
done : make (chan bool ),
570
+ uuid : googleuuid .MustParse (mockUUID ),
576
571
}, logs
577
572
},
578
573
expectedStatus : http .StatusOK ,
@@ -597,6 +592,7 @@ func TestHandleMetadata(t *testing.T) {
597
592
},
598
593
ticker : time .NewTicker (DefaultReporterPeriod ),
599
594
done : make (chan bool ),
595
+ uuid : googleuuid .MustParse (mockUUID ),
600
596
}, logs
601
597
},
602
598
expectedStatus : http .StatusInternalServerError ,
@@ -636,6 +632,7 @@ func TestHandleMetadata(t *testing.T) {
636
632
}
637
633
assert .True (t , found , "Expected log message not found: %s" , expectedLog )
638
634
}
635
+ close (e .done )
639
636
})
640
637
}
641
638
}
@@ -690,6 +687,12 @@ func TestMakeGetRequest(t *testing.T) {
690
687
691
688
// Call makeGetRequest
692
689
resp , err := makeGetRequest (tt .url )
690
+ defer func () {
691
+ if resp != nil {
692
+ _ , _ = resp .Body .Read (nil )
693
+ _ = resp .Body .Close ()
694
+ }
695
+ }()
693
696
// Verify the result
694
697
if tt .expectedError == "" {
695
698
assert .NoError (t , err )
0 commit comments