mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-11-22 08:25:38 +00:00
xattr: tests for non-linux
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
f51a3381de
commit
e76196a6d6
2 changed files with 46 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
// +build linux
|
||||||
|
|
||||||
package xattr
|
package xattr
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
44
xattr/xattr_unsupported_test.go
Normal file
44
xattr/xattr_unsupported_test.go
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
// +build !linux
|
||||||
|
|
||||||
|
package xattr
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"io/ioutil"
|
||||||
|
"os"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestXattrUnsupported(t *testing.T) {
|
||||||
|
fh, err := ioutil.TempFile(".", "xattr.")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
defer os.Remove(fh.Name())
|
||||||
|
if err := fh.Close(); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// because xattrs are "not supported" on this platform, they're like a black
|
||||||
|
// box.
|
||||||
|
write := []byte("1234")
|
||||||
|
expected := []byte("")
|
||||||
|
|
||||||
|
if err := Set(fh.Name(), "user.testing", write); err != nil {
|
||||||
|
t.Fatal(fh.Name(), err)
|
||||||
|
}
|
||||||
|
l, err := List(fh.Name())
|
||||||
|
if err != nil {
|
||||||
|
t.Error(fh.Name(), err)
|
||||||
|
}
|
||||||
|
if len(l) > 0 {
|
||||||
|
t.Errorf("%q: expected a list of at least 0; got %d", fh.Name(), len(l))
|
||||||
|
}
|
||||||
|
got, err := Get(fh.Name(), "user.testing")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(fh.Name(), err)
|
||||||
|
}
|
||||||
|
if !bytes.Equal(got, expected) {
|
||||||
|
t.Errorf("%q: expected %q; got %q", fh.Name(), expected, got)
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue