summaryrefslogtreecommitdiff
path: root/test/system/160-volumes.bats
diff options
context:
space:
mode:
authorEd Santiago <santiago@redhat.com>2021-09-14 05:58:41 -0600
committerEd Santiago <santiago@redhat.com>2021-09-17 14:29:18 -0600
commit22df773f779a81ab1c0efa67f7c4ae1d3f5b296a (patch)
treed37594600a9140c057f3d9e135d679f186a0e840 /test/system/160-volumes.bats
parent08e1bb54c3cb390b1f2821222961805bb689df99 (diff)
downloadpodman-22df773f779a81ab1c0efa67f7c4ae1d3f5b296a.tar.gz
podman-22df773f779a81ab1c0efa67f7c4ae1d3f5b296a.tar.bz2
podman-22df773f779a81ab1c0efa67f7c4ae1d3f5b296a.zip
System tests: cleanup, and remove obsolete skips
* 070-build: - remove workaround for #9567, which is closed. - add many more cases to the ignorefile test, to test complicated special cases of Buildah PR 3486. * 160-volumes: - remove a skip_if_remote, volumes now work on remote - use a random name for tarball, and clean up when done using it. This fixes a gating-test failure (test runs as root, then rootless, and rootless can't clobber root's file). Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'test/system/160-volumes.bats')
-rw-r--r--test/system/160-volumes.bats9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/system/160-volumes.bats b/test/system/160-volumes.bats
index f6dc3f0af..e21be9ea4 100644
--- a/test/system/160-volumes.bats
+++ b/test/system/160-volumes.bats
@@ -21,8 +21,6 @@ function teardown() {
# Simple volume tests: share files between host and container
@test "podman run --volumes : basic" {
- skip_if_remote "volumes cannot be shared across hosts"
-
run_podman volume list --noheading
is "$output" "" "baseline: empty results from list --noheading"
@@ -192,9 +190,12 @@ EOF
run_podman volume create my_vol
run_podman run --rm -v my_vol:/data $IMAGE sh -c "echo hello >> /data/test"
run_podman volume create my_vol2
- run_podman volume export my_vol --output=hello.tar
+
+ tarfile=hello$(random_string | tr A-Z a-z).tar
+ run_podman volume export my_vol --output=$tarfile
# we want to use `run_podman volume export my_vol` but run_podman is wrapping EOF
- cat hello.tar | run_podman volume import my_vol2 -
+ run_podman volume import my_vol2 - < $tarfile
+ rm -f $tarfile
run_podman run --rm -v my_vol2:/data $IMAGE sh -c "cat /data/test"
is "$output" "hello" "output from second container"
run_podman volume rm my_vol