
TestWatchBasedManager was racing with the default namespace creation. To fix that flake and to ensure integration tests using a shared etcd don't accidentally overlap in the future, move the three main tests using the default namespace to separate namespaces, and have TestWatchBasedManager create that namespace before it runs. Make StartTestServer wait for default namespace creation, which will reduce other flakes until future changes completely remove use of default namespace. From a failed integration run: watch_manager_test.go:66: namespaces "default" not found watch_manager_test.go:66: namespaces "default" not found watch_manager_test.go:66: namespaces "default" not found
111 lines
3.3 KiB
Go
111 lines
3.3 KiB
Go
/*
|
|
Copyright 2019 The Kubernetes 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 kubelet
|
|
|
|
import (
|
|
"fmt"
|
|
"sync"
|
|
"testing"
|
|
"time"
|
|
|
|
v1 "k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
"k8s.io/apimachinery/pkg/util/wait"
|
|
"k8s.io/apimachinery/pkg/watch"
|
|
"k8s.io/client-go/kubernetes"
|
|
kubeapiservertesting "k8s.io/kubernetes/cmd/kube-apiserver/app/testing"
|
|
"k8s.io/kubernetes/pkg/kubelet/util/manager"
|
|
"k8s.io/kubernetes/test/integration/framework"
|
|
)
|
|
|
|
func TestWatchBasedManager(t *testing.T) {
|
|
testNamespace := "test-watch-based-manager"
|
|
server := kubeapiservertesting.StartTestServerOrDie(t, nil, nil, framework.SharedEtcd())
|
|
defer server.TearDownFn()
|
|
|
|
server.ClientConfig.QPS = 10000
|
|
client, err := kubernetes.NewForConfig(server.ClientConfig)
|
|
if err != nil {
|
|
t.Fatalf("unexpected error: %v", err)
|
|
}
|
|
if _, err := client.CoreV1().Namespaces().Create((&v1.Namespace{ObjectMeta: metav1.ObjectMeta{Name: testNamespace}})); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
listObj := func(namespace string, options metav1.ListOptions) (runtime.Object, error) {
|
|
return client.CoreV1().Secrets(namespace).List(options)
|
|
}
|
|
watchObj := func(namespace string, options metav1.ListOptions) (watch.Interface, error) {
|
|
return client.CoreV1().Secrets(namespace).Watch(options)
|
|
}
|
|
newObj := func() runtime.Object { return &v1.Secret{} }
|
|
store := manager.NewObjectCache(listObj, watchObj, newObj, schema.GroupResource{Group: "v1", Resource: "secrets"})
|
|
|
|
// create 1000 secrets in parallel
|
|
t.Log(time.Now(), "creating 1000 secrets")
|
|
wg := sync.WaitGroup{}
|
|
for i := 0; i < 10; i++ {
|
|
wg.Add(1)
|
|
go func(i int) {
|
|
defer wg.Done()
|
|
for j := 0; j < 100; j++ {
|
|
name := fmt.Sprintf("s%d", i*100+j)
|
|
if _, err := client.CoreV1().Secrets(testNamespace).Create(&v1.Secret{ObjectMeta: metav1.ObjectMeta{Name: name}}); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
fmt.Print(".")
|
|
}(i)
|
|
}
|
|
wg.Wait()
|
|
t.Log(time.Now(), "finished creating 1000 secrets")
|
|
|
|
// fetch all secrets
|
|
wg = sync.WaitGroup{}
|
|
for i := 0; i < 10; i++ {
|
|
wg.Add(1)
|
|
go func(i int) {
|
|
defer wg.Done()
|
|
for j := 0; j < 100; j++ {
|
|
name := fmt.Sprintf("s%d", i*100+j)
|
|
start := time.Now()
|
|
store.AddReference(testNamespace, name)
|
|
err := wait.PollImmediate(10*time.Millisecond, 10*time.Second, func() (bool, error) {
|
|
obj, err := store.Get(testNamespace, name)
|
|
if err != nil {
|
|
t.Logf("failed on %s, retrying: %v", name, err)
|
|
return false, nil
|
|
}
|
|
if obj.(*v1.Secret).Name != name {
|
|
return false, fmt.Errorf("wrong object: %v", obj.(*v1.Secret).Name)
|
|
}
|
|
return true, nil
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("failed on %s: %v", name, err)
|
|
}
|
|
if d := time.Since(start); d > time.Second {
|
|
t.Logf("%s took %v", name, d)
|
|
}
|
|
}
|
|
}(i)
|
|
}
|
|
wg.Wait()
|
|
}
|