summaryrefslogtreecommitdiff
path: root/test/kpod_rename.bats
blob: a7954dbfa69dcd388e235a8c4301bea171d5a53d (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
#!/usr/bin/env bats

load helpers

IMAGE="redis:alpine"

function teardown() {
    cleanup_test
}

@test "kpod rename successful" {
    skip "Test needs to be converted to kpod run"
    start_crio
    run bash -c ${KPOD_BINARY} ${KPOD_OPTIONS} pull $IMAGE
    echo "$output"
    [ "$status" -eq 0 ]
    run crioctl pod run --config "$TESTDATA"/sandbox_config.json
    echo "$output"
    pod_id="$output"
    [ "$status" -eq 0 ]
    run crioctl ctr create --config "$TESTDATA"/container_config.json --pod "$pod_id"
    ctr_id="$output"
    [ "$status" -eq 0 ]
    run bash -c ${KPOD_BINARY} $KPOD_OPTIONS rename "$ctr_id" "$NEW_NAME"
    echo "$output"
    [ "$status" -eq 0 ]
    run bash -c ${KPOD_BINARY} $KPOD_OPTIONS inspect "$ctr_id" --format {{.Name}}
    echo "$output"
    [ "$status" -eq 0 ]
    [ "$output" == "$NEW_NAME" ]
    cleanup_ctrs
    cleanup_pods
    stop_crio
}