fusego/samples/errorfs/error_fs_test.go

74 lines
1.8 KiB
Go
Raw Normal View History

2015-08-04 01:27:55 +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 errorfs_test
import (
"testing"
"github.com/jacobsa/fuse/fuseutil"
"github.com/jacobsa/fuse/samples"
"github.com/jacobsa/fuse/samples/errorfs"
. "github.com/jacobsa/ogletest"
)
func TestErrorFS(t *testing.T) { RunTests(t) }
////////////////////////////////////////////////////////////////////////
// Boilerplate
////////////////////////////////////////////////////////////////////////
type ErrorFSTest struct {
samples.SampleTest
fs errorfs.FS
}
func init() { RegisterTestSuite(&ErrorFSTest{}) }
var _ SetUpInterface = &ErrorFSTest{}
var _ TearDownInterface = &ErrorFSTest{}
func (t *ErrorFSTest) SetUp(ti *TestInfo) {
var err error
// Create the file system.
t.fs, err = errorfs.New()
AssertEq(nil, err)
t.Server = fuseutil.NewFileSystemServer(t.fs)
// Mount it.
t.SampleTest.SetUp(ti)
}
////////////////////////////////////////////////////////////////////////
// Tests
////////////////////////////////////////////////////////////////////////
2015-08-04 01:29:38 +03:00
func (t *ErrorFSTest) OpenFile() {
AssertTrue(false, "TODO")
}
func (t *ErrorFSTest) ReadFile() {
AssertTrue(false, "TODO")
}
func (t *ErrorFSTest) OpenDir() {
AssertTrue(false, "TODO")
}
func (t *ErrorFSTest) ReadDir() {
2015-08-04 01:27:55 +03:00
AssertTrue(false, "TODO")
}