aboutsummaryrefslogtreecommitdiff
path: root/test/podman_tag.bats
blob: 79a7f56380677b54447bc97a588a0f7ae5f74afa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env bats

load helpers

IMAGE="alpine:latest"

function teardown() {
    cleanup_test
}

@test "podman tag with shortname:latest" {
	run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} pull $IMAGE"
	echo "$output"
	[ "$status" -eq 0 ]
	run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} tag $IMAGE foobar:latest"
	[ "$status" -eq 0 ]
	run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} inspect foobar:latest"
	echo "$output"
	[ "$status" -eq 0 ]
	run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} rmi --force foobar:latest"
	[ "$status" -eq 0 ]
}

@test "podman tag with shortname" {
	run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} pull $IMAGE"
	echo "$output"
	[ "$status" -eq 0 ]
	run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} tag $IMAGE foobar"
	echo "$output"
	[ "$status" -eq 0 ]
	run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} inspect foobar:latest"
	echo "$output"
	[ "$status" -eq 0 ]
	run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} rmi --force foobar:latest"
	[ "$status" -eq 0 ]
}

@test "podman tag with shortname:tag" {
	run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} pull $IMAGE"
	echo "$output"
	[ "$status" -eq 0 ]
	run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} tag $IMAGE foobar:v"
	echo "$output"
	[ "$status" -eq 0 ]
	run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} inspect foobar:v"
	echo "$output"
	[ "$status" -eq 0 ]
	run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} rmi --force foobar:v"
	[ "$status" -eq 0 ]
}