12b32aa06c
* Fixed xattr filtering for MacOS. "system." and "user." prefixes are only relevant for Linux. * Small cleanup and additional tests.
34 lines
996 B
Go
34 lines
996 B
Go
package fusefrontend
|
|
|
|
// This file is named "xattr_unit_test.go" because there is also a
|
|
// "xattr_integration_test.go" in the test/xattr package.
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/rfjakob/gocryptfs/internal/contentenc"
|
|
"github.com/rfjakob/gocryptfs/internal/cryptocore"
|
|
"github.com/rfjakob/gocryptfs/internal/nametransform"
|
|
)
|
|
|
|
func newTestFS() *FS {
|
|
// Init crypto backend
|
|
key := make([]byte, cryptocore.KeyLen)
|
|
cCore := cryptocore.New(key, cryptocore.BackendGoGCM, contentenc.DefaultIVBits, true, false)
|
|
cEnc := contentenc.New(cCore, contentenc.DefaultBS, false)
|
|
nameTransform := nametransform.New(cCore.EMECipher, true, true)
|
|
args := Args{}
|
|
return NewFS(args, cEnc, nameTransform)
|
|
}
|
|
|
|
func TestEncryptDecryptXattrName(t *testing.T) {
|
|
fs := newTestFS()
|
|
attr1 := "user.foo123456789"
|
|
cAttr := fs.encryptXattrName(attr1)
|
|
t.Logf("cAttr=%v", cAttr)
|
|
attr2, err := fs.decryptXattrName(cAttr)
|
|
if attr1 != attr2 || err != nil {
|
|
t.Fatalf("Decrypt mismatch: %v != %v", attr1, attr2)
|
|
}
|
|
}
|