expiration_cache_fakes.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. Copyright 2014 The Kubernetes Authors.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package cache
  14. import (
  15. "k8s.io/apimachinery/pkg/util/clock"
  16. "k8s.io/apimachinery/pkg/util/sets"
  17. )
  18. type fakeThreadSafeMap struct {
  19. ThreadSafeStore
  20. deletedKeys chan<- string
  21. }
  22. func (c *fakeThreadSafeMap) Delete(key string) {
  23. if c.deletedKeys != nil {
  24. c.ThreadSafeStore.Delete(key)
  25. c.deletedKeys <- key
  26. }
  27. }
  28. type FakeExpirationPolicy struct {
  29. NeverExpire sets.String
  30. RetrieveKeyFunc KeyFunc
  31. }
  32. func (p *FakeExpirationPolicy) IsExpired(obj *timestampedEntry) bool {
  33. key, _ := p.RetrieveKeyFunc(obj)
  34. return !p.NeverExpire.Has(key)
  35. }
  36. func NewFakeExpirationStore(keyFunc KeyFunc, deletedKeys chan<- string, expirationPolicy ExpirationPolicy, cacheClock clock.Clock) Store {
  37. cacheStorage := NewThreadSafeStore(Indexers{}, Indices{})
  38. return &ExpirationCache{
  39. cacheStorage: &fakeThreadSafeMap{cacheStorage, deletedKeys},
  40. keyFunc: keyFunc,
  41. clock: cacheClock,
  42. expirationPolicy: expirationPolicy,
  43. }
  44. }