summaryrefslogtreecommitdiff
path: root/test/endpoint/endpoint_suite_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-08-26 17:11:12 +0200
committerGitHub <noreply@github.com>2019-08-26 17:11:12 +0200
commit67926d86b50973d6cb0d8e953583441c8cb2fecf (patch)
tree96cd0c416100c4373eedc6b843bb430b2fcbc180 /test/endpoint/endpoint_suite_test.go
parent6240bd41cbaae6b02c773a57dc05fc2eba0f8285 (diff)
parent04f2f95bb4ffae161ff0e7f01e381d6c7296fe14 (diff)
downloadpodman-67926d86b50973d6cb0d8e953583441c8cb2fecf.tar.gz
podman-67926d86b50973d6cb0d8e953583441c8cb2fecf.tar.bz2
podman-67926d86b50973d6cb0d8e953583441c8cb2fecf.zip
Merge pull request #3824 from baude/varlinkendpointtest
Create framework for varlink endpoint integration tests
Diffstat (limited to 'test/endpoint/endpoint_suite_test.go')
-rw-r--r--test/endpoint/endpoint_suite_test.go70
1 files changed, 70 insertions, 0 deletions
diff --git a/test/endpoint/endpoint_suite_test.go b/test/endpoint/endpoint_suite_test.go
new file mode 100644
index 000000000..401da94c2
--- /dev/null
+++ b/test/endpoint/endpoint_suite_test.go
@@ -0,0 +1,70 @@
+package endpoint
+
+import (
+ "fmt"
+ "io/ioutil"
+ "os"
+ "path/filepath"
+ "testing"
+
+ . "github.com/onsi/ginkgo"
+ . "github.com/onsi/gomega"
+)
+
+func TestEndpoint(t *testing.T) {
+ RegisterFailHandler(Fail)
+ RunSpecs(t, "Endpoint Suite")
+}
+
+var LockTmpDir string
+
+var _ = SynchronizedBeforeSuite(func() []byte {
+ // Cache images
+ cwd, _ := os.Getwd()
+ INTEGRATION_ROOT = filepath.Join(cwd, "../../")
+ podman := Setup("/tmp")
+ podman.ArtifactPath = ARTIFACT_DIR
+ if _, err := os.Stat(ARTIFACT_DIR); os.IsNotExist(err) {
+ if err = os.Mkdir(ARTIFACT_DIR, 0777); err != nil {
+ fmt.Printf("%q\n", err)
+ os.Exit(1)
+ }
+ }
+
+ // make cache dir
+ if err := os.MkdirAll(ImageCacheDir, 0777); err != nil {
+ fmt.Printf("%q\n", err)
+ os.Exit(1)
+ }
+
+ podman.StartVarlink()
+ for _, image := range CACHE_IMAGES {
+ podman.createArtifact(image)
+ }
+ podman.StopVarlink()
+ // If running localized tests, the cache dir is created and populated. if the
+ // tests are remote, this is a no-op
+ populateCache(podman)
+
+ path, err := ioutil.TempDir("", "libpodlock")
+ if err != nil {
+ fmt.Println(err)
+ os.Exit(1)
+ }
+ return []byte(path)
+}, func(data []byte) {
+ LockTmpDir = string(data)
+})
+
+var _ = SynchronizedAfterSuite(func() {},
+ func() {
+ podman := Setup("/tmp")
+ if err := os.RemoveAll(podman.CrioRoot); err != nil {
+ fmt.Printf("%q\n", err)
+ os.Exit(1)
+ }
+ if err := os.RemoveAll(podman.ImageCacheDir); err != nil {
+ fmt.Printf("%q\n", err)
+ os.Exit(1)
+ }
+ })