2491d38e03
* Remove duplicate definitions of storage-related flags for kpod, since we set them in helpers.bash now, and the other locations that were also setting it were doing so after loading the definitions in helpers. * Set kpod storage flags after checking if we need to force use of the "vfs" storage driver for cri-o, to make sure kpod also ends up with the same override if we're using one. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
46 lines
1.2 KiB
Bash
46 lines
1.2 KiB
Bash
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
IMAGE="docker.io/library/alpine:latest"
|
|
|
|
function teardown() {
|
|
cleanup_test
|
|
}
|
|
|
|
@test "kpod tag with shortname:latest" {
|
|
run ${KPOD_BINARY} ${KPOD_OPTIONS} pull $IMAGE
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
run ${KPOD_BINARY} ${KPOD_OPTIONS} tag $IMAGE foobar:latest
|
|
[ "$status" -eq 0 ]
|
|
run ${KPOD_BINARY} ${KPOD_OPTIONS} inspect foobar:latest
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
run ${KPOD_BINARY} ${KPOD_OPTIONS} rmi foobar:latest
|
|
[ "$status" -eq 0 ]
|
|
}
|
|
|
|
@test "kpod tag with shortname" {
|
|
run ${KPOD_BINARY} ${KPOD_OPTIONS} pull $IMAGE
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
run ${KPOD_BINARY} ${KPOD_OPTIONS} tag $IMAGE foobar
|
|
run ${KPOD_BINARY} ${KPOD_OPTIONS} inspect foobar:latest
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
run ${KPOD_BINARY} ${KPOD_OPTIONS} rmi foobar:latest
|
|
[ "$status" -eq 0 ]
|
|
}
|
|
|
|
@test "kpod tag with shortname:tag" {
|
|
run ${KPOD_BINARY} ${KPOD_OPTIONS} pull $IMAGE
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
run ${KPOD_BINARY} ${KPOD_OPTIONS} tag $IMAGE foobar:v
|
|
run ${KPOD_BINARY} ${KPOD_OPTIONS} inspect foobar:v
|
|
echo "$output"
|
|
[ "$status" -eq 0 ]
|
|
run ${KPOD_BINARY} ${KPOD_OPTIONS} rmi foobar:v
|
|
[ "$status" -eq 0 ]
|
|
}
|