diff options
| author | Sebastian Lackner | 2017-12-12 14:38:00 +0100 | 
|---|---|---|
| committer | rfjakob | 2017-12-25 15:07:37 +0100 | 
| commit | a24342f656f6acd544ec07dada576d57a716b34d (patch) | |
| tree | c63568499378bd673bbe7f64d8365183582e9164 /tests/matrix | |
| parent | ca594b2349d748e410a6d834f0dd3d1a4a9cfa1c (diff) | |
fusefrontend: Handle PlaintextNames mode in Link
In PlaintextNames mode the "gocryptfs.longname." prefix does not have any
special meaning.
https://github.com/rfjakob/gocryptfs/issues/174
Diffstat (limited to 'tests/matrix')
| -rw-r--r-- | tests/matrix/matrix_test.go | 23 | 
1 files changed, 23 insertions, 0 deletions
| diff --git a/tests/matrix/matrix_test.go b/tests/matrix/matrix_test.go index 4194861..90cf55e 100644 --- a/tests/matrix/matrix_test.go +++ b/tests/matrix/matrix_test.go @@ -812,3 +812,26 @@ func TestSymlink(t *testing.T) {  		t.Fatal(err)  	}  } + +// Make sure the Link call works with paths starting with "gocryptfs.longname." +func TestLink(t *testing.T) { +	target := test_helpers.DefaultPlainDir + "/linktarget" +	f, err := os.Create(target) +	if err != nil { +		t.Fatal(err) +	} +	f.Close() +	path := test_helpers.DefaultPlainDir + "/gocryptfs.longname.XXX" +	err = syscall.Link(target, path) +	if err != nil { +		t.Fatal(err) +	} +	err = os.Remove(target) +	if err != nil { +		t.Fatal(err) +	} +	err = os.Remove(path) +	if err != nil { +		t.Fatal(err) +	} +} | 
