2014-04-30 14:43:51 +02:00
|
|
|
package vfs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2014-11-11 13:02:14 +02:00
|
|
|
|
|
|
|
"github.com/docker/docker/daemon/graphdriver/graphtest"
|
|
|
|
|
|
|
|
"github.com/docker/docker/pkg/reexec"
|
2014-04-30 14:43:51 +02:00
|
|
|
)
|
|
|
|
|
2014-11-11 13:02:14 +02:00
|
|
|
func init() {
|
|
|
|
reexec.Init()
|
|
|
|
}
|
|
|
|
|
2014-04-30 14:43:51 +02:00
|
|
|
// This avoids creating a new driver for each test if all tests are run
|
|
|
|
// Make sure to put new tests between TestVfsSetup and TestVfsTeardown
|
|
|
|
func TestVfsSetup(t *testing.T) {
|
|
|
|
graphtest.GetDriver(t, "vfs")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestVfsCreateEmpty(t *testing.T) {
|
|
|
|
graphtest.DriverTestCreateEmpty(t, "vfs")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestVfsCreateBase(t *testing.T) {
|
|
|
|
graphtest.DriverTestCreateBase(t, "vfs")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestVfsCreateSnap(t *testing.T) {
|
|
|
|
graphtest.DriverTestCreateSnap(t, "vfs")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestVfsTeardown(t *testing.T) {
|
|
|
|
graphtest.PutDriver(t)
|
|
|
|
}
|