Skip to content

Commit

Permalink
Add test to ZFS for disk quota
Browse files Browse the repository at this point in the history
Signed-off-by: Ken Herner <kherner@progress.com>
  • Loading branch information
Ken Herner committed May 19, 2016
1 parent 373654f commit 04b4e3e
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
46 changes: 46 additions & 0 deletions daemon/graphdriver/graphtest/graphtest_unix.go
Expand Up @@ -5,12 +5,16 @@ package graphtest
import (
"fmt"
"io/ioutil"
"math/rand"
"os"
"path"
"reflect"
"syscall"
"testing"
"unsafe"

"github.com/docker/docker/daemon/graphdriver"
"github.com/docker/go-units"
)

var (
Expand Down Expand Up @@ -297,3 +301,45 @@ func DriverTestCreateSnap(t *testing.T, drivername string) {
t.Fatal(err)
}
}

func writeRandomFile(path string, size uint64) error {
buf := make([]int64, size/8)

r := rand.NewSource(0)
for i := range buf {
buf[i] = r.Int63()
}

// Cast to []byte
header := *(*reflect.SliceHeader)(unsafe.Pointer(&buf))
header.Len *= 8
header.Cap *= 8
data := *(*[]byte)(unsafe.Pointer(&header))

return ioutil.WriteFile(path, data, 0700)
}

// DriverTestSetQuota Create a driver and test setting quota.
func DriverTestSetQuota(t *testing.T, drivername string) {
driver := GetDriver(t, drivername)
defer PutDriver(t)

createBase(t, driver, "Base")
storageOpt := make(map[string]string, 1)
storageOpt["size"] = "50M"
if err := driver.Create("zfsTest", "Base", "", storageOpt); err != nil {
t.Fatal(err)
}

mountPath, err := driver.Get("zfsTest", "")
if err != nil {
t.Fatal(err)
}

quota := uint64(50 * units.MiB)
err = writeRandomFile(path.Join(mountPath, "file"), quota*2)
if pathError, ok := err.(*os.PathError); ok && pathError.Err != syscall.EDQUOT {
t.Fatalf("expect write() to fail with %v, got %v", syscall.EDQUOT, err)
}

}
4 changes: 4 additions & 0 deletions daemon/graphdriver/zfs/zfs_test.go
Expand Up @@ -26,6 +26,10 @@ func TestZfsCreateSnap(t *testing.T) {
graphtest.DriverTestCreateSnap(t, "zfs")
}

func TestZfsSetQuota(t *testing.T) {
graphtest.DriverTestSetQuota(t, "zfs")
}

func TestZfsTeardown(t *testing.T) {
graphtest.PutDriver(t)
}

0 comments on commit 04b4e3e

Please sign in to comment.