diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-02-22 10:52:55 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-22 10:52:55 -0500 |
commit | 2850ec5f507ee6c3202f09e099b01a4e550ef0d9 (patch) | |
tree | 7af4fcba3fec116c025c4d2ab22c83048672a952 /pkg/bindings/test/common_test.go | |
parent | 822bf70e454126475e32034b3ce3c660752b99ad (diff) | |
parent | f0df07b5931b256b0ddadb80a8357985038cfe26 (diff) | |
download | podman-2850ec5f507ee6c3202f09e099b01a4e550ef0d9.tar.gz podman-2850ec5f507ee6c3202f09e099b01a4e550ef0d9.tar.bz2 podman-2850ec5f507ee6c3202f09e099b01a4e550ef0d9.zip |
Merge pull request #5290 from baude/apiv2imagetests2
add more image tests for go bindings
Diffstat (limited to 'pkg/bindings/test/common_test.go')
-rw-r--r-- | pkg/bindings/test/common_test.go | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/pkg/bindings/test/common_test.go b/pkg/bindings/test/common_test.go index 98d64bbaa..38f5014ca 100644 --- a/pkg/bindings/test/common_test.go +++ b/pkg/bindings/test/common_test.go @@ -20,9 +20,18 @@ type testImage struct { } const ( + devPodmanBinaryLocation string = "../../../bin/podman" defaultPodmanBinaryLocation string = "/usr/bin/podman" ) +func getPodmanBinary() string { + _, err := os.Stat(devPodmanBinaryLocation) + if os.IsNotExist(err) { + return defaultPodmanBinaryLocation + } + return devPodmanBinaryLocation +} + var ( ImageCacheDir = "/tmp/podman/imagecachedir" LockTmpDir string @@ -50,7 +59,7 @@ type bindingTest struct { func (b *bindingTest) runPodman(command []string) *gexec.Session { var cmd []string - podmanBinary := defaultPodmanBinaryLocation + podmanBinary := getPodmanBinary() val, ok := os.LookupEnv("PODMAN_BINARY") if ok { podmanBinary = val @@ -166,7 +175,7 @@ func (b *bindingTest) restoreImageFromCache(i testImage) { // and add or append the alpine image to it func (b *bindingTest) RunTopContainer(containerName *string, insidePod *bool, podName *string) { cmd := []string{"run", "-dt"} - if *insidePod && podName != nil { + if insidePod != nil && podName != nil { pName := *podName cmd = append(cmd, "--pod", pName) } else if containerName != nil { |