mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 11:46:36 +00:00
57 lines
1.4 KiB
Go
57 lines
1.4 KiB
Go
package restic_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/restic/restic/internal"
|
|
|
|
. "github.com/restic/restic/internal/test"
|
|
)
|
|
|
|
type saver func(restic.FileType, interface{}) (restic.ID, error)
|
|
|
|
func (s saver) SaveJSONUnpacked(t restic.FileType, arg interface{}) (restic.ID, error) {
|
|
return s(t, arg)
|
|
}
|
|
|
|
type loader func(context.Context, restic.FileType, restic.ID, interface{}) error
|
|
|
|
func (l loader) LoadJSONUnpacked(ctx context.Context, t restic.FileType, id restic.ID, arg interface{}) error {
|
|
return l(ctx, t, id, arg)
|
|
}
|
|
|
|
func TestConfig(t *testing.T) {
|
|
resultConfig := restic.Config{}
|
|
save := func(tpe restic.FileType, arg interface{}) (restic.ID, error) {
|
|
Assert(t, tpe == restic.ConfigFile,
|
|
"wrong backend type: got %v, wanted %v",
|
|
tpe, restic.ConfigFile)
|
|
|
|
cfg := arg.(restic.Config)
|
|
resultConfig = cfg
|
|
return restic.ID{}, nil
|
|
}
|
|
|
|
cfg1, err := restic.CreateConfig()
|
|
OK(t, err)
|
|
|
|
_, err = saver(save).SaveJSONUnpacked(restic.ConfigFile, cfg1)
|
|
|
|
load := func(ctx context.Context, tpe restic.FileType, id restic.ID, arg interface{}) error {
|
|
Assert(t, tpe == restic.ConfigFile,
|
|
"wrong backend type: got %v, wanted %v",
|
|
tpe, restic.ConfigFile)
|
|
|
|
cfg := arg.(*restic.Config)
|
|
*cfg = resultConfig
|
|
return nil
|
|
}
|
|
|
|
cfg2, err := restic.LoadConfig(context.TODO(), loader(load))
|
|
OK(t, err)
|
|
|
|
Assert(t, cfg1 == cfg2,
|
|
"configs aren't equal: %v != %v", cfg1, cfg2)
|
|
}
|