-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathannotations_test.go
47 lines (40 loc) · 1.1 KB
/
annotations_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
package annotations_test
import (
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
ydbannotations "github.com/ydb-platform/ydb-kubernetes-operator/internal/annotations"
)
func TestLabels(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Label suite")
}
var _ = Describe("Testing annotations", func() {
It("merges two sets of annotations", func() {
fstLabels := ydbannotations.Annotations{
"a": "a",
"b": "b",
}
sndLabels := ydbannotations.Annotations{
"c": "c",
"d": "d",
}
Expect(fstLabels.Merge(sndLabels)).To(BeEquivalentTo(map[string]string{
"a": "a",
"b": "b",
"c": "c",
"d": "d",
}))
})
It("sets correct defaults", func() {
Expect(ydbannotations.Common(map[string]string{
"ydb.tech/skip-initialization": "true",
"ydb.tech/node-host": "ydb-testing.k8s-c.yandex.net",
"ydb.tech/last-applied": "some-body",
"sample-annotation": "test",
})).To(BeEquivalentTo(map[string]string{
"ydb.tech/skip-initialization": "true",
"ydb.tech/node-host": "ydb-testing.k8s-c.yandex.net",
}))
})
})