summaryrefslogtreecommitdiff
path: root/test/system/070-build.bats
blob: 53acf6edda2ce38ff6a9c4d513cc3db6f4a023d5 (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   -*- bats -*-
#
# Tests for podman build
#

load helpers

@test "podman build - basic test" {
    if [[ "$PODMAN" =~ -remote ]]; then
        if [ "$(id -u)" -ne 0 ]; then
            skip "unreliable with podman-remote and rootless; #2972"
        fi
    fi

    rand_filename=$(random_string 20)
    rand_content=$(random_string 50)

    tmpdir=$PODMAN_TMPDIR/build-test
    run mkdir -p $tmpdir || die "Could not mkdir $tmpdir"
    dockerfile=$tmpdir/Dockerfile
    cat >$dockerfile <<EOF
FROM $IMAGE
RUN echo $rand_content > /$rand_filename
EOF

    run_podman build -t build_test --format=docker $tmpdir

    run_podman run --rm build_test cat /$rand_filename
    is "$output"   "$rand_content"   "reading generated file in image"

    run_podman rmi build_test
}

# vim: filetype=sh