Documentation ¶
Index ¶
- func CreateList(prefix string, helper storage.Interface, list runtime.Object) error
- func CreateObjList(prefix string, helper storage.Interface, items []runtime.Object) error
- func DeepEqualSafePodSpec() example.PodSpec
- func ExpectContains(t *testing.T, msg string, expectedList []interface{}, got interface{})
- func ExpectNoDiff(t *testing.T, msg string, expected, got interface{})
- func RunOptionalTestProgressNotify(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestConditionalDelete(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestConsistentList(ctx context.Context, t *testing.T, store InterfaceWithPrefixTransformer)
- func RunTestCount(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestCreate(ctx context.Context, t *testing.T, store storage.Interface, ...)
- func RunTestCreateWithKeyExist(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestCreateWithTTL(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestDeleteTriggerWatch(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestDeleteWithSuggestion(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestDeleteWithSuggestionAndConflict(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestDeleteWithSuggestionOfDeletedObject(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestGet(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestGetListNonRecursive(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestGuaranteedUpdate(ctx context.Context, t *testing.T, store InterfaceWithPrefixTransformer, ...)
- func RunTestGuaranteedUpdateChecksStoredData(ctx context.Context, t *testing.T, store InterfaceWithPrefixTransformer)
- func RunTestGuaranteedUpdateWithConflict(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestGuaranteedUpdateWithSuggestionAndConflict(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestGuaranteedUpdateWithTTL(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestList(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestListContinuation(ctx context.Context, t *testing.T, store storage.Interface, ...)
- func RunTestListContinuationWithFilter(ctx context.Context, t *testing.T, store storage.Interface, ...)
- func RunTestListInconsistentContinuation(ctx context.Context, t *testing.T, store storage.Interface, ...)
- func RunTestListPaginationRareObject(ctx context.Context, t *testing.T, store storage.Interface, ...)
- func RunTestListWithoutPaging(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestPreconditionalDeleteWithSuggestion(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestTransformationFailure(ctx context.Context, t *testing.T, store InterfaceWithPrefixTransformer)
- func RunTestUnconditionalDelete(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestValidateDeletionWithSuggestion(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestWatch(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestWatchContextCancel(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestWatchDeleteEventObjectHaveLatestRV(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestWatchError(ctx context.Context, t *testing.T, store InterfaceWithPrefixTransformer)
- func RunTestWatchFromNoneZero(ctx context.Context, t *testing.T, store storage.Interface)
- func RunTestWatchFromZero(ctx context.Context, t *testing.T, store storage.Interface, ...)
- func RunTestWatchInitializationSignal(ctx context.Context, t *testing.T, store storage.Interface)
- type CallsValidation
- type Compaction
- type InterfaceWithPrefixTransformer
- type KeyValidation
- type PrefixTransformer
- func (p *PrefixTransformer) GetReadsAndReset() uint64
- func (p *PrefixTransformer) TransformFromStorage(ctx context.Context, data []byte, dataCtx value.Context) ([]byte, bool, error)
- func (p *PrefixTransformer) TransformToStorage(ctx context.Context, data []byte, dataCtx value.Context) ([]byte, error)
- type PrefixTransformerModifier
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateList ¶
CreateList will properly create a list using the storage interface.
func CreateObjList ¶
CreateObjList will create a list from the array of objects.
func DeepEqualSafePodSpec ¶ added in v0.16.4
DeepEqualSafePodSpec returns an example.PodSpec safe for deep-equal operations.
func ExpectContains ¶ added in v0.26.0
func ExpectNoDiff ¶ added in v0.25.0
func RunOptionalTestProgressNotify ¶ added in v0.26.0
RunOptionalTestProgressNotify tests ProgressNotify feature of ListOptions. Given this feature is currently not explicitly used by higher layers of Kubernetes (it rather is used by wrappers of storage.Interface to implement its functionalities) this test is currently considered optional.
func RunTestConditionalDelete ¶ added in v0.25.0
func RunTestConsistentList ¶ added in v0.26.0
func RunTestConsistentList(ctx context.Context, t *testing.T, store InterfaceWithPrefixTransformer)
func RunTestCount ¶ added in v0.25.0
func RunTestCreate ¶ added in v0.25.0
func RunTestCreateWithKeyExist ¶ added in v0.25.0
func RunTestCreateWithTTL ¶ added in v0.25.0
func RunTestDeleteTriggerWatch ¶ added in v0.25.0
func RunTestDeleteWithSuggestion ¶ added in v0.25.0
func RunTestDeleteWithSuggestionAndConflict ¶ added in v0.25.0
func RunTestDeleteWithSuggestionOfDeletedObject ¶ added in v0.25.0
func RunTestGet ¶ added in v0.25.0
func RunTestGetListNonRecursive ¶ added in v0.25.0
func RunTestGuaranteedUpdate ¶ added in v0.26.0
func RunTestGuaranteedUpdate(ctx context.Context, t *testing.T, store InterfaceWithPrefixTransformer, validation KeyValidation)
func RunTestGuaranteedUpdateChecksStoredData ¶ added in v0.26.0
func RunTestGuaranteedUpdateChecksStoredData(ctx context.Context, t *testing.T, store InterfaceWithPrefixTransformer)
func RunTestGuaranteedUpdateWithConflict ¶ added in v0.25.0
func RunTestGuaranteedUpdateWithSuggestionAndConflict ¶ added in v0.25.0
func RunTestGuaranteedUpdateWithTTL ¶ added in v0.25.0
func RunTestList ¶ added in v0.25.0
func RunTestListContinuation ¶ added in v0.26.0
func RunTestListContinuationWithFilter ¶ added in v0.26.0
func RunTestListInconsistentContinuation ¶ added in v0.26.0
func RunTestListPaginationRareObject ¶ added in v0.26.0
func RunTestListWithoutPaging ¶ added in v0.25.0
func RunTestPreconditionalDeleteWithSuggestion ¶ added in v0.25.0
func RunTestTransformationFailure ¶ added in v0.26.0
func RunTestTransformationFailure(ctx context.Context, t *testing.T, store InterfaceWithPrefixTransformer)
func RunTestUnconditionalDelete ¶ added in v0.25.0
func RunTestValidateDeletionWithSuggestion ¶ added in v0.25.0
func RunTestWatch ¶ added in v0.25.0
func RunTestWatchContextCancel ¶ added in v0.25.0
func RunTestWatchDeleteEventObjectHaveLatestRV ¶ added in v0.26.0
func RunTestWatchError ¶ added in v0.26.0
func RunTestWatchError(ctx context.Context, t *testing.T, store InterfaceWithPrefixTransformer)
func RunTestWatchFromNoneZero ¶ added in v0.25.0
func RunTestWatchFromZero ¶ added in v0.26.0
func RunTestWatchFromZero(ctx context.Context, t *testing.T, store storage.Interface, compaction Compaction)
RunTestWatchFromZero tests that - watch from 0 should sync up and grab the object added before - watch from 0 is able to return events for objects whose previous version has been compacted
Types ¶
type CallsValidation ¶ added in v0.26.0
type Compaction ¶ added in v0.26.0
type InterfaceWithPrefixTransformer ¶ added in v0.26.0
type InterfaceWithPrefixTransformer interface { storage.Interface UpdatePrefixTransformer(PrefixTransformerModifier) func() }
type KeyValidation ¶ added in v0.25.0
type PrefixTransformer ¶ added in v0.26.0
type PrefixTransformer struct {
// contains filtered or unexported fields
}
PrefixTransformer adds and verifies that all data has the correct prefix on its way in and out.
func NewPrefixTransformer ¶ added in v0.26.0
func NewPrefixTransformer(prefix []byte, stale bool) *PrefixTransformer
func (*PrefixTransformer) GetReadsAndReset ¶ added in v0.26.0
func (p *PrefixTransformer) GetReadsAndReset() uint64
func (*PrefixTransformer) TransformFromStorage ¶ added in v0.26.0
func (*PrefixTransformer) TransformToStorage ¶ added in v0.26.0
type PrefixTransformerModifier ¶ added in v0.26.0
type PrefixTransformerModifier func(*PrefixTransformer) value.Transformer