1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-06 00:03:32 +00:00

rc: add config/unlock to unlock the config file

This commit is contained in:
n4n5
2025-07-25 12:19:07 +02:00
committed by GitHub
parent d71a4195d6
commit 30d8ab5f2f
2 changed files with 45 additions and 0 deletions

View File

@@ -188,3 +188,17 @@ func TestRcPaths(t *testing.T) {
assert.Equal(t, config.GetCacheDir(), out["cache"])
assert.Equal(t, os.TempDir(), out["temp"])
}
func TestRcConfigUnlock(t *testing.T) {
call := rc.Calls.Get("config/unlock")
assert.NotNil(t, call)
in := rc.Params{
"config_password": "test",
}
out, err := call.Fn(context.Background(), in)
require.NoError(t, err)
assert.Nil(t, err)
assert.Nil(t, out)
}