mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-03 19:54:00 +00:00
Bump up version of client-go to v0.30.5 Bump up version of controller-runtime to v0.18.5 Fixes #8274 Signed-off-by: Wenkai Yin(尹文开) <yinw@vmware.com>
184 lines
5.8 KiB
Go
184 lines
5.8 KiB
Go
/*
|
|
Copyright the Velero contributors.
|
|
|
|
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 kube
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/stretchr/testify/require"
|
|
"golang.org/x/net/context"
|
|
"k8s.io/apimachinery/pkg/api/meta"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/client-go/kubernetes/scheme"
|
|
"k8s.io/client-go/util/workqueue"
|
|
crclient "sigs.k8s.io/controller-runtime/pkg/client"
|
|
"sigs.k8s.io/controller-runtime/pkg/client/fake"
|
|
"sigs.k8s.io/controller-runtime/pkg/predicate"
|
|
"sigs.k8s.io/controller-runtime/pkg/reconcile"
|
|
|
|
"github.com/vmware-tanzu/velero/internal/storage"
|
|
velerov1 "github.com/vmware-tanzu/velero/pkg/apis/velero/v1"
|
|
)
|
|
|
|
func TestStart(t *testing.T) {
|
|
require.NoError(t, velerov1.AddToScheme(scheme.Scheme))
|
|
|
|
ctx, cancelFunc := context.WithCancel(context.TODO())
|
|
client := (&fake.ClientBuilder{}).Build()
|
|
queue := workqueue.NewRateLimitingQueue(workqueue.DefaultItemBasedRateLimiter())
|
|
source := NewPeriodicalEnqueueSource(logrus.WithContext(ctx).WithField("controller", "PES_TEST"), client, &velerov1.ScheduleList{}, 1*time.Second, PeriodicalEnqueueSourceOption{})
|
|
|
|
require.NoError(t, source.Start(ctx, queue))
|
|
|
|
// no resources
|
|
time.Sleep(1 * time.Second)
|
|
require.Equal(t, 0, queue.Len())
|
|
|
|
// contain one resource
|
|
require.NoError(t, client.Create(ctx, &velerov1.Schedule{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "schedule",
|
|
},
|
|
}))
|
|
time.Sleep(2 * time.Second)
|
|
require.Equal(t, 1, queue.Len())
|
|
|
|
// context canceled, the enqueue source shouldn't run anymore
|
|
item, _ := queue.Get()
|
|
queue.Forget(item)
|
|
require.Equal(t, 0, queue.Len())
|
|
cancelFunc()
|
|
time.Sleep(2 * time.Second)
|
|
require.Equal(t, 0, queue.Len())
|
|
}
|
|
|
|
func TestPredicate(t *testing.T) {
|
|
require.NoError(t, velerov1.AddToScheme(scheme.Scheme))
|
|
|
|
ctx, cancelFunc := context.WithCancel(context.TODO())
|
|
client := (&fake.ClientBuilder{}).Build()
|
|
queue := workqueue.NewRateLimitingQueue(workqueue.DefaultItemBasedRateLimiter())
|
|
|
|
pred := NewGenericEventPredicate(func(object crclient.Object) bool {
|
|
location := object.(*velerov1.BackupStorageLocation)
|
|
return storage.IsReadyToValidate(location.Spec.ValidationFrequency, location.Status.LastValidationTime, 1*time.Minute, logrus.WithContext(ctx).WithField("BackupStorageLocation", location.Name))
|
|
})
|
|
source := NewPeriodicalEnqueueSource(
|
|
logrus.WithContext(ctx).WithField("controller", "PES_TEST"),
|
|
client,
|
|
&velerov1.BackupStorageLocationList{},
|
|
1*time.Second,
|
|
PeriodicalEnqueueSourceOption{
|
|
Predicates: []predicate.Predicate{pred},
|
|
},
|
|
)
|
|
|
|
require.NoError(t, source.Start(ctx, queue))
|
|
|
|
// Should not patch a backup storage location object status phase
|
|
// if the location's validation frequency is specifically set to zero
|
|
require.NoError(t, client.Create(ctx, &velerov1.BackupStorageLocation{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "location1",
|
|
Namespace: "default",
|
|
},
|
|
Spec: velerov1.BackupStorageLocationSpec{
|
|
ValidationFrequency: &metav1.Duration{Duration: 0},
|
|
},
|
|
Status: velerov1.BackupStorageLocationStatus{
|
|
LastValidationTime: &metav1.Time{Time: time.Now()},
|
|
},
|
|
}))
|
|
time.Sleep(2 * time.Second)
|
|
|
|
require.Equal(t, 0, queue.Len())
|
|
|
|
cancelFunc()
|
|
}
|
|
|
|
func TestOrder(t *testing.T) {
|
|
require.NoError(t, velerov1.AddToScheme(scheme.Scheme))
|
|
|
|
ctx, cancelFunc := context.WithCancel(context.TODO())
|
|
client := (&fake.ClientBuilder{}).Build()
|
|
queue := workqueue.NewRateLimitingQueue(workqueue.DefaultItemBasedRateLimiter())
|
|
source := NewPeriodicalEnqueueSource(
|
|
logrus.WithContext(ctx).WithField("controller", "PES_TEST"),
|
|
client,
|
|
&velerov1.BackupStorageLocationList{},
|
|
1*time.Second,
|
|
PeriodicalEnqueueSourceOption{
|
|
OrderFunc: func(objList crclient.ObjectList) crclient.ObjectList {
|
|
locationList := &velerov1.BackupStorageLocationList{}
|
|
objArray := make([]runtime.Object, 0)
|
|
|
|
// Generate BSL array.
|
|
locations, _ := meta.ExtractList(objList)
|
|
// Move default BSL to tail of array.
|
|
objArray = append(objArray, locations[1])
|
|
objArray = append(objArray, locations[0])
|
|
|
|
meta.SetList(locationList, objArray)
|
|
|
|
return locationList
|
|
},
|
|
},
|
|
)
|
|
|
|
require.NoError(t, source.Start(ctx, queue))
|
|
|
|
// Should not patch a backup storage location object status phase
|
|
// if the location's validation frequency is specifically set to zero
|
|
require.NoError(t, client.Create(ctx, &velerov1.BackupStorageLocation{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "location1",
|
|
Namespace: "default",
|
|
},
|
|
Spec: velerov1.BackupStorageLocationSpec{
|
|
ValidationFrequency: &metav1.Duration{Duration: 0},
|
|
},
|
|
Status: velerov1.BackupStorageLocationStatus{
|
|
LastValidationTime: &metav1.Time{Time: time.Now()},
|
|
},
|
|
}))
|
|
require.NoError(t, client.Create(ctx, &velerov1.BackupStorageLocation{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "location2",
|
|
Namespace: "default",
|
|
},
|
|
Spec: velerov1.BackupStorageLocationSpec{
|
|
ValidationFrequency: &metav1.Duration{Duration: 0},
|
|
Default: true,
|
|
},
|
|
Status: velerov1.BackupStorageLocationStatus{
|
|
LastValidationTime: &metav1.Time{Time: time.Now()},
|
|
},
|
|
}))
|
|
time.Sleep(2 * time.Second)
|
|
|
|
first, _ := queue.Get()
|
|
bsl := &velerov1.BackupStorageLocation{}
|
|
require.Equal(t, "location2", first.(reconcile.Request).Name)
|
|
require.NoError(t, client.Get(ctx, first.(reconcile.Request).NamespacedName, bsl))
|
|
require.True(t, bsl.Spec.Default)
|
|
|
|
cancelFunc()
|
|
}
|