123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /*
- 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 store
- import (
- "fmt"
- "time"
- kubeletconfig "k8s.io/kubernetes/pkg/kubelet/apis/config"
- "k8s.io/kubernetes/pkg/kubelet/kubeletconfig/checkpoint"
- )
- // so far only implements Assigned(), LastKnownGood(), SetAssigned(), and SetLastKnownGood()
- type fakeStore struct {
- assigned checkpoint.RemoteConfigSource
- lastKnownGood checkpoint.RemoteConfigSource
- }
- var _ Store = (*fakeStore)(nil)
- // NewFakeStore constructs a fake Store
- func NewFakeStore() Store {
- return &fakeStore{}
- }
- func (s *fakeStore) Initialize() error {
- return fmt.Errorf("Initialize method not supported")
- }
- func (s *fakeStore) Exists(source checkpoint.RemoteConfigSource) (bool, error) {
- return false, fmt.Errorf("Exists method not supported")
- }
- func (s *fakeStore) Save(c checkpoint.Payload) error {
- return fmt.Errorf("Save method not supported")
- }
- func (s *fakeStore) Load(source checkpoint.RemoteConfigSource) (*kubeletconfig.KubeletConfiguration, error) {
- return nil, fmt.Errorf("Load method not supported")
- }
- func (s *fakeStore) AssignedModified() (time.Time, error) {
- return time.Time{}, fmt.Errorf("AssignedModified method not supported")
- }
- func (s *fakeStore) Assigned() (checkpoint.RemoteConfigSource, error) {
- return s.assigned, nil
- }
- func (s *fakeStore) LastKnownGood() (checkpoint.RemoteConfigSource, error) {
- return s.lastKnownGood, nil
- }
- func (s *fakeStore) SetAssigned(source checkpoint.RemoteConfigSource) error {
- s.assigned = source
- return nil
- }
- func (s *fakeStore) SetLastKnownGood(source checkpoint.RemoteConfigSource) error {
- s.lastKnownGood = source
- return nil
- }
- func (s *fakeStore) Reset() (bool, error) {
- return false, fmt.Errorf("Reset method not supported")
- }
|