testing

package
v1.25.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 9, 2022 License: Apache-2.0 Imports: 8 Imported by: 2

Documentation

Overview

Package testing is a generated GoMock package.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type FakeMirrorClient

type FakeMirrorClient struct {
	// contains filtered or unexported fields
}

func NewFakeMirrorClient

func NewFakeMirrorClient() *FakeMirrorClient

func (*FakeMirrorClient) CreateMirrorPod

func (fmc *FakeMirrorClient) CreateMirrorPod(pod *v1.Pod) error

func (*FakeMirrorClient) DeleteMirrorPod

func (fmc *FakeMirrorClient) DeleteMirrorPod(podFullName string, _ *types.UID) (bool, error)

TODO (Robert Krawitz): Implement UID checking

func (*FakeMirrorClient) GetCounts

func (fmc *FakeMirrorClient) GetCounts(podFullName string) (int, int)

func (*FakeMirrorClient) GetPods

func (fmc *FakeMirrorClient) GetPods() []string

func (*FakeMirrorClient) HasPod

func (fmc *FakeMirrorClient) HasPod(podFullName string) bool

func (*FakeMirrorClient) NumOfPods

func (fmc *FakeMirrorClient) NumOfPods() int

type MockManager added in v1.8.0

type MockManager struct {
	// contains filtered or unexported fields
}

MockManager is a mock of Manager interface.

func NewMockManager added in v1.23.0

func NewMockManager(ctrl *gomock.Controller) *MockManager

NewMockManager creates a new mock instance.

func (*MockManager) AddPod added in v1.8.0

func (m *MockManager) AddPod(arg0 *v1.Pod)

AddPod mocks base method.

func (*MockManager) CreateMirrorPod added in v1.8.0

func (m *MockManager) CreateMirrorPod(arg0 *v1.Pod) error

CreateMirrorPod mocks base method.

func (*MockManager) DeleteMirrorPod added in v1.8.0

func (m *MockManager) DeleteMirrorPod(arg0 string, arg1 *types.UID) (bool, error)

DeleteMirrorPod mocks base method.

func (*MockManager) DeletePod added in v1.8.0

func (m *MockManager) DeletePod(arg0 *v1.Pod)

DeletePod mocks base method.

func (*MockManager) EXPECT added in v1.23.0

func (m *MockManager) EXPECT() *MockManagerMockRecorder

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockManager) GetMirrorPodByPod added in v1.8.0

func (m *MockManager) GetMirrorPodByPod(arg0 *v1.Pod) (*v1.Pod, bool)

GetMirrorPodByPod mocks base method.

func (*MockManager) GetOrphanedMirrorPodNames added in v1.18.16

func (m *MockManager) GetOrphanedMirrorPodNames() []string

GetOrphanedMirrorPodNames mocks base method.

func (*MockManager) GetPodByFullName added in v1.8.0

func (m *MockManager) GetPodByFullName(arg0 string) (*v1.Pod, bool)

GetPodByFullName mocks base method.

func (*MockManager) GetPodByMirrorPod added in v1.8.0

func (m *MockManager) GetPodByMirrorPod(arg0 *v1.Pod) (*v1.Pod, bool)

GetPodByMirrorPod mocks base method.

func (*MockManager) GetPodByName added in v1.8.0

func (m *MockManager) GetPodByName(arg0, arg1 string) (*v1.Pod, bool)

GetPodByName mocks base method.

func (*MockManager) GetPodByUID added in v1.8.0

func (m *MockManager) GetPodByUID(arg0 types.UID) (*v1.Pod, bool)

GetPodByUID mocks base method.

func (*MockManager) GetPods added in v1.8.0

func (m *MockManager) GetPods() []*v1.Pod

GetPods mocks base method.

func (*MockManager) GetPodsAndMirrorPods added in v1.8.0

func (m *MockManager) GetPodsAndMirrorPods() ([]*v1.Pod, []*v1.Pod)

GetPodsAndMirrorPods mocks base method.

func (*MockManager) GetUIDTranslations added in v1.8.0

GetUIDTranslations mocks base method.

func (*MockManager) IsMirrorPodOf added in v1.8.0

func (m *MockManager) IsMirrorPodOf(arg0, arg1 *v1.Pod) bool

IsMirrorPodOf mocks base method.

func (*MockManager) SetPods added in v1.8.0

func (m *MockManager) SetPods(arg0 []*v1.Pod)

SetPods mocks base method.

func (*MockManager) TranslatePodUID added in v1.8.0

func (m *MockManager) TranslatePodUID(arg0 types.UID) types0.ResolvedPodUID

TranslatePodUID mocks base method.

