2023-05-13 18:33:25 -04:00
|
|
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
2023-05-17 06:00:58 -04:00
|
|
|
"os"
|
2023-05-13 18:33:25 -04:00
|
|
|
"testing"
|
2023-06-13 23:42:38 -04:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2023-05-13 18:33:25 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMinioStorageIterator(t *testing.T) {
|
2023-05-17 06:00:58 -04:00
|
|
|
if os.Getenv("CI") == "" {
|
2023-05-17 12:22:17 -04:00
|
|
|
t.Skip("minioStorage not present outside of CI")
|
2023-05-17 06:00:58 -04:00
|
|
|
return
|
|
|
|
}
|
2023-06-13 23:42:38 -04:00
|
|
|
testStorageIterator(t, setting.MinioStorageType, &setting.Storage{
|
|
|
|
MinioConfig: setting.MinioStorageConfig{
|
|
|
|
Endpoint: "127.0.0.1:9000",
|
|
|
|
AccessKeyID: "123456",
|
|
|
|
SecretAccessKey: "12345678",
|
|
|
|
Bucket: "gitea",
|
|
|
|
Location: "us-east-1",
|
|
|
|
},
|
2023-05-13 18:33:25 -04:00
|
|
|
})
|
|
|
|
}
|