aboutsummaryrefslogtreecommitdiffstats
path: root/modules/storage/minio_test.go
blob: bfddf33032260ba226455e6823e1c08457abc6e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2023 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package storage

import (
	"os"
	"testing"
)

func TestMinioStorageIterator(t *testing.T) {
	if os.Getenv("CI") == "" {
		t.Skip("minioStorage not present outside of CI")
		return
	}
	testStorageIterator(t, string(MinioStorageType), MinioStorageConfig{
		Endpoint:        "127.0.0.1:9000",
		AccessKeyID:     "123456",
		SecretAccessKey: "12345678",
		Bucket:          "gitea",
		Location:        "us-east-1",
	})
}