test(storage): export UninitializedStorage to simulate failure
This commit is contained in:
parent
c2382d4f5b
commit
20148e061a
|
@ -10,7 +10,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
)
|
)
|
||||||
|
|
||||||
var uninitializedStorage = discardStorage("uninitialized storage")
|
var UninitializedStorage = discardStorage("uninitialized storage")
|
||||||
|
|
||||||
type discardStorage string
|
type discardStorage string
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ import (
|
||||||
|
|
||||||
func Test_discardStorage(t *testing.T) {
|
func Test_discardStorage(t *testing.T) {
|
||||||
tests := []discardStorage{
|
tests := []discardStorage{
|
||||||
uninitializedStorage,
|
UninitializedStorage,
|
||||||
discardStorage("empty"),
|
discardStorage("empty"),
|
||||||
}
|
}
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
|
|
|
@ -109,26 +109,26 @@ func SaveFrom(objStorage ObjectStorage, p string, callback func(w io.Writer) err
|
||||||
|
|
||||||
var (
|
var (
|
||||||
// Attachments represents attachments storage
|
// Attachments represents attachments storage
|
||||||
Attachments ObjectStorage = uninitializedStorage
|
Attachments ObjectStorage = UninitializedStorage
|
||||||
|
|
||||||
// LFS represents lfs storage
|
// LFS represents lfs storage
|
||||||
LFS ObjectStorage = uninitializedStorage
|
LFS ObjectStorage = UninitializedStorage
|
||||||
|
|
||||||
// Avatars represents user avatars storage
|
// Avatars represents user avatars storage
|
||||||
Avatars ObjectStorage = uninitializedStorage
|
Avatars ObjectStorage = UninitializedStorage
|
||||||
// RepoAvatars represents repository avatars storage
|
// RepoAvatars represents repository avatars storage
|
||||||
RepoAvatars ObjectStorage = uninitializedStorage
|
RepoAvatars ObjectStorage = UninitializedStorage
|
||||||
|
|
||||||
// RepoArchives represents repository archives storage
|
// RepoArchives represents repository archives storage
|
||||||
RepoArchives ObjectStorage = uninitializedStorage
|
RepoArchives ObjectStorage = UninitializedStorage
|
||||||
|
|
||||||
// Packages represents packages storage
|
// Packages represents packages storage
|
||||||
Packages ObjectStorage = uninitializedStorage
|
Packages ObjectStorage = UninitializedStorage
|
||||||
|
|
||||||
// Actions represents actions storage
|
// Actions represents actions storage
|
||||||
Actions ObjectStorage = uninitializedStorage
|
Actions ObjectStorage = UninitializedStorage
|
||||||
// Actions Artifacts represents actions artifacts storage
|
// Actions Artifacts represents actions artifacts storage
|
||||||
ActionsArtifacts ObjectStorage = uninitializedStorage
|
ActionsArtifacts ObjectStorage = UninitializedStorage
|
||||||
)
|
)
|
||||||
|
|
||||||
// Init init the stoarge
|
// Init init the stoarge
|
||||||
|
|
Loading…
Reference in New Issue