fusego/samples/memfs/posix_test.go

96 lines
2.3 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.
// Tests for the behavior of os.File objects on plain old posix file systems,
// for use in verifying the intended behavior of memfs.
package memfs_test
import (
2015-03-05 11:08:48 +03:00
"io/ioutil"
"os"
"testing"
. "github.com/jacobsa/ogletest"
)
func TestPosix(t *testing.T) { RunTests(t) }
////////////////////////////////////////////////////////////////////////
// Boilerplate
////////////////////////////////////////////////////////////////////////
type PosixTest struct {
dir string
}
var _ SetUpInterface = &PosixTest{}
var _ TearDownInterface = &PosixTest{}
func init() { RegisterTestSuite(&PosixTest{}) }
2015-03-05 11:08:48 +03:00
func (t *PosixTest) SetUp(ti *TestInfo) {
var err error
2015-03-05 11:08:48 +03:00
// Create a temporary directory.
t.dir, err = ioutil.TempDir("", "posix_test")
if err != nil {
panic(err)
}
}
func (t *PosixTest) TearDown() {
// Remove the temporary directory.
err := os.RemoveAll(t.dir)
if err != nil {
panic(err)
}
}
////////////////////////////////////////////////////////////////////////
// Test functions
////////////////////////////////////////////////////////////////////////
2015-03-05 11:10:25 +03:00
func (t *PosixTest) WriteOverlapsEndOfFile() {
AssertTrue(false, "TODO")
}
func (t *PosixTest) WriteStartsAtEndOfFile() {
AssertTrue(false, "TODO")
}
func (t *PosixTest) WriteStartsPastEndOfFile() {
AssertTrue(false, "TODO")
}
func (t *PosixTest) WriteAtEffectOnOffset_NotAppendMode() {
AssertTrue(false, "TODO")
}
func (t *PosixTest) WriteAtEffectOnOffset_AppendMode() {
AssertTrue(false, "TODO")
}
func (t *PosixTest) ReadOverlapsEndOfFile() {
AssertTrue(false, "TODO")
}
func (t *PosixTest) ReadStartsAtEndOfFile() {
AssertTrue(false, "TODO")
}
func (t *PosixTest) ReadStartsPastEndOfFile() {
AssertTrue(false, "TODO")
}