2018-04-09 09:33:26 -07:00
/ *
Copyright 2015 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 testing
import (
"fmt"
"sync"
"k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/api/meta"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
2018-07-03 00:37:22 -07:00
"k8s.io/apimachinery/pkg/util/json"
"k8s.io/apimachinery/pkg/util/strategicpatch"
2018-04-09 09:33:26 -07:00
"k8s.io/apimachinery/pkg/watch"
restclient "k8s.io/client-go/rest"
)
// ObjectTracker keeps track of objects. It is intended to be used to
// fake calls to a server by returning objects based on their kind,
// namespace and name.
type ObjectTracker interface {
// Add adds an object to the tracker. If object being added
// is a list, its items are added separately.
Add ( obj runtime . Object ) error
// Get retrieves the object by its kind, namespace and name.
2018-07-03 00:37:22 -07:00
Get ( gvr schema . GroupVersionResource , ns , name string ) ( runtime . Object , error )
2018-04-09 09:33:26 -07:00
// Create adds an object to the tracker in the specified namespace.
2018-07-03 00:37:22 -07:00
Create ( gvr schema . GroupVersionResource , obj runtime . Object , ns string ) error
2018-04-09 09:33:26 -07:00
// Update updates an existing object in the tracker in the specified namespace.
2018-07-03 00:37:22 -07:00
Update ( gvr schema . GroupVersionResource , obj runtime . Object , ns string ) error
2018-04-09 09:33:26 -07:00
// List retrieves all objects of a given kind in the given
// namespace. Only non-List kinds are accepted.
2018-07-03 00:37:22 -07:00
List ( gvr schema . GroupVersionResource , gvk schema . GroupVersionKind , ns string ) ( runtime . Object , error )
2018-04-09 09:33:26 -07:00
// Delete deletes an existing object from the tracker. If object
// didn't exist in the tracker prior to deletion, Delete returns
// no error.
2018-07-03 00:37:22 -07:00
Delete ( gvr schema . GroupVersionResource , ns , name string ) error
// Watch watches objects from the tracker. Watch returns a channel
// which will push added / modified / deleted object.
Watch ( gvr schema . GroupVersionResource , ns string ) ( watch . Interface , error )
2018-04-09 09:33:26 -07:00
}
// ObjectScheme abstracts the implementation of common operations on objects.
type ObjectScheme interface {
runtime . ObjectCreater
runtime . ObjectTyper
}
// ObjectReaction returns a ReactionFunc that applies core.Action to
// the given tracker.
2018-07-03 00:37:22 -07:00
func ObjectReaction ( tracker ObjectTracker ) ReactionFunc {
2018-04-09 09:33:26 -07:00
return func ( action Action ) ( bool , runtime . Object , error ) {
ns := action . GetNamespace ( )
gvr := action . GetResource ( )
// Here and below we need to switch on implementation types,
// not on interfaces, as some interfaces are identical
// (e.g. UpdateAction and CreateAction), so if we use them,
// updates and creates end up matching the same case branch.
switch action := action . ( type ) {
case ListActionImpl :
2018-07-03 00:37:22 -07:00
obj , err := tracker . List ( gvr , action . GetKind ( ) , ns )
2018-04-09 09:33:26 -07:00
return true , obj , err
case GetActionImpl :
2018-07-03 00:37:22 -07:00
obj , err := tracker . Get ( gvr , ns , action . GetName ( ) )
2018-04-09 09:33:26 -07:00
return true , obj , err
case CreateActionImpl :
objMeta , err := meta . Accessor ( action . GetObject ( ) )
if err != nil {
return true , nil , err
}
if action . GetSubresource ( ) == "" {
2018-07-03 00:37:22 -07:00
err = tracker . Create ( gvr , action . GetObject ( ) , ns )
2018-04-09 09:33:26 -07:00
} else {
// TODO: Currently we're handling subresource creation as an update
// on the enclosing resource. This works for some subresources but
// might not be generic enough.
2018-07-03 00:37:22 -07:00
err = tracker . Update ( gvr , action . GetObject ( ) , ns )
2018-04-09 09:33:26 -07:00
}
if err != nil {
return true , nil , err
}
2018-07-03 00:37:22 -07:00
obj , err := tracker . Get ( gvr , ns , objMeta . GetName ( ) )
2018-04-09 09:33:26 -07:00
return true , obj , err
case UpdateActionImpl :
objMeta , err := meta . Accessor ( action . GetObject ( ) )
if err != nil {
return true , nil , err
}
2018-07-03 00:37:22 -07:00
err = tracker . Update ( gvr , action . GetObject ( ) , ns )
2018-04-09 09:33:26 -07:00
if err != nil {
return true , nil , err
}
2018-07-03 00:37:22 -07:00
obj , err := tracker . Get ( gvr , ns , objMeta . GetName ( ) )
2018-04-09 09:33:26 -07:00
return true , obj , err
case DeleteActionImpl :
2018-07-03 00:37:22 -07:00
err := tracker . Delete ( gvr , ns , action . GetName ( ) )
2018-04-09 09:33:26 -07:00
if err != nil {
return true , nil , err
}
return true , nil , nil
2018-07-03 00:37:22 -07:00
case PatchActionImpl :
obj , err := tracker . Get ( gvr , ns , action . GetName ( ) )
if err != nil {
// object is not registered
return false , nil , err
}
old , err := json . Marshal ( obj )
if err != nil {
return true , nil , err
}
// Only supports strategic merge patch
// TODO: Add support for other Patch types
mergedByte , err := strategicpatch . StrategicMergePatch ( old , action . GetPatch ( ) , obj )
if err != nil {
return true , nil , err
}
if err = json . Unmarshal ( mergedByte , obj ) ; err != nil {
return true , nil , err
}
if err = tracker . Update ( gvr , obj , ns ) ; err != nil {
return true , nil , err
}
return true , obj , nil
2018-04-09 09:33:26 -07:00
default :
return false , nil , fmt . Errorf ( "no reaction implemented for %s" , action )
}
}
}
type tracker struct {
2018-07-03 00:37:22 -07:00
scheme ObjectScheme
decoder runtime . Decoder
lock sync . RWMutex
objects map [ schema . GroupVersionResource ] [ ] runtime . Object
// The value type of watchers is a map of which the key is either a namespace or
// all/non namespace aka "" and its value is list of fake watchers.
// Manipulations on resources will broadcast the notification events into the
// watchers' channel. Note that too many unhandled events (currently 100,
// see apimachinery/pkg/watch.DefaultChanSize) will cause a panic.
watchers map [ schema . GroupVersionResource ] map [ string ] [ ] * watch . RaceFreeFakeWatcher
2018-04-09 09:33:26 -07:00
}
var _ ObjectTracker = & tracker { }
// NewObjectTracker returns an ObjectTracker that can be used to keep track
// of objects for the fake clientset. Mostly useful for unit tests.
2018-07-03 00:37:22 -07:00
func NewObjectTracker ( scheme ObjectScheme , decoder runtime . Decoder ) ObjectTracker {
2018-04-09 09:33:26 -07:00
return & tracker {
scheme : scheme ,
decoder : decoder ,
2018-07-03 00:37:22 -07:00
objects : make ( map [ schema . GroupVersionResource ] [ ] runtime . Object ) ,
watchers : make ( map [ schema . GroupVersionResource ] map [ string ] [ ] * watch . RaceFreeFakeWatcher ) ,
2018-04-09 09:33:26 -07:00
}
}
2018-07-03 00:37:22 -07:00
func ( t * tracker ) List ( gvr schema . GroupVersionResource , gvk schema . GroupVersionKind , ns string ) ( runtime . Object , error ) {
2018-04-09 09:33:26 -07:00
// Heuristic for list kind: original kind + List suffix. Might
// not always be true but this tracker has a pretty limited
// understanding of the actual API model.
listGVK := gvk
listGVK . Kind = listGVK . Kind + "List"
2018-07-03 00:37:22 -07:00
// GVK does have the concept of "internal version". The scheme recognizes
// the runtime.APIVersionInternal, but not the empty string.
if listGVK . Version == "" {
listGVK . Version = runtime . APIVersionInternal
}
2018-04-09 09:33:26 -07:00
list , err := t . scheme . New ( listGVK )
if err != nil {
return nil , err
}
if ! meta . IsListType ( list ) {
return nil , fmt . Errorf ( "%q is not a list type" , listGVK . Kind )
}
t . lock . RLock ( )
defer t . lock . RUnlock ( )
2018-07-03 00:37:22 -07:00
objs , ok := t . objects [ gvr ]
2018-04-09 09:33:26 -07:00
if ! ok {
return list , nil
}
matchingObjs , err := filterByNamespaceAndName ( objs , ns , "" )
if err != nil {
return nil , err
}
if err := meta . SetList ( list , matchingObjs ) ; err != nil {
return nil , err
}
2018-07-03 00:37:22 -07:00
return list . DeepCopyObject ( ) , nil
2018-04-09 09:33:26 -07:00
}
2018-07-03 00:37:22 -07:00
func ( t * tracker ) Watch ( gvr schema . GroupVersionResource , ns string ) ( watch . Interface , error ) {
t . lock . Lock ( )
defer t . lock . Unlock ( )
fakewatcher := watch . NewRaceFreeFake ( )
if _ , exists := t . watchers [ gvr ] ; ! exists {
t . watchers [ gvr ] = make ( map [ string ] [ ] * watch . RaceFreeFakeWatcher )
2018-04-09 09:33:26 -07:00
}
2018-07-03 00:37:22 -07:00
t . watchers [ gvr ] [ ns ] = append ( t . watchers [ gvr ] [ ns ] , fakewatcher )
return fakewatcher , nil
}
2018-04-09 09:33:26 -07:00
2018-07-03 00:37:22 -07:00
func ( t * tracker ) Get ( gvr schema . GroupVersionResource , ns , name string ) ( runtime . Object , error ) {
errNotFound := errors . NewNotFound ( gvr . GroupResource ( ) , name )
2018-04-09 09:33:26 -07:00
t . lock . RLock ( )
defer t . lock . RUnlock ( )
2018-07-03 00:37:22 -07:00
objs , ok := t . objects [ gvr ]
2018-04-09 09:33:26 -07:00
if ! ok {
return nil , errNotFound
}
matchingObjs , err := filterByNamespaceAndName ( objs , ns , name )
if err != nil {
return nil , err
}
if len ( matchingObjs ) == 0 {
return nil , errNotFound
}
if len ( matchingObjs ) > 1 {
2018-07-03 00:37:22 -07:00
return nil , fmt . Errorf ( "more than one object matched gvr %s, ns: %q name: %q" , gvr , ns , name )
2018-04-09 09:33:26 -07:00
}
// Only one object should match in the tracker if it works
// correctly, as Add/Update methods enforce kind/namespace/name
// uniqueness.
2018-07-03 00:37:22 -07:00
obj := matchingObjs [ 0 ] . DeepCopyObject ( )
2018-04-09 09:33:26 -07:00
if status , ok := obj . ( * metav1 . Status ) ; ok {
if status . Status != metav1 . StatusSuccess {
return nil , & errors . StatusError { ErrStatus : * status }
}
}
return obj , nil
}
func ( t * tracker ) Add ( obj runtime . Object ) error {
if meta . IsListType ( obj ) {
return t . addList ( obj , false )
}
objMeta , err := meta . Accessor ( obj )
if err != nil {
return err
}
gvks , _ , err := t . scheme . ObjectKinds ( obj )
if err != nil {
return err
}
if len ( gvks ) == 0 {
return fmt . Errorf ( "no registered kinds for %v" , obj )
}
for _ , gvk := range gvks {
2018-07-03 00:37:22 -07:00
// NOTE: UnsafeGuessKindToResource is a heuristic and default match. The
// actual registration in apiserver can specify arbitrary route for a
// gvk. If a test uses such objects, it cannot preset the tracker with
// objects via Add(). Instead, it should trigger the Create() function
// of the tracker, where an arbitrary gvr can be specified.
gvr , _ := meta . UnsafeGuessKindToResource ( gvk )
// Resource doesn't have the concept of "__internal" version, just set it to "".
if gvr . Version == runtime . APIVersionInternal {
gvr . Version = ""
}
2018-04-09 09:33:26 -07:00
2018-07-03 00:37:22 -07:00
err := t . add ( gvr , obj , objMeta . GetNamespace ( ) , false )
2018-04-09 09:33:26 -07:00
if err != nil {
return err
}
2018-07-03 00:37:22 -07:00
}
return nil
}
2018-04-09 09:33:26 -07:00
2018-07-03 00:37:22 -07:00
func ( t * tracker ) Create ( gvr schema . GroupVersionResource , obj runtime . Object , ns string ) error {
return t . add ( gvr , obj , ns , false )
}
2018-04-09 09:33:26 -07:00
2018-07-03 00:37:22 -07:00
func ( t * tracker ) Update ( gvr schema . GroupVersionResource , obj runtime . Object , ns string ) error {
return t . add ( gvr , obj , ns , true )
}
2018-04-09 09:33:26 -07:00
2018-07-03 00:37:22 -07:00
func ( t * tracker ) getWatches ( gvr schema . GroupVersionResource , ns string ) [ ] * watch . RaceFreeFakeWatcher {
watches := [ ] * watch . RaceFreeFakeWatcher { }
if t . watchers [ gvr ] != nil {
if w := t . watchers [ gvr ] [ ns ] ; w != nil {
watches = append ( watches , w ... )
2018-04-09 09:33:26 -07:00
}
2018-07-03 00:37:22 -07:00
if w := t . watchers [ gvr ] [ "" ] ; w != nil {
watches = append ( watches , w ... )
2018-04-09 09:33:26 -07:00
}
2018-07-03 00:37:22 -07:00
}
return watches
}
func ( t * tracker ) add ( gvr schema . GroupVersionResource , obj runtime . Object , ns string , replaceExisting bool ) error {
t . lock . Lock ( )
defer t . lock . Unlock ( )
gr := gvr . GroupResource ( )
2018-04-09 09:33:26 -07:00
2018-07-03 00:37:22 -07:00
// To avoid the object from being accidentally modified by caller
// after it's been added to the tracker, we always store the deep
// copy.
obj = obj . DeepCopyObject ( )
newMeta , err := meta . Accessor ( obj )
if err != nil {
return err
}
// Propagate namespace to the new object if hasn't already been set.
if len ( newMeta . GetNamespace ( ) ) == 0 {
newMeta . SetNamespace ( ns )
}
if ns != newMeta . GetNamespace ( ) {
msg := fmt . Sprintf ( "request namespace does not match object namespace, request: %q object: %q" , ns , newMeta . GetNamespace ( ) )
return errors . NewBadRequest ( msg )
}
for i , existingObj := range t . objects [ gvr ] {
oldMeta , err := meta . Accessor ( existingObj )
if err != nil {
2018-04-09 09:33:26 -07:00
return err
}
2018-07-03 00:37:22 -07:00
if oldMeta . GetNamespace ( ) == newMeta . GetNamespace ( ) && oldMeta . GetName ( ) == newMeta . GetName ( ) {
if replaceExisting {
for _ , w := range t . getWatches ( gvr , ns ) {
w . Modify ( obj )
2018-04-09 09:33:26 -07:00
}
2018-07-03 00:37:22 -07:00
t . objects [ gvr ] [ i ] = obj
return nil
2018-04-09 09:33:26 -07:00
}
2018-07-03 00:37:22 -07:00
return errors . NewAlreadyExists ( gr , newMeta . GetName ( ) )
2018-04-09 09:33:26 -07:00
}
2018-07-03 00:37:22 -07:00
}
2018-04-09 09:33:26 -07:00
2018-07-03 00:37:22 -07:00
if replaceExisting {
// Tried to update but no matching object was found.
return errors . NewNotFound ( gr , newMeta . GetName ( ) )
}
t . objects [ gvr ] = append ( t . objects [ gvr ] , obj )
2018-04-09 09:33:26 -07:00
2018-07-03 00:37:22 -07:00
for _ , w := range t . getWatches ( gvr , ns ) {
w . Add ( obj )
2018-04-09 09:33:26 -07:00
}
return nil
}
func ( t * tracker ) addList ( obj runtime . Object , replaceExisting bool ) error {
list , err := meta . ExtractList ( obj )
if err != nil {
return err
}
errs := runtime . DecodeList ( list , t . decoder )
if len ( errs ) > 0 {
return errs [ 0 ]
}
for _ , obj := range list {
2018-07-03 00:37:22 -07:00
if err := t . Add ( obj ) ; err != nil {
2018-04-09 09:33:26 -07:00
return err
}
}
return nil
}
2018-07-03 00:37:22 -07:00
func ( t * tracker ) Delete ( gvr schema . GroupVersionResource , ns , name string ) error {
2018-04-09 09:33:26 -07:00
t . lock . Lock ( )
defer t . lock . Unlock ( )
found := false
2018-07-03 00:37:22 -07:00
for i , existingObj := range t . objects [ gvr ] {
2018-04-09 09:33:26 -07:00
objMeta , err := meta . Accessor ( existingObj )
if err != nil {
return err
}
if objMeta . GetNamespace ( ) == ns && objMeta . GetName ( ) == name {
2018-07-03 00:37:22 -07:00
obj := t . objects [ gvr ] [ i ]
t . objects [ gvr ] = append ( t . objects [ gvr ] [ : i ] , t . objects [ gvr ] [ i + 1 : ] ... )
for _ , w := range t . getWatches ( gvr , ns ) {
w . Delete ( obj )
}
2018-04-09 09:33:26 -07:00
found = true
break
}
}
if found {
return nil
}
2018-07-03 00:37:22 -07:00
return errors . NewNotFound ( gvr . GroupResource ( ) , name )
2018-04-09 09:33:26 -07:00
}
// filterByNamespaceAndName returns all objects in the collection that
// match provided namespace and name. Empty namespace matches
// non-namespaced objects.
func filterByNamespaceAndName ( objs [ ] runtime . Object , ns , name string ) ( [ ] runtime . Object , error ) {
var res [ ] runtime . Object
for _ , obj := range objs {
acc , err := meta . Accessor ( obj )
if err != nil {
return nil , err
}
if ns != "" && acc . GetNamespace ( ) != ns {
continue
}
if name != "" && acc . GetName ( ) != name {
continue
}
res = append ( res , obj )
}
return res , nil
}
func DefaultWatchReactor ( watchInterface watch . Interface , err error ) WatchReactionFunc {
return func ( action Action ) ( bool , watch . Interface , error ) {
return true , watchInterface , err
}
}
// SimpleReactor is a Reactor. Each reaction function is attached to a given verb,resource tuple. "*" in either field matches everything for that value.
// For instance, *,pods matches all verbs on pods. This allows for easier composition of reaction functions
type SimpleReactor struct {
Verb string
Resource string
Reaction ReactionFunc
}
func ( r * SimpleReactor ) Handles ( action Action ) bool {
verbCovers := r . Verb == "*" || r . Verb == action . GetVerb ( )
if ! verbCovers {
return false
}
resourceCovers := r . Resource == "*" || r . Resource == action . GetResource ( ) . Resource
if ! resourceCovers {
return false
}
return true
}
func ( r * SimpleReactor ) React ( action Action ) ( bool , runtime . Object , error ) {
return r . Reaction ( action )
}
// SimpleWatchReactor is a WatchReactor. Each reaction function is attached to a given resource. "*" matches everything for that value.
// For instance, *,pods matches all verbs on pods. This allows for easier composition of reaction functions
type SimpleWatchReactor struct {
Resource string
Reaction WatchReactionFunc
}
func ( r * SimpleWatchReactor ) Handles ( action Action ) bool {
resourceCovers := r . Resource == "*" || r . Resource == action . GetResource ( ) . Resource
if ! resourceCovers {
return false
}
return true
}
func ( r * SimpleWatchReactor ) React ( action Action ) ( bool , watch . Interface , error ) {
return r . Reaction ( action )
}
// SimpleProxyReactor is a ProxyReactor. Each reaction function is attached to a given resource. "*" matches everything for that value.
// For instance, *,pods matches all verbs on pods. This allows for easier composition of reaction functions.
type SimpleProxyReactor struct {
Resource string
Reaction ProxyReactionFunc
}
func ( r * SimpleProxyReactor ) Handles ( action Action ) bool {
resourceCovers := r . Resource == "*" || r . Resource == action . GetResource ( ) . Resource
if ! resourceCovers {
return false
}
return true
}
func ( r * SimpleProxyReactor ) React ( action Action ) ( bool , restclient . ResponseWrapper , error ) {
return r . Reaction ( action )
}