1
0
mirror of https://github.com/restic/restic.git synced 2024-07-07 09:30:53 +02:00
restic/backend/s3/config_test.go

42 lines
793 B
Go
Raw Normal View History

2015-12-28 15:51:24 +01:00
package s3
import "testing"
2015-12-28 15:57:20 +01:00
var configTests = []struct {
2015-12-28 15:51:24 +01:00
s string
cfg Config
}{
{"s3://eu-central-1/bucketname", Config{
2015-12-29 00:27:29 +01:00
URL: "eu-central-1",
2015-12-28 15:51:24 +01:00
Bucket: "bucketname",
}},
2015-12-28 18:23:02 +01:00
{"s3:eu-central-1/foobar", Config{
2015-12-29 00:27:29 +01:00
URL: "eu-central-1",
2015-12-28 18:23:02 +01:00
Bucket: "foobar",
}},
{"s3:https://hostname:9999/foobar", Config{
URL: "https://hostname:9999",
Bucket: "foobar",
}},
{"s3:http://hostname:9999/foobar", Config{
URL: "http://hostname:9999",
2015-12-28 15:51:24 +01:00
Bucket: "foobar",
}},
}
func TestParseConfig(t *testing.T) {
2015-12-28 15:57:20 +01:00
for i, test := range configTests {
2015-12-28 15:51:24 +01:00
cfg, err := ParseConfig(test.s)
if err != nil {
t.Errorf("test %d failed: %v", i, err)
continue
}
if cfg != test.cfg {
t.Errorf("test %d: wrong config, want:\n %v\ngot:\n %v",
i, test.cfg, cfg)
continue
}
}
}