123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- /*
- Copyright 2017 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 apimachinery
- import (
- "context"
- "fmt"
- "math/rand"
- "reflect"
- "time"
- "github.com/onsi/ginkgo"
- "github.com/onsi/gomega"
- v1 "k8s.io/api/core/v1"
- apierrors "k8s.io/apimachinery/pkg/api/errors"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/util/wait"
- "k8s.io/apiserver/pkg/features"
- "k8s.io/apiserver/pkg/storage/storagebackend"
- utilfeature "k8s.io/apiserver/pkg/util/feature"
- "k8s.io/client-go/util/workqueue"
- "k8s.io/kubernetes/test/e2e/framework"
- )
- func shouldCheckRemainingItem() bool {
- return utilfeature.DefaultFeatureGate.Enabled(features.RemainingItemCount)
- }
- const numberOfTotalResources = 400
- var _ = SIGDescribe("Servers with support for API chunking", func() {
- f := framework.NewDefaultFramework("chunking")
- ginkgo.BeforeEach(func() {
- ns := f.Namespace.Name
- c := f.ClientSet
- client := c.CoreV1().PodTemplates(ns)
- ginkgo.By("creating a large number of resources")
- workqueue.ParallelizeUntil(context.TODO(), 20, numberOfTotalResources, func(i int) {
- for tries := 3; tries >= 0; tries-- {
- _, err := client.Create(context.TODO(), &v1.PodTemplate{
- ObjectMeta: metav1.ObjectMeta{
- Name: fmt.Sprintf("template-%04d", i),
- },
- Template: v1.PodTemplateSpec{
- Spec: v1.PodSpec{
- Containers: []v1.Container{
- {Name: "test", Image: "test2"},
- },
- },
- },
- }, metav1.CreateOptions{})
- if err == nil {
- return
- }
- framework.Logf("Got an error creating template %d: %v", i, err)
- }
- framework.Failf("Unable to create template %d, exiting", i)
- })
- })
- ginkgo.It("should return chunks of results for list calls", func() {
- ns := f.Namespace.Name
- c := f.ClientSet
- client := c.CoreV1().PodTemplates(ns)
- ginkgo.By("retrieving those results in paged fashion several times")
- for i := 0; i < 3; i++ {
- opts := metav1.ListOptions{}
- found := 0
- var lastRV string
- for {
- opts.Limit = int64(rand.Int31n(numberOfTotalResources/10) + 1)
- list, err := client.List(context.TODO(), opts)
- framework.ExpectNoError(err, "failed to list pod templates in namespace: %s, given limit: %d", ns, opts.Limit)
- framework.Logf("Retrieved %d/%d results with rv %s and continue %s", len(list.Items), opts.Limit, list.ResourceVersion, list.Continue)
- gomega.Expect(len(list.Items)).To(gomega.BeNumerically("<=", opts.Limit))
- if len(lastRV) == 0 {
- lastRV = list.ResourceVersion
- }
- framework.ExpectEqual(list.ResourceVersion, lastRV)
- if shouldCheckRemainingItem() {
- if list.GetContinue() == "" {
- gomega.Expect(list.GetRemainingItemCount()).To(gomega.BeNil())
- } else {
- gomega.Expect(list.GetRemainingItemCount()).ToNot(gomega.BeNil())
- gomega.Expect(int(*list.GetRemainingItemCount()) + len(list.Items) + found).To(gomega.BeNumerically("==", numberOfTotalResources))
- }
- }
- for _, item := range list.Items {
- framework.ExpectEqual(item.Name, fmt.Sprintf("template-%04d", found))
- found++
- }
- if len(list.Continue) == 0 {
- break
- }
- opts.Continue = list.Continue
- }
- gomega.Expect(found).To(gomega.BeNumerically("==", numberOfTotalResources))
- }
- ginkgo.By("retrieving those results all at once")
- opts := metav1.ListOptions{Limit: numberOfTotalResources + 1}
- list, err := client.List(context.TODO(), opts)
- framework.ExpectNoError(err, "failed to list pod templates in namespace: %s, given limit: %d", ns, opts.Limit)
- gomega.Expect(list.Items).To(gomega.HaveLen(numberOfTotalResources))
- })
- ginkgo.It("should support continue listing from the last key if the original version has been compacted away, though the list is inconsistent [Slow]", func() {
- ns := f.Namespace.Name
- c := f.ClientSet
- client := c.CoreV1().PodTemplates(ns)
- ginkgo.By("retrieving the first page")
- oneTenth := int64(numberOfTotalResources / 10)
- opts := metav1.ListOptions{}
- opts.Limit = oneTenth
- list, err := client.List(context.TODO(), opts)
- framework.ExpectNoError(err, "failed to list pod templates in namespace: %s, given limit: %d", ns, opts.Limit)
- firstToken := list.Continue
- firstRV := list.ResourceVersion
- if shouldCheckRemainingItem() {
- if list.GetContinue() == "" {
- gomega.Expect(list.GetRemainingItemCount()).To(gomega.BeNil())
- } else {
- gomega.Expect(list.GetRemainingItemCount()).ToNot(gomega.BeNil())
- gomega.Expect(int(*list.GetRemainingItemCount()) + len(list.Items)).To(gomega.BeNumerically("==", numberOfTotalResources))
- }
- }
- framework.Logf("Retrieved %d/%d results with rv %s and continue %s", len(list.Items), opts.Limit, list.ResourceVersion, firstToken)
- ginkgo.By("retrieving the second page until the token expires")
- opts.Continue = firstToken
- var inconsistentToken string
- wait.Poll(20*time.Second, 2*storagebackend.DefaultCompactInterval, func() (bool, error) {
- _, err := client.List(context.TODO(), opts)
- if err == nil {
- framework.Logf("Token %s has not expired yet", firstToken)
- return false, nil
- }
- if err != nil && !apierrors.IsResourceExpired(err) {
- return false, err
- }
- framework.Logf("got error %s", err)
- status, ok := err.(apierrors.APIStatus)
- if !ok {
- return false, fmt.Errorf("expect error to implement the APIStatus interface, got %v", reflect.TypeOf(err))
- }
- inconsistentToken = status.Status().ListMeta.Continue
- if len(inconsistentToken) == 0 {
- return false, fmt.Errorf("expect non empty continue token")
- }
- framework.Logf("Retrieved inconsistent continue %s", inconsistentToken)
- return true, nil
- })
- ginkgo.By("retrieving the second page again with the token received with the error message")
- opts.Continue = inconsistentToken
- list, err = client.List(context.TODO(), opts)
- framework.ExpectNoError(err, "failed to list pod templates in namespace: %s, given inconsistent continue token %s and limit: %d", ns, opts.Continue, opts.Limit)
- framework.ExpectNotEqual(list.ResourceVersion, firstRV)
- gomega.Expect(len(list.Items)).To(gomega.BeNumerically("==", opts.Limit))
- found := int(oneTenth)
- if shouldCheckRemainingItem() {
- if list.GetContinue() == "" {
- gomega.Expect(list.GetRemainingItemCount()).To(gomega.BeNil())
- } else {
- gomega.Expect(list.GetRemainingItemCount()).ToNot(gomega.BeNil())
- gomega.Expect(int(*list.GetRemainingItemCount()) + len(list.Items) + found).To(gomega.BeNumerically("==", numberOfTotalResources))
- }
- }
- for _, item := range list.Items {
- framework.ExpectEqual(item.Name, fmt.Sprintf("template-%04d", found))
- found++
- }
- ginkgo.By("retrieving all remaining pages")
- opts.Continue = list.Continue
- lastRV := list.ResourceVersion
- for {
- list, err := client.List(context.TODO(), opts)
- framework.ExpectNoError(err, "failed to list pod templates in namespace: %s, given limit: %d", ns, opts.Limit)
- if shouldCheckRemainingItem() {
- if list.GetContinue() == "" {
- gomega.Expect(list.GetRemainingItemCount()).To(gomega.BeNil())
- } else {
- gomega.Expect(list.GetRemainingItemCount()).ToNot(gomega.BeNil())
- gomega.Expect(int(*list.GetRemainingItemCount()) + len(list.Items) + found).To(gomega.BeNumerically("==", numberOfTotalResources))
- }
- }
- framework.Logf("Retrieved %d/%d results with rv %s and continue %s", len(list.Items), opts.Limit, list.ResourceVersion, list.Continue)
- gomega.Expect(len(list.Items)).To(gomega.BeNumerically("<=", opts.Limit))
- framework.ExpectEqual(list.ResourceVersion, lastRV)
- for _, item := range list.Items {
- framework.ExpectEqual(item.Name, fmt.Sprintf("template-%04d", found))
- found++
- }
- if len(list.Continue) == 0 {
- break
- }
- opts.Continue = list.Continue
- }
- gomega.Expect(found).To(gomega.BeNumerically("==", numberOfTotalResources))
- })
- })
|