mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f28cb422e6
Signed-off-by: Simon Ferquel <simon.ferquel@docker.com>
37 lines
1,023 B
Go
37 lines
1,023 B
Go
package container
|
|
|
|
import (
|
|
"testing"
|
|
|
|
container "github.com/docker/docker/api/types/container"
|
|
swarmapi "github.com/docker/swarmkit/api"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestIsolationConversion(t *testing.T) {
|
|
cases := []struct {
|
|
name string
|
|
from swarmapi.ContainerSpec_Isolation
|
|
to container.Isolation
|
|
}{
|
|
{name: "default", from: swarmapi.ContainerIsolationDefault, to: container.IsolationDefault},
|
|
{name: "process", from: swarmapi.ContainerIsolationProcess, to: container.IsolationProcess},
|
|
{name: "hyperv", from: swarmapi.ContainerIsolationHyperV, to: container.IsolationHyperV},
|
|
}
|
|
for _, c := range cases {
|
|
t.Run(c.name, func(t *testing.T) {
|
|
task := swarmapi.Task{
|
|
Spec: swarmapi.TaskSpec{
|
|
Runtime: &swarmapi.TaskSpec_Container{
|
|
Container: &swarmapi.ContainerSpec{
|
|
Image: "alpine:latest",
|
|
Isolation: c.from,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
config := containerConfig{task: &task}
|
|
require.Equal(t, c.to, config.hostConfig().Isolation)
|
|
})
|
|
}
|
|
}
|