test(storage): export UninitializedStorage to simulate failure

This commit is contained in:
Earl Warren 2024-06-04 23:20:20 +02:00
parent c2382d4f5b
commit 20148e061a
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
3 changed files with 10 additions and 10 deletions

View file

@ -10,7 +10,7 @@ import (
"os"
)
var uninitializedStorage = discardStorage("uninitialized storage")
var UninitializedStorage = discardStorage("uninitialized storage")
type discardStorage string

View file

@ -12,7 +12,7 @@ import (
func Test_discardStorage(t *testing.T) {
tests := []discardStorage{
uninitializedStorage,
UninitializedStorage,
discardStorage("empty"),
}
for _, tt := range tests {

View file

@ -109,26 +109,26 @@ func SaveFrom(objStorage ObjectStorage, p string, callback func(w io.Writer) err
var (
// Attachments represents attachments storage
Attachments ObjectStorage = uninitializedStorage
Attachments ObjectStorage = UninitializedStorage
// LFS represents lfs storage
LFS ObjectStorage = uninitializedStorage
LFS ObjectStorage = UninitializedStorage
// Avatars represents user avatars storage
Avatars ObjectStorage = uninitializedStorage
Avatars ObjectStorage = UninitializedStorage
// RepoAvatars represents repository avatars storage
RepoAvatars ObjectStorage = uninitializedStorage
RepoAvatars ObjectStorage = UninitializedStorage
// RepoArchives represents repository archives storage
RepoArchives ObjectStorage = uninitializedStorage
RepoArchives ObjectStorage = UninitializedStorage
// Packages represents packages storage
Packages ObjectStorage = uninitializedStorage
Packages ObjectStorage = UninitializedStorage
// Actions represents actions storage
Actions ObjectStorage = uninitializedStorage
Actions ObjectStorage = UninitializedStorage
// Actions Artifacts represents actions artifacts storage
ActionsArtifacts ObjectStorage = uninitializedStorage
ActionsArtifacts ObjectStorage = UninitializedStorage
)
// Init init the stoarge