2014-08-02 03:46:15 -04:00
|
|
|
// +build linux
|
2013-11-27 22:12:51 -05:00
|
|
|
|
2013-11-13 18:35:52 -05:00
|
|
|
package devmapper
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2014-09-25 10:57:37 -04:00
|
|
|
|
|
|
|
"github.com/docker/docker/daemon/graphdriver/graphtest"
|
2013-11-13 18:35:52 -05:00
|
|
|
)
|
|
|
|
|
2014-05-16 06:46:28 -04:00
|
|
|
func init() {
|
|
|
|
// Reduce the size the the base fs and loopback for the tests
|
|
|
|
DefaultDataLoopbackSize = 300 * 1024 * 1024
|
|
|
|
DefaultMetaDataLoopbackSize = 200 * 1024 * 1024
|
|
|
|
DefaultBaseFsSize = 300 * 1024 * 1024
|
2015-03-17 10:44:42 -04:00
|
|
|
DefaultUdevSyncOverride = true
|
2014-11-13 22:33:41 -05:00
|
|
|
if err := graphtest.InitLoopbacks(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2013-11-13 18:35:52 -05:00
|
|
|
}
|
|
|
|
|
2014-05-16 06:46:28 -04:00
|
|
|
// This avoids creating a new driver for each test if all tests are run
|
|
|
|
// Make sure to put new tests between TestDevmapperSetup and TestDevmapperTeardown
|
|
|
|
func TestDevmapperSetup(t *testing.T) {
|
|
|
|
graphtest.GetDriver(t, "devicemapper")
|
2013-11-13 18:35:52 -05:00
|
|
|
}
|
|
|
|
|
2014-05-16 06:46:28 -04:00
|
|
|
func TestDevmapperCreateEmpty(t *testing.T) {
|
|
|
|
graphtest.DriverTestCreateEmpty(t, "devicemapper")
|
2013-11-13 18:35:52 -05:00
|
|
|
}
|
|
|
|
|
2014-05-16 06:46:28 -04:00
|
|
|
func TestDevmapperCreateBase(t *testing.T) {
|
|
|
|
graphtest.DriverTestCreateBase(t, "devicemapper")
|
2013-11-13 18:35:52 -05:00
|
|
|
}
|
|
|
|
|
2014-05-16 06:46:28 -04:00
|
|
|
func TestDevmapperCreateSnap(t *testing.T) {
|
|
|
|
graphtest.DriverTestCreateSnap(t, "devicemapper")
|
2013-11-13 18:35:52 -05:00
|
|
|
}
|
|
|
|
|
2014-05-16 06:46:28 -04:00
|
|
|
func TestDevmapperTeardown(t *testing.T) {
|
|
|
|
graphtest.PutDriver(t)
|
2013-11-13 18:35:52 -05:00
|
|
|
}
|