diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-03-07 15:23:54 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-07 15:23:54 -0800 |
commit | 1b2f8679b864b882fdccaad6fdd6a5c86c83291b (patch) | |
tree | e131eaf7fbecf6c36ca6f21468cef6bd8ebac4cd /test/system/060-mount.bats | |
parent | e0f224816d41ccf353bccd9ef6933a201cdc7d64 (diff) | |
parent | 589248d2f359dea73fc763ac587e2927f005b300 (diff) | |
download | podman-1b2f8679b864b882fdccaad6fdd6a5c86c83291b.tar.gz podman-1b2f8679b864b882fdccaad6fdd6a5c86c83291b.tar.bz2 podman-1b2f8679b864b882fdccaad6fdd6a5c86c83291b.zip |
Merge pull request #2533 from edsantiago/bats
New system tests under BATS
Diffstat (limited to 'test/system/060-mount.bats')
-rw-r--r-- | test/system/060-mount.bats | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/test/system/060-mount.bats b/test/system/060-mount.bats new file mode 100644 index 000000000..3601b7b84 --- /dev/null +++ b/test/system/060-mount.bats @@ -0,0 +1,37 @@ +#!/usr/bin/env bats + +load helpers + + +@test "podman mount - basic test" { + # Only works with root (FIXME: does it work with rootless + vfs?) + skip_if_rootless + + f_path=/tmp/tmpfile_$(random_string 8) + f_content=$(random_string 30) + + c_name=mount_test_$(random_string 5) + run_podman run --name $c_name $IMAGE \ + sh -c "echo $f_content > $f_path" + + run_podman mount $c_name + mount_path=$output + + test -d $mount_path + test -e "$mount_path/$f_path" + is $(< "$mount_path/$f_path") "$f_content" "contents of file, as read via fs" + + # Make sure that 'podman mount' (no args) returns the expected path + run_podman mount --notruncate + # FIXME: is it worth the effort to validate the CID ($1) ? + 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 $c_name + if [ -e "$mount_path/$f_path" ]; then + die "Mounted file exists even after umount: $mount_path/$f_path" + fi +} + +# vim: filetype=sh |