summaryrefslogtreecommitdiff
path: root/test/system/070-build.bats
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-03-07 15:23:54 -0800
committerGitHub <noreply@github.com>2019-03-07 15:23:54 -0800
commit1b2f8679b864b882fdccaad6fdd6a5c86c83291b (patch)
treee131eaf7fbecf6c36ca6f21468cef6bd8ebac4cd /test/system/070-build.bats
parente0f224816d41ccf353bccd9ef6933a201cdc7d64 (diff)
parent589248d2f359dea73fc763ac587e2927f005b300 (diff)
downloadpodman-1b2f8679b864b882fdccaad6fdd6a5c86c83291b.tar.gz
podman-1b2f8679b864b882fdccaad6fdd6a5c86c83291b.tar.bz2
podman-1b2f8679b864b882fdccaad6fdd6a5c86c83291b.zip
Merge pull request #2533 from edsantiago/bats
New system tests under BATS
Diffstat (limited to 'test/system/070-build.bats')
-rw-r--r--test/system/070-build.bats28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/system/070-build.bats b/test/system/070-build.bats
new file mode 100644
index 000000000..25eb36c58
--- /dev/null
+++ b/test/system/070-build.bats
@@ -0,0 +1,28 @@
+#!/usr/bin/env bats -*- bats -*-
+#
+# Tests for podman build
+#
+
+load helpers
+
+@test "podman build - basic test" {
+ 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