mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 08:23:50 +01:00
393fc10a69
Co-authored-by: Christian Schwarz <me@cschwarz.com> Signed-off-by: InsanePrawn <insane.prawny@gmail.com> closes #285 closes #276 closes #24
59 lines
1.5 KiB
Go
59 lines
1.5 KiB
Go
package tests
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/zrepl/zrepl/platformtest"
|
|
"github.com/zrepl/zrepl/util/nodefault"
|
|
"github.com/zrepl/zrepl/zfs"
|
|
)
|
|
|
|
func ReceiveForceIntoEncryptedErr(ctx *platformtest.Context) {
|
|
|
|
supported, err := zfs.EncryptionCLISupported(ctx)
|
|
require.NoError(ctx, err, "encryption feature test failed")
|
|
if !supported {
|
|
ctx.SkipNow()
|
|
return
|
|
}
|
|
|
|
platformtest.Run(ctx, platformtest.PanicErr, ctx.RootDataset, `
|
|
DESTROYROOT
|
|
CREATEROOT
|
|
+ "foo bar" encrypted
|
|
+ "sender" encrypted
|
|
+ "sender@1"
|
|
`)
|
|
|
|
rfs := fmt.Sprintf("%s/foo bar", ctx.RootDataset)
|
|
sfs := fmt.Sprintf("%s/sender", ctx.RootDataset)
|
|
sfsSnap1 := sendArgVersion(ctx, sfs, "@1")
|
|
|
|
sendArgs, err := zfs.ZFSSendArgsUnvalidated{
|
|
FS: sfs,
|
|
From: nil,
|
|
To: &sfsSnap1,
|
|
ZFSSendFlags: zfs.ZFSSendFlags{
|
|
Encrypted: &nodefault.Bool{B: false},
|
|
ResumeToken: "",
|
|
},
|
|
}.Validate(ctx)
|
|
require.NoError(ctx, err)
|
|
|
|
sendStream, err := zfs.ZFSSend(ctx, sendArgs)
|
|
require.NoError(ctx, err)
|
|
defer sendStream.Close()
|
|
|
|
recvOpts := zfs.RecvOptions{
|
|
RollbackAndForceRecv: true,
|
|
SavePartialRecvState: false,
|
|
}
|
|
err = zfs.ZFSRecv(ctx, rfs, &zfs.ZFSSendArgVersion{RelName: "@1", GUID: sfsSnap1.GUID}, sendStream, recvOpts)
|
|
require.Error(ctx, err)
|
|
re, ok := err.(*zfs.RecvDestroyOrOverwriteEncryptedErr)
|
|
require.True(ctx, ok)
|
|
require.Contains(ctx, re.Error(), "zfs receive -F cannot be used to destroy an encrypted filesystem or overwrite an unencrypted one with an encrypted on")
|
|
}
|