moduledependency

package
v1.76.13 Latest Latest
Warning

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

Go to latest
Published: Sep 8, 2026 License: Apache-2.0 Imports: 16 Imported by: 0

Documentation

Index

Constants

View Source
const (
	Name extenders.ExtenderName = "ModuleDependency"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Extender

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

func Instance

func Instance() *Extender

func (*Extender) AddConstraint

func (e *Extender) AddConstraint(name string, value map[string]string) error

func (*Extender) CheckEnabling added in v1.73.0

func (e *Extender) CheckEnabling(moduleName string) error

func (*Extender) DeleteConstraint

func (e *Extender) DeleteConstraint(name string)

func (*Extender) Filter

func (e *Extender) Filter(moduleName string, _ map[string]string) (*bool, error)

Filter implements Extender interface, it is used by scheduler in addon-operator

func (*Extender) GetTopologicalHints

func (e *Extender) GetTopologicalHints(moduleName string) []extenders.Hint

GetTopologicalHints implements TopologicalExtender interface of the addon-operator

func (*Extender) IsTerminator

func (e *Extender) IsTerminator() bool

IsTerminator implements Extender interface, it is used by scheduler in addon-operator

func (*Extender) Name

func (e *Extender) Name() extenders.ExtenderName

Name implements Extender interface, it is used by scheduler in addon-operator

func (*Extender) SetModulesStateHelper

func (e *Extender) SetModulesStateHelper(f func() []string)

SetModulesStateHelper implements StatefulExtender interface of the addon-operator

func (*Extender) SetModulesVersionHelper

func (e *Extender) SetModulesVersionHelper(f func(moduleName string) (string, error))

func (*Extender) ValidateRelease

func (e *Extender) ValidateRelease(moduleName, moduleRelease string, version *semver.Version, value map[string]string) error

type IExtender added in v1.76.1

type IExtender interface {
	extenders.Extender
	extenders.TopologicalExtender
	extenders.StatefulExtender

	SetModulesVersionHelper(f func(moduleName string) (string, error))
	AddConstraint(name string, value map[string]string) error
	DeleteConstraint(name string)
	ValidateRelease(moduleName, moduleRelease string, version *semver.Version, value map[string]string) error
	CheckEnabling(moduleName string) error
}

type IExtenderMock added in v1.76.1

type IExtenderMock struct {
	AddConstraintMock mIExtenderMockAddConstraint

	CheckEnablingMock mIExtenderMockCheckEnabling

	DeleteConstraintMock mIExtenderMockDeleteConstraint

	FilterMock mIExtenderMockFilter

	GetTopologicalHintsMock mIExtenderMockGetTopologicalHints

	IsTerminatorMock mIExtenderMockIsTerminator

	NameMock mIExtenderMockName

	SetModulesStateHelperMock mIExtenderMockSetModulesStateHelper

	SetModulesVersionHelperMock mIExtenderMockSetModulesVersionHelper

	ValidateReleaseMock mIExtenderMockValidateRelease
	// contains filtered or unexported fields
}

IExtenderMock implements IExtender

func NewIExtenderMock added in v1.76.1

func NewIExtenderMock(t minimock.Tester) *IExtenderMock

NewIExtenderMock returns a mock for IExtender

func (*IExtenderMock) AddConstraint added in v1.76.1

func (mmAddConstraint *IExtenderMock) AddConstraint(name string, value map[string]string) (err error)

AddConstraint implements IExtender

func (*IExtenderMock) AddConstraintAfterCounter added in v1.76.1

func (mmAddConstraint *IExtenderMock) AddConstraintAfterCounter() uint64

AddConstraintAfterCounter returns a count of finished IExtenderMock.AddConstraint invocations

func (*IExtenderMock) AddConstraintBeforeCounter added in v1.76.1

func (mmAddConstraint *IExtenderMock) AddConstraintBeforeCounter() uint64

AddConstraintBeforeCounter returns a count of IExtenderMock.AddConstraint invocations

func (*IExtenderMock) CheckEnabling added in v1.76.1

func (mmCheckEnabling *IExtenderMock) CheckEnabling(moduleName string) (err error)

CheckEnabling implements IExtender

func (*IExtenderMock) CheckEnablingAfterCounter added in v1.76.1

func (mmCheckEnabling *IExtenderMock) CheckEnablingAfterCounter() uint64

CheckEnablingAfterCounter returns a count of finished IExtenderMock.CheckEnabling invocations

func (*IExtenderMock) CheckEnablingBeforeCounter added in v1.76.1

func (mmCheckEnabling *IExtenderMock) CheckEnablingBeforeCounter() uint64

CheckEnablingBeforeCounter returns a count of IExtenderMock.CheckEnabling invocations

func (*IExtenderMock) DeleteConstraint added in v1.76.1

func (mmDeleteConstraint *IExtenderMock) DeleteConstraint(name string)

DeleteConstraint implements IExtender

func (*IExtenderMock) DeleteConstraintAfterCounter added in v1.76.1

func (mmDeleteConstraint *IExtenderMock) DeleteConstraintAfterCounter() uint64

DeleteConstraintAfterCounter returns a count of finished IExtenderMock.DeleteConstraint invocations

func (*IExtenderMock) DeleteConstraintBeforeCounter added in v1.76.1

func (mmDeleteConstraint *IExtenderMock) DeleteConstraintBeforeCounter() uint64

DeleteConstraintBeforeCounter returns a count of IExtenderMock.DeleteConstraint invocations

func (*IExtenderMock) Filter added in v1.76.1

func (mmFilter *IExtenderMock) Filter(moduleName string, logLabels map[string]string) (bp1 *bool, err error)

Filter implements IExtender

func (*IExtenderMock) FilterAfterCounter added in v1.76.1

func (mmFilter *IExtenderMock) FilterAfterCounter() uint64

FilterAfterCounter returns a count of finished IExtenderMock.Filter invocations

func (*IExtenderMock) FilterBeforeCounter added in v1.76.1

func (mmFilter *IExtenderMock) FilterBeforeCounter() uint64

FilterBeforeCounter returns a count of IExtenderMock.Filter invocations

func (*IExtenderMock) GetTopologicalHints added in v1.76.1

func (mmGetTopologicalHints *IExtenderMock) GetTopologicalHints(s1 string) (ha1 []extenders.Hint)

GetTopologicalHints implements IExtender

func (*IExtenderMock) GetTopologicalHintsAfterCounter added in v1.76.1

func (mmGetTopologicalHints *IExtenderMock) GetTopologicalHintsAfterCounter() uint64

GetTopologicalHintsAfterCounter returns a count of finished IExtenderMock.GetTopologicalHints invocations

func (*IExtenderMock) GetTopologicalHintsBeforeCounter added in v1.76.1

func (mmGetTopologicalHints *IExtenderMock) GetTopologicalHintsBeforeCounter() uint64

GetTopologicalHintsBeforeCounter returns a count of IExtenderMock.GetTopologicalHints invocations

func (*IExtenderMock) IsTerminator added in v1.76.1

func (mmIsTerminator *IExtenderMock) IsTerminator() (b1 bool)

IsTerminator implements IExtender

func (*IExtenderMock) IsTerminatorAfterCounter added in v1.76.1

func (mmIsTerminator *IExtenderMock) IsTerminatorAfterCounter() uint64

IsTerminatorAfterCounter returns a count of finished IExtenderMock.IsTerminator invocations

func (*IExtenderMock) IsTerminatorBeforeCounter added in v1.76.1

func (mmIsTerminator *IExtenderMock) IsTerminatorBeforeCounter() uint64

IsTerminatorBeforeCounter returns a count of IExtenderMock.IsTerminator invocations

func (*IExtenderMock) MinimockAddConstraintDone added in v1.76.1

func (m *IExtenderMock) MinimockAddConstraintDone() bool

MinimockAddConstraintDone returns true if the count of the AddConstraint invocations corresponds the number of defined expectations

func (*IExtenderMock) MinimockAddConstraintInspect added in v1.76.1

func (m *IExtenderMock) MinimockAddConstraintInspect()

MinimockAddConstraintInspect logs each unmet expectation

func (*IExtenderMock) MinimockCheckEnablingDone added in v1.76.1

func (m *IExtenderMock) MinimockCheckEnablingDone() bool

MinimockCheckEnablingDone returns true if the count of the CheckEnabling invocations corresponds the number of defined expectations

func (*IExtenderMock) MinimockCheckEnablingInspect added in v1.76.1

func (m *IExtenderMock) MinimockCheckEnablingInspect()

MinimockCheckEnablingInspect logs each unmet expectation

func (*IExtenderMock) MinimockDeleteConstraintDone added in v1.76.1

func (m *IExtenderMock) MinimockDeleteConstraintDone() bool

MinimockDeleteConstraintDone returns true if the count of the DeleteConstraint invocations corresponds the number of defined expectations

func (*IExtenderMock) MinimockDeleteConstraintInspect added in v1.76.1

func (m *IExtenderMock) MinimockDeleteConstraintInspect()

MinimockDeleteConstraintInspect logs each unmet expectation

func (*IExtenderMock) MinimockFilterDone added in v1.76.1

func (m *IExtenderMock) MinimockFilterDone() bool

MinimockFilterDone returns true if the count of the Filter invocations corresponds the number of defined expectations

func (*IExtenderMock) MinimockFilterInspect added in v1.76.1

func (m *IExtenderMock) MinimockFilterInspect()

MinimockFilterInspect logs each unmet expectation

func (*IExtenderMock) MinimockFinish added in v1.76.1

func (m *IExtenderMock) MinimockFinish()

MinimockFinish checks that all mocked methods have been called the expected number of times

func (*IExtenderMock) MinimockGetTopologicalHintsDone added in v1.76.1

func (m *IExtenderMock) MinimockGetTopologicalHintsDone() bool

MinimockGetTopologicalHintsDone returns true if the count of the GetTopologicalHints invocations corresponds the number of defined expectations

func (*IExtenderMock) MinimockGetTopologicalHintsInspect added in v1.76.1

func (m *IExtenderMock) MinimockGetTopologicalHintsInspect()

MinimockGetTopologicalHintsInspect logs each unmet expectation

func (*IExtenderMock) MinimockIsTerminatorDone added in v1.76.1

func (m *IExtenderMock) MinimockIsTerminatorDone() bool

MinimockIsTerminatorDone returns true if the count of the IsTerminator invocations corresponds the number of defined expectations

func (*IExtenderMock) MinimockIsTerminatorInspect added in v1.76.1

func (m *IExtenderMock) MinimockIsTerminatorInspect()

MinimockIsTerminatorInspect logs each unmet expectation

func (*IExtenderMock) MinimockNameDone added in v1.76.1

func (m *IExtenderMock) MinimockNameDone() bool

MinimockNameDone returns true if the count of the Name invocations corresponds the number of defined expectations

func (*IExtenderMock) MinimockNameInspect added in v1.76.1

func (m *IExtenderMock) MinimockNameInspect()

MinimockNameInspect logs each unmet expectation

func (*IExtenderMock) MinimockSetModulesStateHelperDone added in v1.76.1

func (m *IExtenderMock) MinimockSetModulesStateHelperDone() bool

MinimockSetModulesStateHelperDone returns true if the count of the SetModulesStateHelper invocations corresponds the number of defined expectations

func (*IExtenderMock) MinimockSetModulesStateHelperInspect added in v1.76.1

func (m *IExtenderMock) MinimockSetModulesStateHelperInspect()

MinimockSetModulesStateHelperInspect logs each unmet expectation

func (*IExtenderMock) MinimockSetModulesVersionHelperDone added in v1.76.1

func (m *IExtenderMock) MinimockSetModulesVersionHelperDone() bool

MinimockSetModulesVersionHelperDone returns true if the count of the SetModulesVersionHelper invocations corresponds the number of defined expectations

func (*IExtenderMock) MinimockSetModulesVersionHelperInspect added in v1.76.1

func (m *IExtenderMock) MinimockSetModulesVersionHelperInspect()

MinimockSetModulesVersionHelperInspect logs each unmet expectation

func (*IExtenderMock) MinimockValidateReleaseDone added in v1.76.1

func (m *IExtenderMock) MinimockValidateReleaseDone() bool

MinimockValidateReleaseDone returns true if the count of the ValidateRelease invocations corresponds the number of defined expectations

func (*IExtenderMock) MinimockValidateReleaseInspect added in v1.76.1

func (m *IExtenderMock) MinimockValidateReleaseInspect()

MinimockValidateReleaseInspect logs each unmet expectation

func (*IExtenderMock) MinimockWait added in v1.76.1

func (m *IExtenderMock) MinimockWait(timeout mm_time.Duration)

MinimockWait waits for all mocked methods to be called the expected number of times

func (*IExtenderMock) Name added in v1.76.1

func (mmName *IExtenderMock) Name() (e1 extenders.ExtenderName)

Name implements IExtender

func (*IExtenderMock) NameAfterCounter added in v1.76.1

func (mmName *IExtenderMock) NameAfterCounter() uint64

NameAfterCounter returns a count of finished IExtenderMock.Name invocations

func (*IExtenderMock) NameBeforeCounter added in v1.76.1

func (mmName *IExtenderMock) NameBeforeCounter() uint64

NameBeforeCounter returns a count of IExtenderMock.Name invocations

func (*IExtenderMock) SetModulesStateHelper added in v1.76.1

func (mmSetModulesStateHelper *IExtenderMock) SetModulesStateHelper(f1 func() []string)

SetModulesStateHelper implements IExtender

func (*IExtenderMock) SetModulesStateHelperAfterCounter added in v1.76.1

func (mmSetModulesStateHelper *IExtenderMock) SetModulesStateHelperAfterCounter() uint64

SetModulesStateHelperAfterCounter returns a count of finished IExtenderMock.SetModulesStateHelper invocations

func (*IExtenderMock) SetModulesStateHelperBeforeCounter added in v1.76.1

func (mmSetModulesStateHelper *IExtenderMock) SetModulesStateHelperBeforeCounter() uint64

SetModulesStateHelperBeforeCounter returns a count of IExtenderMock.SetModulesStateHelper invocations

func (*IExtenderMock) SetModulesVersionHelper added in v1.76.1

func (mmSetModulesVersionHelper *IExtenderMock) SetModulesVersionHelper(f func(moduleName string) (string, error))

SetModulesVersionHelper implements IExtender

func (*IExtenderMock) SetModulesVersionHelperAfterCounter added in v1.76.1

func (mmSetModulesVersionHelper *IExtenderMock) SetModulesVersionHelperAfterCounter() uint64

SetModulesVersionHelperAfterCounter returns a count of finished IExtenderMock.SetModulesVersionHelper invocations

func (*IExtenderMock) SetModulesVersionHelperBeforeCounter added in v1.76.1

func (mmSetModulesVersionHelper *IExtenderMock) SetModulesVersionHelperBeforeCounter() uint64

SetModulesVersionHelperBeforeCounter returns a count of IExtenderMock.SetModulesVersionHelper invocations

func (*IExtenderMock) ValidateRelease added in v1.76.1

func (mmValidateRelease *IExtenderMock) ValidateRelease(moduleName string, moduleRelease string, version *semver.Version, value map[string]string) (err error)

ValidateRelease implements IExtender

func (*IExtenderMock) ValidateReleaseAfterCounter added in v1.76.1

func (mmValidateRelease *IExtenderMock) ValidateReleaseAfterCounter() uint64

ValidateReleaseAfterCounter returns a count of finished IExtenderMock.ValidateRelease invocations

func (*IExtenderMock) ValidateReleaseBeforeCounter added in v1.76.1

func (mmValidateRelease *IExtenderMock) ValidateReleaseBeforeCounter() uint64

ValidateReleaseBeforeCounter returns a count of IExtenderMock.ValidateRelease invocations

type IExtenderMockAddConstraintExpectation added in v1.76.1

type IExtenderMockAddConstraintExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtenderMockAddConstraintExpectation specifies expectation struct of the IExtender.AddConstraint

func (*IExtenderMockAddConstraintExpectation) Then added in v1.76.1

Then sets up IExtender.AddConstraint return parameters for the expectation previously defined by the When method

type IExtenderMockAddConstraintExpectationOrigins added in v1.76.1

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

IExtenderMockAddConstraintOrigins contains origins of expectations of the IExtender.AddConstraint

type IExtenderMockAddConstraintParamPtrs added in v1.76.1

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

IExtenderMockAddConstraintParamPtrs contains pointers to parameters of the IExtender.AddConstraint

type IExtenderMockAddConstraintParams added in v1.76.1

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

IExtenderMockAddConstraintParams contains parameters of the IExtender.AddConstraint

type IExtenderMockAddConstraintResults added in v1.76.1

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

IExtenderMockAddConstraintResults contains results of the IExtender.AddConstraint

type IExtenderMockCheckEnablingExpectation added in v1.76.1

type IExtenderMockCheckEnablingExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtenderMockCheckEnablingExpectation specifies expectation struct of the IExtender.CheckEnabling

func (*IExtenderMockCheckEnablingExpectation) Then added in v1.76.1

Then sets up IExtender.CheckEnabling return parameters for the expectation previously defined by the When method

type IExtenderMockCheckEnablingExpectationOrigins added in v1.76.1

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

IExtenderMockCheckEnablingOrigins contains origins of expectations of the IExtender.CheckEnabling

type IExtenderMockCheckEnablingParamPtrs added in v1.76.1

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

IExtenderMockCheckEnablingParamPtrs contains pointers to parameters of the IExtender.CheckEnabling

type IExtenderMockCheckEnablingParams added in v1.76.1

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

IExtenderMockCheckEnablingParams contains parameters of the IExtender.CheckEnabling

type IExtenderMockCheckEnablingResults added in v1.76.1

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

IExtenderMockCheckEnablingResults contains results of the IExtender.CheckEnabling

type IExtenderMockDeleteConstraintExpectation added in v1.76.1

type IExtenderMockDeleteConstraintExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtenderMockDeleteConstraintExpectation specifies expectation struct of the IExtender.DeleteConstraint

func (*IExtenderMockDeleteConstraintExpectation) Then added in v1.76.1

type IExtenderMockDeleteConstraintExpectationOrigins added in v1.76.1

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

IExtenderMockDeleteConstraintOrigins contains origins of expectations of the IExtender.DeleteConstraint

type IExtenderMockDeleteConstraintParamPtrs added in v1.76.1

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

IExtenderMockDeleteConstraintParamPtrs contains pointers to parameters of the IExtender.DeleteConstraint

type IExtenderMockDeleteConstraintParams added in v1.76.1

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

IExtenderMockDeleteConstraintParams contains parameters of the IExtender.DeleteConstraint

type IExtenderMockFilterExpectation added in v1.76.1

type IExtenderMockFilterExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtenderMockFilterExpectation specifies expectation struct of the IExtender.Filter

func (*IExtenderMockFilterExpectation) Then added in v1.76.1

Then sets up IExtender.Filter return parameters for the expectation previously defined by the When method

type IExtenderMockFilterExpectationOrigins added in v1.76.1

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

IExtenderMockFilterOrigins contains origins of expectations of the IExtender.Filter

type IExtenderMockFilterParamPtrs added in v1.76.1

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

IExtenderMockFilterParamPtrs contains pointers to parameters of the IExtender.Filter

type IExtenderMockFilterParams added in v1.76.1

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

IExtenderMockFilterParams contains parameters of the IExtender.Filter

type IExtenderMockFilterResults added in v1.76.1

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

IExtenderMockFilterResults contains results of the IExtender.Filter

type IExtenderMockGetTopologicalHintsExpectation added in v1.76.1

type IExtenderMockGetTopologicalHintsExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtenderMockGetTopologicalHintsExpectation specifies expectation struct of the IExtender.GetTopologicalHints

func (*IExtenderMockGetTopologicalHintsExpectation) Then added in v1.76.1

Then sets up IExtender.GetTopologicalHints return parameters for the expectation previously defined by the When method

type IExtenderMockGetTopologicalHintsExpectationOrigins added in v1.76.1

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

IExtenderMockGetTopologicalHintsOrigins contains origins of expectations of the IExtender.GetTopologicalHints

type IExtenderMockGetTopologicalHintsParamPtrs added in v1.76.1

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

IExtenderMockGetTopologicalHintsParamPtrs contains pointers to parameters of the IExtender.GetTopologicalHints

type IExtenderMockGetTopologicalHintsParams added in v1.76.1

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

IExtenderMockGetTopologicalHintsParams contains parameters of the IExtender.GetTopologicalHints

type IExtenderMockGetTopologicalHintsResults added in v1.76.1

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

IExtenderMockGetTopologicalHintsResults contains results of the IExtender.GetTopologicalHints

type IExtenderMockIsTerminatorExpectation added in v1.76.1

type IExtenderMockIsTerminatorExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtenderMockIsTerminatorExpectation specifies expectation struct of the IExtender.IsTerminator

type IExtenderMockIsTerminatorResults added in v1.76.1

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

IExtenderMockIsTerminatorResults contains results of the IExtender.IsTerminator

type IExtenderMockNameExpectation added in v1.76.1

type IExtenderMockNameExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtenderMockNameExpectation specifies expectation struct of the IExtender.Name

type IExtenderMockNameResults added in v1.76.1

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

IExtenderMockNameResults contains results of the IExtender.Name

type IExtenderMockSetModulesStateHelperExpectation added in v1.76.1

type IExtenderMockSetModulesStateHelperExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtenderMockSetModulesStateHelperExpectation specifies expectation struct of the IExtender.SetModulesStateHelper

func (*IExtenderMockSetModulesStateHelperExpectation) Then added in v1.76.1

type IExtenderMockSetModulesStateHelperExpectationOrigins added in v1.76.1

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

IExtenderMockSetModulesStateHelperOrigins contains origins of expectations of the IExtender.SetModulesStateHelper

type IExtenderMockSetModulesStateHelperParamPtrs added in v1.76.1

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

IExtenderMockSetModulesStateHelperParamPtrs contains pointers to parameters of the IExtender.SetModulesStateHelper

type IExtenderMockSetModulesStateHelperParams added in v1.76.1

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

IExtenderMockSetModulesStateHelperParams contains parameters of the IExtender.SetModulesStateHelper

type IExtenderMockSetModulesVersionHelperExpectation added in v1.76.1

type IExtenderMockSetModulesVersionHelperExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtenderMockSetModulesVersionHelperExpectation specifies expectation struct of the IExtender.SetModulesVersionHelper

func (*IExtenderMockSetModulesVersionHelperExpectation) Then added in v1.76.1

type IExtenderMockSetModulesVersionHelperExpectationOrigins added in v1.76.1

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

IExtenderMockSetModulesVersionHelperOrigins contains origins of expectations of the IExtender.SetModulesVersionHelper

type IExtenderMockSetModulesVersionHelperParamPtrs added in v1.76.1

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

IExtenderMockSetModulesVersionHelperParamPtrs contains pointers to parameters of the IExtender.SetModulesVersionHelper

type IExtenderMockSetModulesVersionHelperParams added in v1.76.1

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

IExtenderMockSetModulesVersionHelperParams contains parameters of the IExtender.SetModulesVersionHelper

type IExtenderMockValidateReleaseExpectation added in v1.76.1

type IExtenderMockValidateReleaseExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtenderMockValidateReleaseExpectation specifies expectation struct of the IExtender.ValidateRelease

func (*IExtenderMockValidateReleaseExpectation) Then added in v1.76.1

Then sets up IExtender.ValidateRelease return parameters for the expectation previously defined by the When method

type IExtenderMockValidateReleaseExpectationOrigins added in v1.76.1

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

IExtenderMockValidateReleaseOrigins contains origins of expectations of the IExtender.ValidateRelease

type IExtenderMockValidateReleaseParamPtrs added in v1.76.1

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

IExtenderMockValidateReleaseParamPtrs contains pointers to parameters of the IExtender.ValidateRelease

type IExtenderMockValidateReleaseParams added in v1.76.1

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

IExtenderMockValidateReleaseParams contains parameters of the IExtender.ValidateRelease

type IExtenderMockValidateReleaseResults added in v1.76.1

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

IExtenderMockValidateReleaseResults contains results of the IExtender.ValidateRelease

Jump to

Keyboard shortcuts

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