2023-05-14 00:33:25 +02:00
|
|
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2023-06-14 08:36:52 +02:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2023-05-14 00:33:25 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMinioStorageIterator(t *testing.T) {
|
2023-05-16 08:33:22 +02:00
|
|
|
t.Skip("minio not found in Forgejo test yet")
|
2023-06-14 08:36:52 +02: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-14 00:33:25 +02:00
|
|
|
})
|
|
|
|
}
|