mirror of
https://github.com/octoleo/restic.git
synced 2024-11-04 20:37:49 +00:00
Fix s3 tests
This commit is contained in:
parent
407819e5a9
commit
d79c85af62
@ -7,20 +7,21 @@ var configTests = []struct {
|
||||
cfg Config
|
||||
}{
|
||||
{"s3://eu-central-1/bucketname", Config{
|
||||
URL: "eu-central-1",
|
||||
Bucket: "bucketname",
|
||||
Endpoint: "eu-central-1",
|
||||
Bucket: "bucketname",
|
||||
}},
|
||||
{"s3:eu-central-1/foobar", Config{
|
||||
URL: "eu-central-1",
|
||||
Bucket: "foobar",
|
||||
Endpoint: "eu-central-1",
|
||||
Bucket: "foobar",
|
||||
}},
|
||||
{"s3:https://hostname:9999/foobar", Config{
|
||||
URL: "https://hostname:9999",
|
||||
Bucket: "foobar",
|
||||
Endpoint: "hostname:9999",
|
||||
Bucket: "foobar",
|
||||
}},
|
||||
{"s3:http://hostname:9999/foobar", Config{
|
||||
URL: "http://hostname:9999",
|
||||
Bucket: "foobar",
|
||||
Endpoint: "hostname:9999",
|
||||
Bucket: "foobar",
|
||||
UseHTTP: true,
|
||||
}},
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user