generated from kyma-project/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathlogs_dedot_test.go
94 lines (78 loc) · 3.28 KB
/
logs_dedot_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
//go:build e2e
package e2e
import (
"net/http"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"k8s.io/apimachinery/pkg/types"
"sigs.k8s.io/controller-runtime/pkg/client"
"github.com/kyma-project/telemetry-manager/internal/testutils"
"github.com/kyma-project/telemetry-manager/test/testkit/assert"
kitk8s "github.com/kyma-project/telemetry-manager/test/testkit/k8s"
kitkyma "github.com/kyma-project/telemetry-manager/test/testkit/kyma"
. "github.com/kyma-project/telemetry-manager/test/testkit/matchers/log"
"github.com/kyma-project/telemetry-manager/test/testkit/mocks/backend"
"github.com/kyma-project/telemetry-manager/test/testkit/mocks/loggen"
"github.com/kyma-project/telemetry-manager/test/testkit/periodic"
"github.com/kyma-project/telemetry-manager/test/testkit/suite"
)
var _ = Describe(suite.ID(), Label(suite.LabelLogs), Ordered, func() {
var (
mockNs = suite.ID()
pipelineName = suite.ID()
backendExportURL string
)
makeResources := func() []client.Object {
var objs []client.Object
objs = append(objs, kitk8s.NewNamespace(mockNs).K8sObject())
backend := backend.New(mockNs, backend.SignalTypeLogs)
logProducer := loggen.New(mockNs).WithLabels(map[string]string{"dedot.label": "logging-dedot-value"})
objs = append(objs, backend.K8sObjects()...)
objs = append(objs, logProducer.K8sObject())
backendExportURL = backend.ExportURL(proxyClient)
logPipeline := testutils.NewLogPipelineBuilder().
WithName(pipelineName).
WithIncludeContainers(loggen.DefaultContainerName).
WithHTTPOutput(testutils.HTTPHost(backend.Host()), testutils.HTTPPort(backend.Port()), testutils.HTTPDedot(true)).
Build()
objs = append(objs, &logPipeline)
return objs
}
Context("Before deploying a logpipeline", func() {
It("Should have a healthy webhook", func() {
assert.WebhookHealthy(ctx, k8sClient)
})
})
Context("When a logpipeline that dedots labels exists", Ordered, func() {
BeforeAll(func() {
k8sObjects := makeResources()
DeferCleanup(func() {
Expect(kitk8s.DeleteObjects(ctx, k8sClient, k8sObjects...)).Should(Succeed())
})
Expect(kitk8s.CreateObjects(ctx, k8sClient, k8sObjects...)).Should(Succeed())
})
It("Should have a running logpipeline", func() {
assert.LogPipelineHealthy(ctx, k8sClient, pipelineName)
})
It("Should have running log agent", func() {
assert.DaemonSetReady(ctx, k8sClient, kitkyma.FluentBitDaemonSetName)
})
It("Should have a log backend running", func() {
assert.DeploymentReady(ctx, k8sClient, types.NamespacedName{Namespace: mockNs, Name: backend.DefaultName})
})
It("Should have a log producer running", func() {
assert.DeploymentReady(ctx, k8sClient, types.NamespacedName{Namespace: mockNs, Name: loggen.DefaultName})
})
// label foo.bar: value should be represented as foo_bar:value
It("Should have logs with dedotted labels in the backend", func() {
Eventually(func(g Gomega) {
resp, err := proxyClient.Get(backendExportURL)
g.Expect(err).NotTo(HaveOccurred())
g.Expect(resp).To(HaveHTTPStatus(http.StatusOK))
g.Expect(resp).To(HaveHTTPBody(
ContainLd(ContainLogRecord(WithKubernetesLabels(HaveKeyWithValue("dedot_label", "logging-dedot-value")))),
))
}, periodic.TelemetryEventuallyTimeout, periodic.TelemetryInterval).Should(Succeed())
})
})
})