diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-01-07 13:19:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-07 13:19:51 +0100 |
commit | 7dd7b983b6bcbe5e6acd05c674c38ac3312ba391 (patch) | |
tree | 2af8d224fa722b40ede32d91466c9edbe20428f0 /test/system/120-load.bats | |
parent | 67dab9e360dca6c478259459157c5666d77ee817 (diff) | |
parent | f6889081519921518b31c90b5fbf9354d27b7b83 (diff) | |
download | podman-7dd7b983b6bcbe5e6acd05c674c38ac3312ba391.tar.gz podman-7dd7b983b6bcbe5e6acd05c674c38ac3312ba391.tar.bz2 podman-7dd7b983b6bcbe5e6acd05c674c38ac3312ba391.zip |
Merge pull request #12764 from edsantiago/bats
Emergency system-test fixes
Diffstat (limited to 'test/system/120-load.bats')
-rw-r--r-- | test/system/120-load.bats | 43 |
1 files changed, 19 insertions, 24 deletions
diff --git a/test/system/120-load.bats b/test/system/120-load.bats index 541095764..b1d181d50 100644 --- a/test/system/120-load.bats +++ b/test/system/120-load.bats @@ -79,31 +79,26 @@ verify_iid_and_name() { } @test "podman image scp transfer" { - skip_if_root_ubuntu "cannot create a new user successfully on ubuntu" + skip_if_remote "only applicable under local podman" + + skip "FIXME FIXME FIXME: this needs a big rewrite" + get_iid_and_name - if ! is_remote; then - if is_rootless; then - whoami=$(id -un) - run_podman image scp $whoami@localhost::$iid root@localhost:: - if [ "$status" -ne 0 ]; then - die "Command failed: podman image scp transfer" - fi - whoami=$(id -un) - run_podman image scp -q $whoami@localhost::$iid root@localhost:: - if [ "$status" -ne 0 ]; then - die "Command failed: podman image scp quiet transfer failed" - fi - fi - if ! is_rootless; then - id -u 1000 &>/dev/null || useradd -u 1000 -g 1000 testingUsr - if [ "$status" -ne 0 ]; then - die "Command failed: useradd 1000" - fi - run_podman image scp root@localhost::$iid 1000:1000@localhost:: - if [ "$status" -ne 0 ]; then - die "Command failed: podman image scp transfer" - fi - fi + if is_rootless; then + whoami=$(id -un) + # FIXME: first, test that we can sudo. If we can't, skip. + # FIXME: test 'scp $IMAGE root@localhost::' + # FIXME: then test the rest + # FIXME: check output + run_podman image scp $whoami@localhost::$iid root@localhost:: + is "$output" "Loaded image.*: $iid" "...." + + # FIXME: "-q" is a NOP + run_podman image scp -q $whoami@localhost::$iid root@localhost:: + else + # root + # FIXME: identify a rootless user. DO NOT CREATE ONE. + run_podman image scp root@localhost::$iid 1000:1000@localhost:: fi } |