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