diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2017-11-05 06:43:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-05 06:43:20 -0500 |
commit | b06190e0da66f45cbe6a44d79065fabcd00ea19c (patch) | |
tree | e50aa13cd31b63d797cabe4b9157599bf2f36898 /cmd/kpod/spec_test.go | |
parent | 098389dc3e7bbba7c266ad24c909f3a5422e2908 (diff) | |
parent | 0026075d59b5e6e90786ed21825ac43d4f59fa5a (diff) | |
download | podman-b06190e0da66f45cbe6a44d79065fabcd00ea19c.tar.gz podman-b06190e0da66f45cbe6a44d79065fabcd00ea19c.tar.bz2 podman-b06190e0da66f45cbe6a44d79065fabcd00ea19c.zip |
Merge pull request #8 from baude/clicontext
Clicontext
Diffstat (limited to 'cmd/kpod/spec_test.go')
-rw-r--r-- | cmd/kpod/spec_test.go | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/cmd/kpod/spec_test.go b/cmd/kpod/spec_test.go new file mode 100644 index 000000000..c3de84324 --- /dev/null +++ b/cmd/kpod/spec_test.go @@ -0,0 +1,38 @@ +package main + +import ( + "reflect" + "testing" + + spec "github.com/opencontainers/runtime-spec/specs-go" + "github.com/stretchr/testify/assert" +) + +func TestCreateConfig_GetVolumeMounts(t *testing.T) { + data := spec.Mount{ + Destination: "/foobar", + Type: "bind", + Source: "foobar", + Options: []string{"ro", "rbind"}, + } + config := createConfig{ + volumes: []string{"foobar:/foobar:ro"}, + } + specMount := config.GetVolumeMounts() + assert.True(t, reflect.DeepEqual(data, specMount[0])) +} + +func TestCreateConfig_GetTmpfsMounts(t *testing.T) { + data := spec.Mount{ + Destination: "/homer", + Type: "tmpfs", + Source: "tmpfs", + Options: []string{"rw", "size=787448k", "mode=1777"}, + } + config := createConfig{ + tmpfs: []string{"/homer:rw,size=787448k,mode=1777"}, + } + tmpfsMount := config.GetTmpfsMounts() + assert.True(t, reflect.DeepEqual(data, tmpfsMount[0])) + +} |