diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-02-20 17:06:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-20 17:06:36 +0100 |
commit | 3e5699224bf4bbaa7f61681831a8bf36e3d7aec4 (patch) | |
tree | 2efc288f5647a37595d9b84edefc1e2ee3896e12 /pkg/bindings/test/common_test.go | |
parent | e7d8bda8706b98dfc182cf03e294dc1ce83af6d2 (diff) | |
parent | 3db43dcce3479b73b023dee1798a69bc78b15fb8 (diff) | |
download | podman-3e5699224bf4bbaa7f61681831a8bf36e3d7aec4.tar.gz podman-3e5699224bf4bbaa7f61681831a8bf36e3d7aec4.tar.bz2 podman-3e5699224bf4bbaa7f61681831a8bf36e3d7aec4.zip |
Merge pull request #5251 from sujil02/pod-test
Add test to validate the pod bindings api
Diffstat (limited to 'pkg/bindings/test/common_test.go')
-rw-r--r-- | pkg/bindings/test/common_test.go | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/pkg/bindings/test/common_test.go b/pkg/bindings/test/common_test.go index dba94cb35..8d008d53c 100644 --- a/pkg/bindings/test/common_test.go +++ b/pkg/bindings/test/common_test.go @@ -162,16 +162,30 @@ func (b *bindingTest) restoreImageFromCache(i testImage) { p.Wait(45) } -// Run a container and add append the alpine image to it -func (b *bindingTest) RunTopContainer(name *string) { +// Run a container within or without a pod +// and add or append the alpine image to it +func (b *bindingTest) RunTopContainer(containerName *string, insidePod *bool, podName *string) { cmd := []string{"run", "-dt"} - if name != nil { - containerName := *name - cmd = append(cmd, "--name", containerName) + if *insidePod && podName != nil { + pName := *podName + cmd = append(cmd, "--pod", pName) + } else if containerName != nil { + cName := *containerName + cmd = append(cmd, "--name", cName) } cmd = append(cmd, alpine.name, "top") - p := b.runPodman(cmd) - p.Wait(45) + b.runPodman(cmd).Wait(45) +} + +// This method creates a pod with the given pod name. +// Podname is an optional parameter +func (b *bindingTest) Podcreate(name *string) { + if name != nil { + podname := *name + b.runPodman([]string{"pod", "create", "--name", podname}).Wait(45) + } else { + b.runPodman([]string{"pod", "create"}).Wait(45) + } } // StringInSlice returns a boolean based on whether a given |