35 lines
816 B
Go
35 lines
816 B
Go
package tests
|
|
|
|
import (
|
|
"reflect"
|
|
"runtime"
|
|
|
|
"github.com/zrepl/zrepl/platformtest"
|
|
)
|
|
|
|
type Case func(*platformtest.Context)
|
|
|
|
func (c Case) String() string {
|
|
return runtime.FuncForPC(reflect.ValueOf(c).Pointer()).Name()
|
|
}
|
|
|
|
var Cases = []Case{
|
|
BatchDestroy,
|
|
UndestroyableSnapshotParsing,
|
|
GetNonexistent,
|
|
ReplicationCursor,
|
|
IdempotentHold,
|
|
IdempotentBookmark,
|
|
IdempotentDestroy,
|
|
ResumeTokenParsing,
|
|
ResumableRecvAndTokenHandling,
|
|
SendArgsValidationEncryptedSendOfUnencryptedDatasetForbidden,
|
|
SendArgsValidationResumeTokenEncryptionMismatchForbidden,
|
|
SendArgsValidationResumeTokenDifferentFilesystemForbidden,
|
|
ListFilesystemVersionsTypeFilteringAndPrefix,
|
|
ListFilesystemVersionsFilesystemNotExist,
|
|
ListFilesystemVersionsFilesystemNotExist,
|
|
ListFilesystemVersionsUserrefs,
|
|
ListFilesystemsNoFilter,
|
|
}
|