func (*MockManager) UpdatePod added in v1.8.0

func (m *MockManager) UpdatePod(arg0 *v1.Pod)

UpdatePod mocks base method.

type MockManagerMockRecorder added in v1.23.0

type MockManagerMockRecorder struct {
	// contains filtered or unexported fields
}

MockManagerMockRecorder is the mock recorder for MockManager.

func (*MockManagerMockRecorder) AddPod added in v1.23.0

func (mr *MockManagerMockRecorder) AddPod(arg0 interface{}) *gomock.Call

AddPod indicates an expected call of AddPod.

func (*MockManagerMockRecorder) CreateMirrorPod added in v1.23.0

func (mr *MockManagerMockRecorder) CreateMirrorPod(arg0 interface{}) *gomock.Call

CreateMirrorPod indicates an expected call of CreateMirrorPod.

func (*MockManagerMockRecorder) DeleteMirrorPod added in v1.23.0

func (mr *MockManagerMockRecorder) DeleteMirrorPod(arg0, arg1 interface{}) *gomock.Call

DeleteMirrorPod indicates an expected call of DeleteMirrorPod.

func (*MockManagerMockRecorder) DeletePod added in v1.23.0

func (mr *MockManagerMockRecorder) DeletePod(arg0 interface{}) *gomock.Call

DeletePod indicates an expected call of DeletePod.

func (*MockManagerMockRecorder) GetMirrorPodByPod added in v1.23.0

func (mr *MockManagerMockRecorder) GetMirrorPodByPod(arg0 interface{}) *gomock.Call

GetMirrorPodByPod indicates an expected call of GetMirrorPodByPod.

func (*MockManagerMockRecorder) GetOrphanedMirrorPodNames added in v1.23.0

func (mr *MockManagerMockRecorder) GetOrphanedMirrorPodNames() *gomock.Call

GetOrphanedMirrorPodNames indicates an expected call of GetOrphanedMirrorPodNames.

func (*MockManagerMockRecorder) GetPodByFullName added in v1.23.0

func (mr *MockManagerMockRecorder) GetPodByFullName(arg0 interface{}) *gomock.Call

GetPodByFullName indicates an expected call of GetPodByFullName.

func (*MockManagerMockRecorder) GetPodByMirrorPod added in v1.23.0

func (mr *MockManagerMockRecorder) GetPodByMirrorPod(arg0 interface{}) *gomock.Call

GetPodByMirrorPod indicates an expected call of GetPodByMirrorPod.

func (*MockManagerMockRecorder) GetPodByName added in v1.23.0

func (mr *MockManagerMockRecorder) GetPodByName(arg0, arg1 interface{}) *gomock.Call

GetPodByName indicates an expected call of GetPodByName.

func (*MockManagerMockRecorder) GetPodByUID added in v1.23.0

func (mr *MockManagerMockRecorder) GetPodByUID(arg0 interface{}) *gomock.Call

GetPodByUID indicates an expected call of GetPodByUID.

func (*MockManagerMockRecorder) GetPods added in v1.23.0

func (mr *MockManagerMockRecorder) GetPods() *gomock.Call

GetPods indicates an expected call of GetPods.

func (*MockManagerMockRecorder) GetPodsAndMirrorPods added in v1.23.0

func (mr *MockManagerMockRecorder) GetPodsAndMirrorPods() *gomock.Call

GetPodsAndMirrorPods indicates an expected call of GetPodsAndMirrorPods.

func (*MockManagerMockRecorder) GetUIDTranslations added in v1.23.0

func (mr *MockManagerMockRecorder) GetUIDTranslations() *gomock.Call

GetUIDTranslations indicates an expected call of GetUIDTranslations.

func (*MockManagerMockRecorder) IsMirrorPodOf added in v1.23.0

func (mr *MockManagerMockRecorder) IsMirrorPodOf(arg0, arg1 interface{}) *gomock.Call

IsMirrorPodOf indicates an expected call of IsMirrorPodOf.

func (*MockManagerMockRecorder) SetPods added in v1.23.0

func (mr *MockManagerMockRecorder) SetPods(arg0 interface{}) *gomock.Call

SetPods indicates an expected call of SetPods.

func (*MockManagerMockRecorder) TranslatePodUID added in v1.23.0

func (mr *MockManagerMockRecorder) TranslatePodUID(arg0 interface{}) *gomock.Call

TranslatePodUID indicates an expected call of TranslatePodUID.

func (*MockManagerMockRecorder) UpdatePod added in v1.23.0

func (mr *MockManagerMockRecorder) UpdatePod(arg0 interface{}) *gomock.Call

UpdatePod indicates an expected call of UpdatePod.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL