2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-04 01:50:48 +00:00
restic/src/restic/config_test.go

55 lines
1.2 KiB
Go
Raw Normal View History

2016-08-31 20:39:36 +00:00
package restic_test
2015-07-02 20:36:31 +00:00
import (
2016-08-31 18:29:54 +00:00
"restic"
2015-07-02 20:36:31 +00:00
"testing"
. "restic/test"
2015-07-02 20:36:31 +00:00
)
2016-08-31 18:29:54 +00:00
type saver func(restic.FileType, interface{}) (restic.ID, error)
2015-07-02 20:36:31 +00:00
2016-08-31 18:29:54 +00:00
func (s saver) SaveJSONUnpacked(t restic.FileType, arg interface{}) (restic.ID, error) {
2015-07-02 20:36:31 +00:00
return s(t, arg)
}
2016-08-31 18:29:54 +00:00
type loader func(restic.FileType, restic.ID, interface{}) error
2015-07-02 20:36:31 +00:00
2016-08-31 18:29:54 +00:00
func (l loader) LoadJSONUnpacked(t restic.FileType, id restic.ID, arg interface{}) error {
2015-07-02 20:36:31 +00:00
return l(t, id, arg)
}
func TestConfig(t *testing.T) {
2016-08-31 20:39:36 +00:00
resultConfig := restic.Config{}
2016-08-31 18:29:54 +00:00
save := func(tpe restic.FileType, arg interface{}) (restic.ID, error) {
Assert(t, tpe == restic.ConfigFile,
2015-07-02 20:36:31 +00:00
"wrong backend type: got %v, wanted %v",
2016-08-31 18:29:54 +00:00
tpe, restic.ConfigFile)
2015-07-02 20:36:31 +00:00
2016-08-31 20:39:36 +00:00
cfg := arg.(restic.Config)
2015-07-02 20:36:31 +00:00
resultConfig = cfg
2016-08-31 18:29:54 +00:00
return restic.ID{}, nil
2015-07-02 20:36:31 +00:00
}
2016-08-31 20:39:36 +00:00
cfg1, err := restic.CreateConfig()
2015-07-02 20:36:31 +00:00
OK(t, err)
2016-08-31 18:29:54 +00:00
_, err = saver(save).SaveJSONUnpacked(restic.ConfigFile, cfg1)
2016-08-31 18:29:54 +00:00
load := func(tpe restic.FileType, id restic.ID, arg interface{}) error {
Assert(t, tpe == restic.ConfigFile,
2015-07-02 20:36:31 +00:00
"wrong backend type: got %v, wanted %v",
2016-08-31 18:29:54 +00:00
tpe, restic.ConfigFile)
2015-07-02 20:36:31 +00:00
2016-08-31 20:39:36 +00:00
cfg := arg.(*restic.Config)
2015-07-02 20:36:31 +00:00
*cfg = resultConfig
return nil
}
2016-08-31 20:39:36 +00:00
cfg2, err := restic.LoadConfig(loader(load))
2015-07-02 20:36:31 +00:00
OK(t, err)
Assert(t, cfg1 == cfg2,
"configs aren't equal: %v != %v", cfg1, cfg2)
}