diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-08-26 17:11:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-26 17:11:12 +0200 |
commit | 67926d86b50973d6cb0d8e953583441c8cb2fecf (patch) | |
tree | 96cd0c416100c4373eedc6b843bb430b2fcbc180 /test/endpoint/config.go | |
parent | 6240bd41cbaae6b02c773a57dc05fc2eba0f8285 (diff) | |
parent | 04f2f95bb4ffae161ff0e7f01e381d6c7296fe14 (diff) | |
download | podman-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/config.go')
-rw-r--r-- | test/endpoint/config.go | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/endpoint/config.go b/test/endpoint/config.go new file mode 100644 index 000000000..15ee23547 --- /dev/null +++ b/test/endpoint/config.go @@ -0,0 +1,22 @@ +package endpoint + +import "encoding/json" + +var ( + STORAGE_FS = "vfs" + STORAGE_OPTIONS = "--storage-driver vfs" + ROOTLESS_STORAGE_FS = "vfs" + ROOTLESS_STORAGE_OPTIONS = "--storage-driver vfs" + CACHE_IMAGES = []string{ALPINE, BB, fedoraMinimal, nginx, redis, registry, infra, labels} + nginx = "quay.io/libpod/alpine_nginx:latest" + BB_GLIBC = "docker.io/library/busybox:glibc" + registry = "docker.io/library/registry:2" + labels = "quay.io/libpod/alpine_labels:latest" +) + +func makeNameMessage(name string) string { + n := make(map[string]string) + n["name"] = name + b, _ := json.Marshal(n) + return string(b) +} |