2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-15 15:22:22 +00:00
restic/internal/backend/s3/config_test.go

133 lines
3.3 KiB
Go
Raw Normal View History

2015-12-28 14:51:24 +00:00
package s3
import (
"strings"
"testing"
"github.com/restic/restic/internal/backend/test"
)
2015-12-28 14:51:24 +00:00
var configTests = []test.ConfigTestData[Config]{
2023-04-21 19:11:33 +00:00
{S: "s3://eu-central-1/bucketname", Cfg: Config{
2017-06-05 22:17:39 +00:00
Endpoint: "eu-central-1",
Bucket: "bucketname",
2017-11-20 21:29:15 +00:00
Prefix: "",
Connections: 5,
}},
2023-04-21 19:11:33 +00:00
{S: "s3://eu-central-1/bucketname/", Cfg: Config{
2017-06-05 22:17:39 +00:00
Endpoint: "eu-central-1",
Bucket: "bucketname",
2017-11-20 21:29:15 +00:00
Prefix: "",
Connections: 5,
2016-02-14 14:40:15 +00:00
}},
2023-04-21 19:11:33 +00:00
{S: "s3://eu-central-1/bucketname/prefix/directory", Cfg: Config{
2017-06-05 22:17:39 +00:00
Endpoint: "eu-central-1",
Bucket: "bucketname",
Prefix: "prefix/directory",
Connections: 5,
2015-12-28 14:51:24 +00:00
}},
2023-04-21 19:11:33 +00:00
{S: "s3://eu-central-1/bucketname/prefix/directory/", Cfg: Config{
2017-06-05 22:17:39 +00:00
Endpoint: "eu-central-1",
Bucket: "bucketname",
Prefix: "prefix/directory",
Connections: 5,
}},
2023-04-21 19:11:33 +00:00
{S: "s3:eu-central-1/foobar", Cfg: Config{
2017-06-05 22:17:39 +00:00
Endpoint: "eu-central-1",
Bucket: "foobar",
2017-11-20 21:29:15 +00:00
Prefix: "",
Connections: 5,
}},
2023-04-21 19:11:33 +00:00
{S: "s3:eu-central-1/foobar/", Cfg: Config{
2017-06-05 22:17:39 +00:00
Endpoint: "eu-central-1",
Bucket: "foobar",
2017-11-20 21:29:15 +00:00
Prefix: "",
Connections: 5,
2016-02-14 14:40:15 +00:00
}},
2023-04-21 19:11:33 +00:00
{S: "s3:eu-central-1/foobar/prefix/directory", Cfg: Config{
2017-06-05 22:17:39 +00:00
Endpoint: "eu-central-1",
Bucket: "foobar",
Prefix: "prefix/directory",
Connections: 5,
2015-12-28 17:23:02 +00:00
}},
2023-04-21 19:11:33 +00:00
{S: "s3:eu-central-1/foobar/prefix/directory/", Cfg: Config{
2017-06-05 22:17:39 +00:00
Endpoint: "eu-central-1",
Bucket: "foobar",
Prefix: "prefix/directory",
Connections: 5,
}},
{S: "s3:hostname.foo/foobar", Cfg: Config{
Endpoint: "hostname.foo",
Bucket: "foobar",
Prefix: "",
Connections: 5,
}},
{S: "s3:hostname.foo/foobar/prefix/directory", Cfg: Config{
Endpoint: "hostname.foo",
Bucket: "foobar",
Prefix: "prefix/directory",
Connections: 5,
}},
{S: "s3:https://hostname/foobar", Cfg: Config{
Endpoint: "hostname",
Bucket: "foobar",
Prefix: "",
Connections: 5,
}},
2023-04-21 19:11:33 +00:00
{S: "s3:https://hostname:9999/foobar", Cfg: Config{
2017-06-05 22:17:39 +00:00
Endpoint: "hostname:9999",
Bucket: "foobar",
2017-11-20 21:29:15 +00:00
Prefix: "",
Connections: 5,
2015-12-28 17:23:02 +00:00
}},
2023-04-21 19:11:33 +00:00
{S: "s3:https://hostname:9999/foobar/", Cfg: Config{
2017-06-05 22:17:39 +00:00
Endpoint: "hostname:9999",
Bucket: "foobar",
2017-11-20 21:29:15 +00:00
Prefix: "",
Connections: 5,
2016-02-14 14:40:15 +00:00
}},
2023-04-21 19:11:33 +00:00
{S: "s3:http://hostname:9999/foobar", Cfg: Config{
2017-06-05 22:17:39 +00:00
Endpoint: "hostname:9999",
Bucket: "foobar",
2017-11-20 21:29:15 +00:00
Prefix: "",
2017-06-05 22:17:39 +00:00
UseHTTP: true,
Connections: 5,
}},
2023-04-21 19:11:33 +00:00
{S: "s3:http://hostname:9999/foobar/", Cfg: Config{
2017-06-05 22:17:39 +00:00
Endpoint: "hostname:9999",
Bucket: "foobar",
2017-11-20 21:29:15 +00:00
Prefix: "",
2017-06-05 22:17:39 +00:00
UseHTTP: true,
Connections: 5,
}},
2023-04-21 19:11:33 +00:00
{S: "s3:http://hostname:9999/bucket/prefix/directory", Cfg: Config{
2017-06-05 22:17:39 +00:00
Endpoint: "hostname:9999",
Bucket: "bucket",
Prefix: "prefix/directory",
UseHTTP: true,
Connections: 5,
2015-12-28 14:51:24 +00:00
}},
2023-04-21 19:11:33 +00:00
{S: "s3:http://hostname:9999/bucket/prefix/directory/", Cfg: Config{
2017-06-05 22:17:39 +00:00
Endpoint: "hostname:9999",
Bucket: "bucket",
Prefix: "prefix/directory",
UseHTTP: true,
Connections: 5,
}},
2015-12-28 14:51:24 +00:00
}
func TestParseConfig(t *testing.T) {
test.ParseConfigTester(t, ParseConfig, configTests)
2015-12-28 14:51:24 +00:00
}
func TestParseError(t *testing.T) {
const prefix = "s3: invalid format,"
for _, s := range []string{"", "/", "//", "/bucket/prefix"} {
_, err := ParseConfig("s3://" + s)
if err == nil || !strings.HasPrefix(err.Error(), prefix) {
t.Errorf("expected %q, got %q", prefix, err)
}
}
}