diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-11-05 14:39:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-05 14:39:16 +0100 |
commit | ab1d3a58d4b98bc948d7344fc27c680ca326086f (patch) | |
tree | 138b0ccdb5c25dab84a367e711ba29bdbd58fd3c /test | |
parent | cdc50e9d195f8081d3a5dc69cc65ddd3f050497c (diff) | |
parent | 6ca705bf1af6fd516b14ab043dc922e55eeaf832 (diff) | |
download | podman-ab1d3a58d4b98bc948d7344fc27c680ca326086f.tar.gz podman-ab1d3a58d4b98bc948d7344fc27c680ca326086f.tar.bz2 podman-ab1d3a58d4b98bc948d7344fc27c680ca326086f.zip |
Merge pull request #8185 from rhatdan/mount
Add support for mounting external containers
Diffstat (limited to 'test')
-rw-r--r-- | test/system/060-mount.bats | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/test/system/060-mount.bats b/test/system/060-mount.bats index 73d210084..f04f34bf6 100644 --- a/test/system/060-mount.bats +++ b/test/system/060-mount.bats @@ -2,7 +2,6 @@ load helpers - @test "podman mount - basic test" { # Only works with root (FIXME: does it work with rootless + vfs?) skip_if_rootless "mount does not work rootless" @@ -151,4 +150,34 @@ load helpers run_podman rm -f $cid } +@test "podman mount external container - basic test" { + # Only works with root (FIXME: does it work with rootless + vfs?) + skip_if_rootless "mount does not work rootless" + skip_if_remote "mounting remote is meaningless" + + # Create a container that podman does not know about + external_cid=$(buildah from $IMAGE) + + run_podman mount $external_cid + mount_path=$output + + # Test image will always have this file, and will always have the tag + test -d $mount_path + is $(< "$mount_path/home/podman/testimage-id") "$PODMAN_TEST_IMAGE_TAG" \ + "Contents of well-known file in image" + + # Make sure that 'podman mount' (no args) returns the expected path + run_podman mount --notruncate + + reported_mountpoint=$(echo "$output" | awk '{print $2}') + is $reported_mountpoint $mount_path "mountpoint reported by 'podman mount'" + + # umount, and make sure files are gone + run_podman umount $external_cid + if [ -d "$mount_path" ]; then + die "'podman umount' did not umount" + fi + buildah rm $external_cid +} + # vim: filetype=sh |