summaryrefslogtreecommitdiff
path: root/test/compose/env_and_volume
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2020-12-11 09:17:45 -0600
committerbaude <bbaude@redhat.com>2020-12-11 10:07:13 -0600
commitcb91bf96e02de8a6a7e50f83b4b69b9c47b84cc5 (patch)
tree46e3a7613d8893511bd8112653ea36258936d73c /test/compose/env_and_volume
parentf3e69d7300e3b4d6c5bb676c1dae27b10c3a4d56 (diff)
downloadpodman-cb91bf96e02de8a6a7e50f83b4b69b9c47b84cc5.tar.gz
podman-cb91bf96e02de8a6a7e50f83b4b69b9c47b84cc5.tar.bz2
podman-cb91bf96e02de8a6a7e50f83b4b69b9c47b84cc5.zip
add compose test descriptions
adding compose test descriptions and validations. Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'test/compose/env_and_volume')
-rw-r--r--test/compose/env_and_volume/README.md12
-rw-r--r--test/compose/env_and_volume/read/Dockerfile2
-rw-r--r--test/compose/env_and_volume/tests.sh4
-rw-r--r--test/compose/env_and_volume/write/Dockerfile2
4 files changed, 18 insertions, 2 deletions
diff --git a/test/compose/env_and_volume/README.md b/test/compose/env_and_volume/README.md
new file mode 100644
index 000000000..e7d74976b
--- /dev/null
+++ b/test/compose/env_and_volume/README.md
@@ -0,0 +1,12 @@
+environment variable and volume
+===============
+
+This test creates two containers both of which are running flask. The first container has
+an environment variable called PODMAN_MSG. That container pipes the contents of PODMAN_MSG
+to a file on a shared volume between the containers. The second container then reads the
+file are returns the PODMAN_MSG value via flask (http).
+
+Validation
+------------
+* curl http://localhost:5000 and verify message
+* curl http://localhost:5001 and verify message
diff --git a/test/compose/env_and_volume/read/Dockerfile b/test/compose/env_and_volume/read/Dockerfile
index a393a0dcb..8d5c45401 100644
--- a/test/compose/env_and_volume/read/Dockerfile
+++ b/test/compose/env_and_volume/read/Dockerfile
@@ -1,4 +1,4 @@
-FROM podman_python
+FROM quay.io/libpod/podman_python
WORKDIR /app
COPY . /app
ENTRYPOINT ["python3"]
diff --git a/test/compose/env_and_volume/tests.sh b/test/compose/env_and_volume/tests.sh
new file mode 100644
index 000000000..a4c8bed30
--- /dev/null
+++ b/test/compose/env_and_volume/tests.sh
@@ -0,0 +1,4 @@
+# -*- bash -*-
+
+test_port 5000 = "done"
+test_port 5001 = "podman_rulez"
diff --git a/test/compose/env_and_volume/write/Dockerfile b/test/compose/env_and_volume/write/Dockerfile
index a393a0dcb..8d5c45401 100644
--- a/test/compose/env_and_volume/write/Dockerfile
+++ b/test/compose/env_and_volume/write/Dockerfile
@@ -1,4 +1,4 @@
-FROM podman_python
+FROM quay.io/libpod/podman_python
WORKDIR /app
COPY . /app
ENTRYPOINT ["python3"]