1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
// 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.
//go:build !windows && !darwin
// +build !windows,!darwin
package fuse
import (
"bytes"
"io"
"io/ioutil"
"net"
"os"
"path/filepath"
"sync"
"syscall"
"testing"
"time"
)
func randTmpDir(t interface {
Fatalf(format string, args ...interface{})
}) string {
name, err := ioutil.TempDir("", "*")
if err != nil {
t.Fatalf("failed to create tmp dir: %v", err)
}
return name
}
// tryFunc executes the provided function up to maxCount times, sleeping 100ms
// between attempts.
func tryFunc(f func() error, maxCount int) error {
var errCount int
for {
err := f()
if err == nil {
return nil
}
errCount++
if errCount == maxCount {
return err
}
time.Sleep(100 * time.Millisecond)
}
}
func TestFuseClose(t *testing.T) {
if testing.Short() {
t.Skip("skipping fuse tests in short mode.")
}
dir := randTmpDir(t)
tmpdir := randTmpDir(t)
src, fuse, err := NewConnSrc(dir, tmpdir, nil, nil)
if err != nil {
t.Fatal(err)
}
if err := tryFunc(fuse.Close, 10); err != nil {
t.Fatal(err)
}
if got, ok := <-src; ok {
t.Fatalf("got new connection %#v, expected closed source", got)
}
}
// TestBadDir verifies that the fuse module does not create directories, only simple files.
func TestBadDir(t *testing.T) {
if testing.Short() {
t.Skip("skipping fuse tests in short mode.")
}
dir := randTmpDir(t)
tmpdir := randTmpDir(t)
_, fuse, err := NewConnSrc(dir, tmpdir, nil, nil)
if err != nil {
t.Fatal(err)
}
defer func() {
if err := tryFunc(fuse.Close, 10); err != nil {
t.Fatal(err)
}
}()
_, err = os.Stat(filepath.Join(dir, "proj:region:inst-1", "proj:region:inst-2"))
if err == nil {
t.Fatal("able to find a directory inside the mount point, expected only regular files")
}
if err := err.(*os.PathError); err.Err != syscall.ENOTDIR {
t.Fatalf("got %#v, want ENOTDIR (%v)", err.Err, syscall.ENOTDIR)
}
}
func TestReadme(t *testing.T) {
if testing.Short() {
t.Skip("skipping fuse tests in short mode.")
}
dir := randTmpDir(t)
tmpdir := randTmpDir(t)
_, fuse, err := NewConnSrc(dir, tmpdir, nil, nil)
if err != nil {
t.Fatal(err)
}
defer func() {
if err := tryFunc(fuse.Close, 10); err != nil {
t.Fatal(err)
}
}()
data, err := ioutil.ReadFile(filepath.Join(dir, "README"))
if err != nil {
t.Fatal(err)
}
// We just care that the file exists. Print out the contents for
// informational purposes.
t.Log(string(data))
}
func TestSingleInstance(t *testing.T) {
if testing.Short() {
t.Skip("skipping fuse tests in short mode.")
}
dir := randTmpDir(t)
tmpdir := randTmpDir(t)
src, fuse, err := NewConnSrc(dir, tmpdir, nil, nil)
if err != nil {
t.Fatal(err)
}
defer func() {
if err := tryFunc(fuse.Close, 10); err != nil {
t.Fatal(err)
}
}()
const want = "test:instance:string"
path := filepath.Join(dir, want)
fi, err := os.Stat(path)
if err != nil {
t.Fatal(err)
}
if fi.Mode()&os.ModeType != os.ModeSocket {
t.Fatalf("%q had mode %v (%X), expected a socket file", path, fi.Mode(), uint32(fi.Mode()))
}
c, err := net.Dial("unix", path)
if err != nil {
t.Fatal(err)
}
defer c.Close()
got, ok := <-src
if !ok {
t.Fatal("connection source was closed, expected a connection")
} else if got.Instance != want {
t.Fatalf("got %q, want %q", got.Instance, want)
} else if got.Conn == nil {
t.Fatal("got nil connection, wanted a connection")
}
const sent = "test string"
go func() {
if _, err := c.Write([]byte(sent)); err != nil {
t.Error(err)
}
if err := c.Close(); err != nil {
t.Error(err)
}
}()
gotData := new(bytes.Buffer)
if _, err := io.Copy(gotData, got.Conn); err != nil {
t.Fatal(err)
} else if gotData.String() != sent {
t.Fatalf("got %q, want %v", gotData.String(), sent)
}
}
func BenchmarkNewConnection(b *testing.B) {
if testing.Short() {
b.Skip("skipping fuse tests in short mode.")
}
dir := randTmpDir(b)
tmpdir := randTmpDir(b)
src, fuse, err := NewConnSrc(dir, tmpdir, nil, nil)
if err != nil {
b.Fatal(err)
}
const want = "X"
incomingCount := 0
var incoming sync.Mutex // Is unlocked when the following goroutine exits.
go func() {
incoming.Lock()
defer incoming.Unlock()
for c := range src {
c.Conn.Write([]byte(want))
c.Conn.Close()
incomingCount++
}
}()
const instance = "test:instance:string"
path := filepath.Join(dir, instance)
b.ResetTimer()
for i := 0; i < b.N; i++ {
c, err := net.Dial("unix", path)
if err != nil {
b.Errorf("couldn't dial: %v", err)
}
data, err := ioutil.ReadAll(c)
if err != nil {
b.Errorf("got read error: %v", err)
} else if got := string(data); got != want {
b.Errorf("read %q, want %q", string(data), want)
}
}
if err := fuse.Close(); err != nil {
b.Fatal(err)
}
// Wait for the 'incoming' goroutine to finish.
incoming.Lock()
if incomingCount != b.N {
b.Fatalf("got %d connections, want %d", incomingCount, b.N)
}
}
|