123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /*
- 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 (
- "github.com/google/cadvisor/events"
- cadvisorapi "github.com/google/cadvisor/info/v1"
- cadvisorapiv2 "github.com/google/cadvisor/info/v2"
- "github.com/stretchr/testify/mock"
- "k8s.io/kubernetes/pkg/kubelet/cadvisor"
- )
- // Mock cadvisor.Interface implementation.
- type Mock struct {
- mock.Mock
- }
- var _ cadvisor.Interface = new(Mock)
- // Start is a mock implementation of Interface.Start.
- func (c *Mock) Start() error {
- args := c.Called()
- return args.Error(0)
- }
- // ContainerInfo is a mock implementation of Interface.ContainerInfo.
- func (c *Mock) ContainerInfo(name string, req *cadvisorapi.ContainerInfoRequest) (*cadvisorapi.ContainerInfo, error) {
- args := c.Called(name, req)
- return args.Get(0).(*cadvisorapi.ContainerInfo), args.Error(1)
- }
- // ContainerInfoV2 is a mock implementation of Interface.ContainerInfoV2.
- func (c *Mock) ContainerInfoV2(name string, options cadvisorapiv2.RequestOptions) (map[string]cadvisorapiv2.ContainerInfo, error) {
- args := c.Called(name, options)
- return args.Get(0).(map[string]cadvisorapiv2.ContainerInfo), args.Error(1)
- }
- // SubcontainerInfo is a mock implementation of Interface.SubcontainerInfo.
- func (c *Mock) SubcontainerInfo(name string, req *cadvisorapi.ContainerInfoRequest) (map[string]*cadvisorapi.ContainerInfo, error) {
- args := c.Called(name, req)
- return args.Get(0).(map[string]*cadvisorapi.ContainerInfo), args.Error(1)
- }
- // DockerContainer is a mock implementation of Interface.DockerContainer.
- func (c *Mock) DockerContainer(name string, req *cadvisorapi.ContainerInfoRequest) (cadvisorapi.ContainerInfo, error) {
- args := c.Called(name, req)
- return args.Get(0).(cadvisorapi.ContainerInfo), args.Error(1)
- }
- // MachineInfo is a mock implementation of Interface.MachineInfo.
- func (c *Mock) MachineInfo() (*cadvisorapi.MachineInfo, error) {
- args := c.Called()
- return args.Get(0).(*cadvisorapi.MachineInfo), args.Error(1)
- }
- // VersionInfo is a mock implementation of Interface.VersionInfo.
- func (c *Mock) VersionInfo() (*cadvisorapi.VersionInfo, error) {
- args := c.Called()
- return args.Get(0).(*cadvisorapi.VersionInfo), args.Error(1)
- }
- // ImagesFsInfo is a mock implementation of Interface.ImagesFsInfo.
- func (c *Mock) ImagesFsInfo() (cadvisorapiv2.FsInfo, error) {
- args := c.Called()
- return args.Get(0).(cadvisorapiv2.FsInfo), args.Error(1)
- }
- // RootFsInfo is a mock implementation of Interface.RootFsInfo.
- func (c *Mock) RootFsInfo() (cadvisorapiv2.FsInfo, error) {
- args := c.Called()
- return args.Get(0).(cadvisorapiv2.FsInfo), args.Error(1)
- }
- // WatchEvents is a mock implementation of Interface.WatchEvents.
- func (c *Mock) WatchEvents(request *events.Request) (*events.EventChannel, error) {
- args := c.Called()
- return args.Get(0).(*events.EventChannel), args.Error(1)
- }
- // GetDirFsInfo is a mock implementation of Interface.GetDirFsInfo.
- func (c *Mock) GetDirFsInfo(path string) (cadvisorapiv2.FsInfo, error) {
- args := c.Called(path)
- return args.Get(0).(cadvisorapiv2.FsInfo), args.Error(1)
- }
|