-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathterminalheartbeat_controller_test.go
170 lines (148 loc) · 5.51 KB
/
terminalheartbeat_controller_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
/*
SPDX-FileCopyrightText: 2021 SAP SE or an SAP affiliate company and Gardener contributors
SPDX-License-Identifier: Apache-2.0
*/
package controllers
import (
"time"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
corev1 "k8s.io/api/core/v1"
rbacv1 "k8s.io/api/rbac/v1"
kErros "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
"github.com/gardener/terminal-controller-manager/api/v1alpha1"
dashboardv1alpha1 "github.com/gardener/terminal-controller-manager/api/v1alpha1"
"github.com/gardener/terminal-controller-manager/test"
)
var _ = Describe("Terminal Heartbeat Controller", func() {
const (
HostServiceAccountName = "test-host-serviceaccount"
TargetServiceAccountName = "test-target-serviceaccount"
timeout = time.Second * 10
interval = time.Millisecond * 250
)
var (
suffix string
terminalName string
terminalNamespace string
hostNamespace string
targetNamespace string
terminalKey types.NamespacedName
hostServiceAccountKey types.NamespacedName
targetServiceAccountKey types.NamespacedName
terminal *dashboardv1alpha1.Terminal
terminalCreationError error
)
BeforeEach(func() {
cmConfig = test.DefaultConfiguration()
terminalReconciler.injectConfig(cmConfig)
terminalHeartbeatReconciler.injectConfig(cmConfig)
suffix = test.StringWithCharset(randomLength, charset)
terminalNamespace = "test-terminal-namespace-" + suffix
hostNamespace = "test-host-serviceaccount-namespace-" + suffix
targetNamespace = "test-target-serviceaccount-namespace-" + suffix
terminalName = "test-terminal-" + suffix
terminalKey = types.NamespacedName{Name: terminalName, Namespace: terminalNamespace}
hostServiceAccountKey = types.NamespacedName{Name: HostServiceAccountName, Namespace: hostNamespace}
targetServiceAccountKey = types.NamespacedName{Name: TargetServiceAccountName, Namespace: targetNamespace}
terminal = &dashboardv1alpha1.Terminal{
TypeMeta: metav1.TypeMeta{
APIVersion: "dashboard.gardener.cloud/v1alpha1",
Kind: "Terminal",
},
ObjectMeta: metav1.ObjectMeta{
Name: terminalKey.Name,
Namespace: terminalKey.Namespace,
},
Spec: dashboardv1alpha1.TerminalSpec{
Host: dashboardv1alpha1.HostCluster{
Credentials: dashboardv1alpha1.ClusterCredentials{
ServiceAccountRef: &corev1.ObjectReference{
Kind: rbacv1.ServiceAccountKind,
Name: hostServiceAccountKey.Name,
Namespace: hostServiceAccountKey.Namespace,
},
},
Namespace: &hostNamespace,
TemporaryNamespace: nil,
Pod: dashboardv1alpha1.Pod{
Container: &dashboardv1alpha1.Container{
Image: "foo",
},
},
},
Target: dashboardv1alpha1.TargetCluster{
Credentials: dashboardv1alpha1.ClusterCredentials{
ServiceAccountRef: &corev1.ObjectReference{
Kind: rbacv1.ServiceAccountKind,
Name: targetServiceAccountKey.Name,
Namespace: targetServiceAccountKey.Namespace,
},
},
Namespace: &targetNamespace,
TemporaryNamespace: nil,
KubeconfigContextNamespace: "default",
},
},
}
By("By creating namespaces")
namespaces := []string{terminalNamespace, hostNamespace, targetNamespace}
for _, namespace := range namespaces {
terminalNamespaceKey := types.NamespacedName{Name: namespace}
e.CreateObject(ctx, &corev1.Namespace{ObjectMeta: metav1.ObjectMeta{Name: namespace}}, terminalNamespaceKey, timeout, interval)
}
By("By creating host serviceaccount")
e.AddClusterAdminServiceAccount(ctx, HostServiceAccountName, hostNamespace, timeout, interval)
By("By creating target serviceaccount")
e.AddClusterAdminServiceAccount(ctx, TargetServiceAccountName, targetNamespace, timeout, interval)
})
JustBeforeEach(func() {
terminalCreationError = e.K8sClient.Create(ctx, terminal)
})
Context("terminal lifecycle", func() {
Context("expired lifetime", func() {
BeforeEach(func() {
configWithNewTTL := test.DefaultConfiguration()
configWithNewTTL.Controllers.TerminalHeartbeat.TimeToLive = v1alpha1.Duration{Duration: time.Duration(1) * time.Second}
terminalHeartbeatReconciler.injectConfig(configWithNewTTL)
})
It("Should delete terminal", func() {
Expect(terminalCreationError).Should(Not(HaveOccurred()))
Eventually(func() bool {
t := &dashboardv1alpha1.Terminal{}
err := e.K8sClient.Get(ctx, terminalKey, t)
if kErros.IsNotFound(err) {
return true
}
return t.DeletionTimestamp != nil
}, timeout, interval).Should(BeTrue())
})
})
Context("cleared heartbeat", func() {
It("Should delete terminal", func() {
Expect(terminalCreationError).To(Not(HaveOccurred()))
By("Expecting terminal to be created and clearing the last heartbeat time")
Eventually(func() error {
terminal = &dashboardv1alpha1.Terminal{}
err := e.K8sClient.Get(ctx, terminalKey, terminal)
if err != nil {
return err
}
terminal.ObjectMeta.Annotations[dashboardv1alpha1.TerminalLastHeartbeat] = ""
return e.K8sClient.Update(ctx, terminal)
}, timeout, interval).Should(Succeed())
By("Expecting terminal to be deleted")
Eventually(func() bool {
t := &dashboardv1alpha1.Terminal{}
err := e.K8sClient.Get(ctx, terminalKey, t)
if kErros.IsNotFound(err) {
return true
}
return t.DeletionTimestamp != nil
}, timeout, interval).Should(BeTrue())
})
})
})
})