summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2021-02-22 15:22:29 +0100
committerValentin Rothberg <rothberg@redhat.com>2021-02-22 16:45:31 +0100
commitf3a8e3324f206339386b541927445926dd137ad2 (patch)
tree62e12d57403a613ca496e067c79436dc3bac01ee /test
parent8577be72e8ec7fa597c7196bca0705d2c66083e0 (diff)
downloadpodman-f3a8e3324f206339386b541927445926dd137ad2.tar.gz
podman-f3a8e3324f206339386b541927445926dd137ad2.tar.bz2
podman-f3a8e3324f206339386b541927445926dd137ad2.zip
podman cp: test /dev/stdin correctly
/dev/stdin should not be treated as "-" to remain compatible with Docker and to have a more consistent and idiomatic interface. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'test')
-rw-r--r--test/system/065-cp.bats8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/system/065-cp.bats b/test/system/065-cp.bats
index 87a961160..312106b36 100644
--- a/test/system/065-cp.bats
+++ b/test/system/065-cp.bats
@@ -475,9 +475,9 @@ load helpers
run_podman exec cpcontainer rm -rf /tmp/$srcdir
# Now for "/dev/stdin".
+ # Note: while this works, the content ends up in Nirvana.
+ # Same for Docker.
run_podman cp /dev/stdin cpcontainer:/tmp < $tar_file
- run_podman exec cpcontainer cat /tmp/$srcdir/$rand_filename
- is "$output" "$rand_content"
# Error checks below ...
@@ -487,11 +487,11 @@ load helpers
# Destination must be a directory (on an existing file).
run_podman exec cpcontainer touch /tmp/file.txt
- run_podman 125 cp /dev/stdin cpcontainer:/tmp/file.txt < $tar_file
+ run_podman 125 cp - cpcontainer:/tmp/file.txt < $tar_file
is "$output" 'Error: destination must be a directory when copying from stdin'
# Destination must be a directory (on an absent path).
- run_podman 125 cp /dev/stdin cpcontainer:/tmp/IdoNotExist < $tar_file
+ run_podman 125 cp - cpcontainer:/tmp/IdoNotExist < $tar_file
is "$output" 'Error: destination must be a directory when copying from stdin'
run_podman rm -f cpcontainer