forked from kubewharf/katalyst-core
156 lines
4.1 KiB
Go
156 lines
4.1 KiB
Go
/*
|
|
Copyright 2022 The Katalyst Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package lifecycle
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
corev1 "k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/client-go/tools/cache"
|
|
"k8s.io/utils/pointer"
|
|
|
|
nodeapis "github.com/kubewharf/katalyst-api/pkg/apis/node/v1alpha1"
|
|
katalyst_base "github.com/kubewharf/katalyst-core/cmd/base"
|
|
)
|
|
|
|
func TestCNRLifecycle_Run(t *testing.T) {
|
|
type fields struct {
|
|
node *corev1.Node
|
|
cnr *nodeapis.CustomNodeResource
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
fields fields
|
|
wantCNR *nodeapis.CustomNodeResource
|
|
}{
|
|
{
|
|
name: "test-create",
|
|
fields: fields{
|
|
node: &corev1.Node{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "node1",
|
|
Labels: map[string]string{
|
|
"test": "test",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantCNR: &nodeapis.CustomNodeResource{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "node1",
|
|
Labels: map[string]string{
|
|
"test": "test",
|
|
},
|
|
OwnerReferences: []metav1.OwnerReference{
|
|
{
|
|
APIVersion: "v1",
|
|
Kind: "Node",
|
|
Name: "node1",
|
|
UID: "",
|
|
Controller: pointer.Bool(true),
|
|
BlockOwnerDeletion: pointer.Bool(true),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "test-update",
|
|
fields: fields{
|
|
node: &corev1.Node{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "node1",
|
|
Labels: map[string]string{
|
|
"test": "test-1",
|
|
},
|
|
},
|
|
},
|
|
cnr: &nodeapis.CustomNodeResource{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "node1",
|
|
Labels: map[string]string{
|
|
"test": "test",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantCNR: &nodeapis.CustomNodeResource{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "node1",
|
|
Labels: map[string]string{
|
|
"test": "test-1",
|
|
},
|
|
OwnerReferences: []metav1.OwnerReference{
|
|
{
|
|
APIVersion: "v1",
|
|
Kind: "Node",
|
|
Name: "node1",
|
|
UID: "",
|
|
Controller: pointer.Bool(true),
|
|
BlockOwnerDeletion: pointer.Bool(true),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
genericCtx, err := katalyst_base.GenerateFakeGenericContext([]runtime.Object{tt.fields.node}, []runtime.Object{tt.fields.cnr})
|
|
assert.NoError(t, err)
|
|
|
|
conf := generateTestConfiguration(t)
|
|
|
|
cl, err := NewCNRLifecycle(context.Background(),
|
|
conf.GenericConfiguration,
|
|
conf.GenericControllerConfiguration,
|
|
conf.ControllersConfiguration.CNRLifecycleConfig,
|
|
genericCtx.Client,
|
|
genericCtx.KubeInformerFactory.Core().V1().Nodes(),
|
|
genericCtx.InternalInformerFactory.Node().V1alpha1().CustomNodeResources(),
|
|
genericCtx.EmitterPool.GetDefaultMetricsEmitter(),
|
|
)
|
|
assert.NoError(t, err)
|
|
|
|
genericCtx.KubeInformerFactory.Start(cl.ctx.Done())
|
|
genericCtx.InternalInformerFactory.Start(cl.ctx.Done())
|
|
go cl.Run()
|
|
|
|
cache.WaitForCacheSync(cl.ctx.Done(), cl.nodeListerSynced, cl.cnrListerSynced)
|
|
time.Sleep(1 * time.Second)
|
|
|
|
gotCNR, err := cl.cnrLister.Get(tt.fields.node.Name)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, tt.wantCNR, gotCNR)
|
|
|
|
// test recreate
|
|
err = cl.client.InternalClient.NodeV1alpha1().CustomNodeResources().Delete(context.Background(), tt.fields.node.Name, metav1.DeleteOptions{})
|
|
assert.NoError(t, err)
|
|
time.Sleep(1 * time.Second)
|
|
|
|
gotCNR, err = cl.cnrLister.Get(tt.fields.node.Name)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, tt.wantCNR, gotCNR)
|
|
})
|
|
}
|
|
}
|