fusego/samples/in_process.go

154 lines
3.6 KiB
Go
Raw Normal View History

// Copyright 2015 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package samples
import (
"context"
2015-03-20 02:44:50 +03:00
"fmt"
2015-03-20 03:10:04 +03:00
"io"
2015-03-20 02:44:50 +03:00
"io/ioutil"
"log"
2015-03-24 03:04:15 +03:00
"os"
2015-03-20 02:44:50 +03:00
"time"
"github.com/jacobsa/fuse"
"github.com/jacobsa/ogletest"
"github.com/jacobsa/timeutil"
)
// A struct that implements common behavior needed by tests in the samples/
// directory. Use it as an embedded field in your test fixture, calling its
2015-03-24 08:34:43 +03:00
// SetUp method from your SetUp method after setting the Server field.
type SampleTest struct {
2015-03-24 07:38:40 +03:00
// The server under test and the configuration with which it should be
// mounted. These must be set by the user of this type before calling SetUp;
// all the other fields below are set by SetUp itself.
2015-03-24 07:38:40 +03:00
Server fuse.Server
MountConfig fuse.MountConfig
2015-03-20 02:46:02 +03:00
// A context object that can be used for long-running operations.
Ctx context.Context
// A clock with a fixed initial time. The test's set up method may use this
2015-03-24 07:38:40 +03:00
// to wire the server with a clock, if desired.
Clock timeutil.SimulatedClock
// The directory at which the file system is mounted.
Dir string
2015-03-20 02:44:50 +03:00
2015-03-20 03:10:04 +03:00
// Anothing non-nil in this slice will be closed by TearDown. The test will
// fail if closing fails.
ToClose []io.Closer
2015-03-20 02:44:50 +03:00
mfs *fuse.MountedFileSystem
}
2015-03-24 07:38:40 +03:00
// Mount t.Server and initialize the other exported fields of the struct.
2015-03-23 08:16:51 +03:00
// Panics on error.
//
2015-03-24 07:38:40 +03:00
// REQUIRES: t.Server has been set.
func (t *SampleTest) SetUp(ti *ogletest.TestInfo) {
cfg := t.MountConfig
if *fDebug {
cfg.DebugLogger = log.New(os.Stderr, "fuse: ", 0)
}
err := t.initialize(ti.Ctx, t.Server, &cfg)
2015-03-20 02:44:50 +03:00
if err != nil {
panic(err)
}
}
2015-03-23 08:16:51 +03:00
// Like SetUp, but doens't panic.
2015-03-20 02:44:50 +03:00
func (t *SampleTest) initialize(
2015-05-01 04:11:32 +03:00
ctx context.Context,
2015-03-24 07:38:40 +03:00
server fuse.Server,
2015-03-20 02:44:50 +03:00
config *fuse.MountConfig) (err error) {
// Initialize the context used by the test.
2015-05-01 04:11:32 +03:00
t.Ctx = ctx
2015-03-20 02:46:02 +03:00
// Make the server share that context, if the test hasn't already set some
// other one.
if config.OpContext == nil {
config.OpContext = ctx
}
2015-03-20 02:44:50 +03:00
// Initialize the clock.
t.Clock.SetTime(time.Date(2012, 8, 15, 22, 56, 0, 0, time.Local))
// Set up a temporary directory.
t.Dir, err = ioutil.TempDir("", "sample_test")
if err != nil {
err = fmt.Errorf("TempDir: %v", err)
return
}
// Mount the file system.
2015-03-24 07:38:40 +03:00
t.mfs, err = fuse.Mount(t.Dir, server, config)
2015-03-20 02:44:50 +03:00
if err != nil {
err = fmt.Errorf("Mount: %v", err)
return
}
return
}
// Unmount the file system and clean up. Panics on error.
func (t *SampleTest) TearDown() {
2015-03-20 02:47:46 +03:00
err := t.destroy()
if err != nil {
panic(err)
}
}
// Like TearDown, but doesn't panic.
2015-03-20 02:47:46 +03:00
func (t *SampleTest) destroy() (err error) {
2015-03-20 03:10:04 +03:00
// Close what is necessary.
for _, c := range t.ToClose {
if c == nil {
continue
}
ogletest.ExpectEq(nil, c.Close())
}
2015-03-20 02:46:02 +03:00
// Was the file system mounted?
if t.mfs == nil {
return
}
2015-03-24 01:00:50 +03:00
// Unmount the file system.
err = unmount(t.Dir)
if err != nil {
err = fmt.Errorf("unmount: %v", err)
2015-03-20 02:47:46 +03:00
return
2015-03-20 02:46:02 +03:00
}
2015-03-20 02:47:46 +03:00
2015-03-24 03:04:15 +03:00
// Unlink the mount point.
if err = os.Remove(t.Dir); err != nil {
err = fmt.Errorf("Unlinking mount point: %v", err)
return
}
// Join the file system.
err = t.mfs.Join(t.Ctx)
if err != nil {
err = fmt.Errorf("mfs.Join: %v", err)
return
}
2015-03-20 02:47:46 +03:00
return
2015-03-20 02:46:02 +03:00
}