fusego/samples/flushfs/flush_fs_test.go

255 lines
5.6 KiB
Go
Raw Normal View History

2015-03-20 03:17:05 +03:00
// 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 flushfs_test
import (
2015-03-20 03:51:26 +03:00
"errors"
"fmt"
2015-03-20 03:33:15 +03:00
"io"
"os"
"path"
2015-03-20 03:20:29 +03:00
"sync"
2015-03-20 03:17:05 +03:00
"testing"
"github.com/jacobsa/fuse/samples"
2015-03-20 03:20:29 +03:00
"github.com/jacobsa/fuse/samples/flushfs"
2015-03-20 03:33:15 +03:00
. "github.com/jacobsa/oglematchers"
2015-03-20 03:17:05 +03:00
. "github.com/jacobsa/ogletest"
)
func TestFlushFS(t *testing.T) { RunTests(t) }
////////////////////////////////////////////////////////////////////////
// Boilerplate
////////////////////////////////////////////////////////////////////////
type FlushFSTest struct {
samples.SampleTest
2015-03-20 03:20:29 +03:00
mu sync.Mutex
// GUARDED_BY(mu)
2015-03-20 03:52:54 +03:00
flushes []string
flushErr error
2015-03-20 03:20:29 +03:00
// GUARDED_BY(mu)
2015-03-20 03:52:54 +03:00
fsyncs []string
fsyncErr error
2015-03-20 03:17:05 +03:00
}
func init() { RegisterTestSuite(&FlushFSTest{}) }
2015-03-20 03:20:29 +03:00
func (t *FlushFSTest) SetUp(ti *TestInfo) {
2015-03-20 03:21:38 +03:00
var err error
2015-03-20 03:20:29 +03:00
// Set up a file system.
2015-03-20 03:52:54 +03:00
reportTo := func(slice *[]string, err *error) func(string) error {
return func(s string) error {
2015-03-20 03:20:29 +03:00
t.mu.Lock()
defer t.mu.Unlock()
2015-03-20 03:52:54 +03:00
2015-03-20 03:20:29 +03:00
*slice = append(*slice, s)
2015-03-20 03:52:54 +03:00
return *err
2015-03-20 03:20:29 +03:00
}
}
2015-03-20 03:21:38 +03:00
t.FileSystem, err = flushfs.NewFileSystem(
2015-03-20 03:52:54 +03:00
reportTo(&t.flushes, &t.flushErr),
reportTo(&t.fsyncs, &t.fsyncErr))
2015-03-20 03:21:38 +03:00
if err != nil {
panic(err)
}
// Mount it.
t.SampleTest.SetUp(ti)
2015-03-20 03:20:29 +03:00
}
2015-03-20 03:17:05 +03:00
////////////////////////////////////////////////////////////////////////
2015-03-20 03:25:15 +03:00
// Helpers
2015-03-20 03:17:05 +03:00
////////////////////////////////////////////////////////////////////////
2015-03-20 03:49:45 +03:00
// Match byte slices equal to the supplied string.
2015-03-20 03:51:26 +03:00
func byteSliceEq(expected string) Matcher {
pred := func(c interface{}) error {
slice, ok := c.([]byte)
if !ok {
return errors.New("which is not []byte")
}
if string(slice) != expected {
return fmt.Errorf("which is string \"%s\"", string(slice))
}
return nil
}
return NewMatcher(
pred,
fmt.Sprintf("byte slice equal to string \"%s\"", expected))
}
2015-03-20 03:49:45 +03:00
2015-03-20 03:25:15 +03:00
// Return a copy of the current contents of t.flushes.
//
// LOCKS_EXCLUDED(t.mu)
2015-03-20 03:26:32 +03:00
func (t *FlushFSTest) getFlushes() (p []string) {
t.mu.Lock()
defer t.mu.Unlock()
p = make([]string, len(t.flushes))
copy(p, t.flushes)
return
}
2015-03-20 03:25:15 +03:00
// Return a copy of the current contents of t.fsyncs.
//
// LOCKS_EXCLUDED(t.mu)
2015-03-20 03:26:32 +03:00
func (t *FlushFSTest) getFsyncs() (p []string) {
t.mu.Lock()
defer t.mu.Unlock()
p = make([]string, len(t.fsyncs))
copy(p, t.fsyncs)
return
}
2015-03-20 03:25:15 +03:00
////////////////////////////////////////////////////////////////////////
// Tests
////////////////////////////////////////////////////////////////////////
2015-03-20 03:33:15 +03:00
func (t *FlushFSTest) CloseReports_ReadWrite() {
var n int
var off int64
var err error
buf := make([]byte, 1024)
// Open the file.
f, err := os.OpenFile(path.Join(t.Dir, "foo"), os.O_RDWR, 0)
AssertEq(nil, err)
defer func() {
if f != nil {
ExpectEq(nil, f.Close())
}
}()
// Write some contents to the file.
n, err = f.Write([]byte("taco"))
AssertEq(nil, err)
AssertEq(4, n)
// Seek and read them back.
off, err = f.Seek(0, 0)
AssertEq(nil, err)
2015-03-20 03:49:45 +03:00
AssertEq(0, off)
2015-03-20 03:33:15 +03:00
n, err = f.Read(buf)
AssertThat(err, AnyOf(nil, io.EOF))
2015-03-20 03:49:45 +03:00
AssertEq("taco", string(buf[:n]))
2015-03-20 03:33:15 +03:00
// At this point, no flushes or fsyncs should have happened.
AssertThat(t.getFlushes(), ElementsAre())
AssertThat(t.getFsyncs(), ElementsAre())
// Close the file.
err = f.Close()
f = nil
AssertEq(nil, err)
// Now we should have received the flush operation (but still no fsync).
2015-03-20 03:49:45 +03:00
ExpectThat(t.getFlushes(), ElementsAre(byteSliceEq("taco")))
2015-03-20 03:33:15 +03:00
ExpectThat(t.getFsyncs(), ElementsAre())
}
func (t *FlushFSTest) CloseReports_ReadOnly() {
2015-03-20 03:54:09 +03:00
var err error
// Open the file.
f, err := os.OpenFile(path.Join(t.Dir, "foo"), os.O_RDONLY, 0)
AssertEq(nil, err)
defer func() {
if f != nil {
ExpectEq(nil, f.Close())
}
}()
// At this point, no flushes or fsyncs should have happened.
AssertThat(t.getFlushes(), ElementsAre())
AssertThat(t.getFsyncs(), ElementsAre())
// Close the file.
err = f.Close()
f = nil
AssertEq(nil, err)
// Now we should have received the flush operation (but still no fsync).
ExpectThat(t.getFlushes(), ElementsAre(byteSliceEq("")))
ExpectThat(t.getFsyncs(), ElementsAre())
2015-03-20 03:33:15 +03:00
}
func (t *FlushFSTest) CloseReports_WriteOnly() {
2015-03-20 03:54:43 +03:00
var n int
var err error
// Open the file.
f, err := os.OpenFile(path.Join(t.Dir, "foo"), os.O_WRONLY, 0)
AssertEq(nil, err)
defer func() {
if f != nil {
ExpectEq(nil, f.Close())
}
}()
// Write some contents to the file.
n, err = f.Write([]byte("taco"))
AssertEq(nil, err)
AssertEq(4, n)
// At this point, no flushes or fsyncs should have happened.
AssertThat(t.getFlushes(), ElementsAre())
AssertThat(t.getFsyncs(), ElementsAre())
// Close the file.
err = f.Close()
f = nil
AssertEq(nil, err)
// Now we should have received the flush operation (but still no fsync).
ExpectThat(t.getFlushes(), ElementsAre(byteSliceEq("taco")))
ExpectThat(t.getFsyncs(), ElementsAre())
2015-03-20 03:33:15 +03:00
}
func (t *FlushFSTest) CloseReports_MultipleTimes_NonOverlappingFileHandles() {
2015-03-20 03:25:15 +03:00
AssertTrue(false, "TODO")
}
2015-03-20 03:33:15 +03:00
func (t *FlushFSTest) CloseReports_MultipleTimes_OverlappingFileHandles() {
2015-03-20 03:25:15 +03:00
AssertTrue(false, "TODO")
}
2015-03-20 03:33:15 +03:00
func (t *FlushFSTest) CloseError() {
2015-03-20 03:23:15 +03:00
AssertTrue(false, "TODO")
}
2015-03-20 03:33:15 +03:00
func (t *FlushFSTest) FsyncReports() {
2015-03-20 03:23:15 +03:00
AssertTrue(false, "TODO")
}
2015-03-20 03:33:15 +03:00
func (t *FlushFSTest) FsyncError() {
2015-03-20 03:17:05 +03:00
AssertTrue(false, "TODO")
}