mirror of
1
Fork 0

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" "os"
) )
var uninitializedStorage = discardStorage("uninitialized storage") var UninitializedStorage = discardStorage("uninitialized storage")
type discardStorage string type discardStorage string

View File

@ -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 {

View File

@ -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