mirror of https://github.com/docker/docs.git
45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
package provision
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/docker/machine/drivers/fakedriver"
|
|
"github.com/docker/machine/libmachine/auth"
|
|
"github.com/docker/machine/libmachine/engine"
|
|
"github.com/docker/machine/libmachine/provision/provisiontest"
|
|
"github.com/docker/machine/libmachine/swarm"
|
|
)
|
|
|
|
func TestUbuntuCompatibleWithHost(t *testing.T) {
|
|
info := &OsRelease{
|
|
ID: "ubuntu",
|
|
VersionID: "14.04",
|
|
}
|
|
p := NewUbuntuProvisioner(nil)
|
|
p.SetOsReleaseInfo(info)
|
|
|
|
compatible := p.CompatibleWithHost()
|
|
|
|
if !compatible {
|
|
t.Fatalf("expected to be compatible with ubuntu 14.04")
|
|
}
|
|
|
|
info.VersionID = "15.04"
|
|
|
|
compatible = p.CompatibleWithHost()
|
|
|
|
if compatible {
|
|
t.Fatalf("expected to NOT be compatible with ubuntu 15.04")
|
|
}
|
|
|
|
}
|
|
|
|
func TestUbuntuDefaultStorageDriver(t *testing.T) {
|
|
p := NewUbuntuProvisioner(&fakedriver.Driver{}).(*UbuntuProvisioner)
|
|
p.SSHCommander = provisiontest.NewFakeSSHCommander(provisiontest.FakeSSHCommanderOptions{})
|
|
p.Provision(swarm.Options{}, auth.Options{}, engine.Options{})
|
|
if p.EngineOptions.StorageDriver != "aufs" {
|
|
t.Fatal("Default storage driver should be aufs")
|
|
}
|
|
}
|