Commit 8b7833ba authored by Aaron Jacobs's avatar Aaron Jacobs

TestNonEmptyMountPoint: clean up in the event of a successful mount.

parent 38175a2e
......@@ -66,6 +66,8 @@ func TestSuccessfulMount(t *testing.T) {
}
func TestNonEmptyMountPoint(t *testing.T) {
ctx := context.Background()
// Set up a temporary directory.
dir, err := ioutil.TempDir("", "mount_test")
if err != nil {
......@@ -82,13 +84,19 @@ func TestNonEmptyMountPoint(t *testing.T) {
// Attempt to mount.
fs := &minimalFS{}
_, err = fuse.Mount(
mfs, err := fuse.Mount(
dir,
fuseutil.NewFileSystemServer(fs),
&fuse.MountConfig{})
if err == nil {
fuse.Unmount(mfs.Dir())
mfs.Join(ctx)
t.Fatal("fuse.Mount returned nil")
}
const want = "not empty"
if err == nil || !strings.Contains(err.Error(), want) {
t.Errorf("Unexpected error: %v", err)
if got := err.Error(); !strings.Contains(got, want) {
t.Errorf("Unexpected error: %v", got)
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment