1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2025-03-23 00:00:04 +01:00
restic/backend/gcs/config_test.go

66 lines
1.4 KiB
Go
Raw Normal View History

package gcs
import "testing"
var configTests = []struct {
s string
cfg Config
}{
{"gs://bucketname", Config{
Endpoint: "storage.googleapis.com",
Bucket: "bucketname",
Prefix: "restic",
}},
{"gs://bucketname/", Config{
Endpoint: "storage.googleapis.com",
Bucket: "bucketname",
Prefix: "restic",
}},
{"gs://bucketname/prefix/dir", Config{
Endpoint: "storage.googleapis.com",
Bucket: "bucketname",
Prefix: "prefix/dir",
}},
{"gs://bucketname/prefix/dir/", Config{
Endpoint: "storage.googleapis.com",
Bucket: "bucketname",
Prefix: "prefix/dir",
}},
{"gs:bucketname", Config{
Endpoint: "storage.googleapis.com",
Bucket: "bucketname",
Prefix: "restic",
}},
{"gs:bucketname/", Config{
Endpoint: "storage.googleapis.com",
Bucket: "bucketname",
Prefix: "restic",
}},
{"gs:bucketname/prefix/dir", Config{
Endpoint: "storage.googleapis.com",
Bucket: "bucketname",
Prefix: "prefix/dir",
}},
{"gs:bucketname/prefix/dir/", Config{
Endpoint: "storage.googleapis.com",
Bucket: "bucketname",
Prefix: "prefix/dir",
}},
}
func TestParseConfig(t *testing.T) {
for i, test := range configTests {
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
}
}
}