2016-01-08 02:02:49 +00:00
|
|
|
/*
|
2016-06-03 00:25:58 +00:00
|
|
|
Copyright 2015 The Kubernetes Authors.
|
2016-01-08 02:02:49 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2016-02-25 23:40:44 +00:00
|
|
|
package testing
|
2016-01-08 02:02:49 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/mock"
|
|
|
|
"k8s.io/kubernetes/pkg/api"
|
2016-02-25 23:40:44 +00:00
|
|
|
. "k8s.io/kubernetes/pkg/kubelet/container"
|
2016-01-08 02:02:49 +00:00
|
|
|
"k8s.io/kubernetes/pkg/types"
|
2016-03-09 02:58:24 +00:00
|
|
|
"k8s.io/kubernetes/pkg/util/flowcontrol"
|
2016-04-18 16:54:44 +00:00
|
|
|
"k8s.io/kubernetes/pkg/util/term"
|
2016-01-08 02:02:49 +00:00
|
|
|
"k8s.io/kubernetes/pkg/volume"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Mock struct {
|
|
|
|
mock.Mock
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ Runtime = new(Mock)
|
|
|
|
|
|
|
|
func (r *Mock) Start() error {
|
|
|
|
args := r.Called()
|
|
|
|
return args.Error(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Mock) Type() string {
|
|
|
|
args := r.Called()
|
|
|
|
return args.Get(0).(string)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Mock) Version() (Version, error) {
|
|
|
|
args := r.Called()
|
|
|
|
return args.Get(0).(Version), args.Error(1)
|
|
|
|
}
|
|
|
|
|
2016-01-14 23:16:07 +00:00
|
|
|
func (r *Mock) APIVersion() (Version, error) {
|
|
|
|
args := r.Called()
|
|
|
|
return args.Get(0).(Version), args.Error(1)
|
|
|
|
}
|
|
|
|
|
2016-03-03 10:01:15 +00:00
|
|
|
func (r *Mock) Status() error {
|
|
|
|
args := r.Called()
|
|
|
|
return args.Error(0)
|
|
|
|
}
|
|
|
|
|
2016-01-08 02:02:49 +00:00
|
|
|
func (r *Mock) GetPods(all bool) ([]*Pod, error) {
|
|
|
|
args := r.Called(all)
|
|
|
|
return args.Get(0).([]*Pod), args.Error(1)
|
|
|
|
}
|
|
|
|
|
2016-03-09 02:58:24 +00:00
|
|
|
func (r *Mock) SyncPod(pod *api.Pod, apiStatus api.PodStatus, status *PodStatus, secrets []api.Secret, backOff *flowcontrol.Backoff) PodSyncResult {
|
2016-01-08 02:02:49 +00:00
|
|
|
args := r.Called(pod, apiStatus, status, secrets, backOff)
|
2016-01-12 10:19:13 +00:00
|
|
|
return args.Get(0).(PodSyncResult)
|
2016-01-08 02:02:49 +00:00
|
|
|
}
|
|
|
|
|
2016-04-27 03:30:59 +00:00
|
|
|
func (r *Mock) KillPod(pod *api.Pod, runningPod Pod, gracePeriodOverride *int64) error {
|
|
|
|
args := r.Called(pod, runningPod, gracePeriodOverride)
|
2016-01-08 02:02:49 +00:00
|
|
|
return args.Error(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Mock) RunContainerInPod(container api.Container, pod *api.Pod, volumeMap map[string]volume.VolumePlugin) error {
|
|
|
|
args := r.Called(pod, pod, volumeMap)
|
|
|
|
return args.Error(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Mock) KillContainerInPod(container api.Container, pod *api.Pod) error {
|
|
|
|
args := r.Called(pod, pod)
|
|
|
|
return args.Error(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Mock) GetPodStatus(uid types.UID, name, namespace string) (*PodStatus, error) {
|
|
|
|
args := r.Called(uid, name, namespace)
|
|
|
|
return args.Get(0).(*PodStatus), args.Error(1)
|
|
|
|
}
|
|
|
|
|
2016-04-18 16:54:44 +00:00
|
|
|
func (r *Mock) ExecInContainer(containerID ContainerID, cmd []string, stdin io.Reader, stdout, stderr io.WriteCloser, tty bool, resize <-chan term.Size) error {
|
2016-01-08 02:02:49 +00:00
|
|
|
args := r.Called(containerID, cmd, stdin, stdout, stderr, tty)
|
|
|
|
return args.Error(0)
|
|
|
|
}
|
|
|
|
|
2016-04-18 16:54:44 +00:00
|
|
|
func (r *Mock) AttachContainer(containerID ContainerID, stdin io.Reader, stdout, stderr io.WriteCloser, tty bool, resize <-chan term.Size) error {
|
2016-01-08 02:02:49 +00:00
|
|
|
args := r.Called(containerID, stdin, stdout, stderr, tty)
|
|
|
|
return args.Error(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Mock) GetContainerLogs(pod *api.Pod, containerID ContainerID, logOptions *api.PodLogOptions, stdout, stderr io.Writer) (err error) {
|
|
|
|
args := r.Called(pod, containerID, logOptions, stdout, stderr)
|
|
|
|
return args.Error(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Mock) PullImage(image ImageSpec, pullSecrets []api.Secret) error {
|
|
|
|
args := r.Called(image, pullSecrets)
|
|
|
|
return args.Error(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Mock) IsImagePresent(image ImageSpec) (bool, error) {
|
|
|
|
args := r.Called(image)
|
|
|
|
return args.Get(0).(bool), args.Error(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Mock) ListImages() ([]Image, error) {
|
|
|
|
args := r.Called()
|
|
|
|
return args.Get(0).([]Image), args.Error(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Mock) RemoveImage(image ImageSpec) error {
|
|
|
|
args := r.Called(image)
|
|
|
|
return args.Error(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Mock) PortForward(pod *Pod, port uint16, stream io.ReadWriteCloser) error {
|
|
|
|
args := r.Called(pod, port, stream)
|
|
|
|
return args.Error(0)
|
|
|
|
}
|
|
|
|
|
2016-05-03 00:49:02 +00:00
|
|
|
func (r *Mock) GetNetNS(containerID ContainerID) (string, error) {
|
|
|
|
args := r.Called(containerID)
|
|
|
|
return "", args.Error(0)
|
|
|
|
}
|
|
|
|
|
2016-06-22 14:44:33 +00:00
|
|
|
func (r *Mock) GetPodContainerID(pod *Pod) (ContainerID, error) {
|
|
|
|
args := r.Called(pod)
|
|
|
|
return ContainerID{}, args.Error(0)
|
|
|
|
}
|
|
|
|
|
2016-06-14 21:45:41 +00:00
|
|
|
func (r *Mock) GarbageCollect(gcPolicy ContainerGCPolicy, ready bool) error {
|
|
|
|
args := r.Called(gcPolicy, ready)
|
2016-01-08 02:02:49 +00:00
|
|
|
return args.Error(0)
|
|
|
|
}
|
2016-03-29 00:05:02 +00:00
|
|
|
|
2016-07-06 22:44:15 +00:00
|
|
|
func (r *Mock) DeleteContainer(containerID ContainerID) error {
|
|
|
|
args := r.Called(containerID)
|
|
|
|
return args.Error(0)
|
|
|
|
}
|
|
|
|
|
2016-03-29 00:05:02 +00:00
|
|
|
func (r *Mock) ImageStats() (*ImageStats, error) {
|
|
|
|
args := r.Called()
|
|
|
|
return args.Get(0).(*ImageStats), args.Error(1)
|
|
|
|
}
|
2016-10-29 00:14:33 +00:00
|
|
|
|
|
|
|
// UpdatePodCIDR fulfills the cri interface.
|
|
|
|
func (r *Mock) UpdatePodCIDR(c string) error {
|
|
|
|
return nil
|
|
|
|
}
|