123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- /*
- 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 scheduling
- import (
- "context"
- "fmt"
- "strings"
- "sync"
- "time"
- "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/fields"
- "k8s.io/apimachinery/pkg/runtime"
- "k8s.io/apimachinery/pkg/util/wait"
- "k8s.io/apimachinery/pkg/watch"
- clientset "k8s.io/client-go/kubernetes"
- "k8s.io/client-go/tools/cache"
- "k8s.io/kubernetes/test/e2e/framework"
- "github.com/onsi/ginkgo"
- )
- func scheduleSuccessEvent(ns, podName, nodeName string) func(*v1.Event) bool {
- return func(e *v1.Event) bool {
- return e.Type == v1.EventTypeNormal &&
- e.Reason == "Scheduled" &&
- strings.HasPrefix(e.Name, podName) &&
- strings.Contains(e.Message, fmt.Sprintf("Successfully assigned %v/%v to %v", ns, podName, nodeName))
- }
- }
- func scheduleFailureEvent(podName string) func(*v1.Event) bool {
- return func(e *v1.Event) bool {
- return strings.HasPrefix(e.Name, podName) &&
- e.Type == "Warning" &&
- e.Reason == "FailedScheduling"
- }
- }
- // Action is a function to be performed by the system.
- type Action func() error
- // observeNodeUpdateAfterAction returns true if a node update matching the predicate was emitted
- // from the system after performing the supplied action.
- func observeNodeUpdateAfterAction(c clientset.Interface, nodeName string, nodePredicate func(*v1.Node) bool, action Action) (bool, error) {
- observedMatchingNode := false
- nodeSelector := fields.OneTermEqualSelector("metadata.name", nodeName)
- informerStartedChan := make(chan struct{})
- var informerStartedGuard sync.Once
- _, controller := cache.NewInformer(
- &cache.ListWatch{
- ListFunc: func(options metav1.ListOptions) (runtime.Object, error) {
- options.FieldSelector = nodeSelector.String()
- ls, err := c.CoreV1().Nodes().List(context.TODO(), options)
- return ls, err
- },
- WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) {
- // Signal parent goroutine that watching has begun.
- defer informerStartedGuard.Do(func() { close(informerStartedChan) })
- options.FieldSelector = nodeSelector.String()
- w, err := c.CoreV1().Nodes().Watch(context.TODO(), options)
- return w, err
- },
- },
- &v1.Node{},
- 0,
- cache.ResourceEventHandlerFuncs{
- UpdateFunc: func(oldObj, newObj interface{}) {
- n, ok := newObj.(*v1.Node)
- framework.ExpectEqual(ok, true)
- if nodePredicate(n) {
- observedMatchingNode = true
- }
- },
- },
- )
- // Start the informer and block this goroutine waiting for the started signal.
- informerStopChan := make(chan struct{})
- defer func() { close(informerStopChan) }()
- go controller.Run(informerStopChan)
- <-informerStartedChan
- // Invoke the action function.
- err := action()
- if err != nil {
- return false, err
- }
- // Poll whether the informer has found a matching node update with a timeout.
- // Wait up 2 minutes polling every second.
- timeout := 2 * time.Minute
- interval := 1 * time.Second
- err = wait.Poll(interval, timeout, func() (bool, error) {
- return observedMatchingNode, nil
- })
- return err == nil, err
- }
- // observeEventAfterAction returns true if an event matching the predicate was emitted
- // from the system after performing the supplied action.
- func observeEventAfterAction(c clientset.Interface, ns string, eventPredicate func(*v1.Event) bool, action Action) (bool, error) {
- observedMatchingEvent := false
- informerStartedChan := make(chan struct{})
- var informerStartedGuard sync.Once
- // Create an informer to list/watch events from the test framework namespace.
- _, controller := cache.NewInformer(
- &cache.ListWatch{
- ListFunc: func(options metav1.ListOptions) (runtime.Object, error) {
- ls, err := c.CoreV1().Events(ns).List(context.TODO(), options)
- return ls, err
- },
- WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) {
- // Signal parent goroutine that watching has begun.
- defer informerStartedGuard.Do(func() { close(informerStartedChan) })
- w, err := c.CoreV1().Events(ns).Watch(context.TODO(), options)
- return w, err
- },
- },
- &v1.Event{},
- 0,
- cache.ResourceEventHandlerFuncs{
- AddFunc: func(obj interface{}) {
- e, ok := obj.(*v1.Event)
- ginkgo.By(fmt.Sprintf("Considering event: \nType = [%s], Name = [%s], Reason = [%s], Message = [%s]", e.Type, e.Name, e.Reason, e.Message))
- framework.ExpectEqual(ok, true)
- if eventPredicate(e) {
- observedMatchingEvent = true
- }
- },
- },
- )
- // Start the informer and block this goroutine waiting for the started signal.
- informerStopChan := make(chan struct{})
- defer func() { close(informerStopChan) }()
- go controller.Run(informerStopChan)
- <-informerStartedChan
- // Invoke the action function.
- err := action()
- if err != nil {
- return false, err
- }
- // Poll whether the informer has found a matching event with a timeout.
- // Wait up 2 minutes polling every second.
- timeout := 2 * time.Minute
- interval := 1 * time.Second
- err = wait.Poll(interval, timeout, func() (bool, error) {
- return observedMatchingEvent, nil
- })
- return err == nil, err
- }
|