2024-05-03 17:13:38 +02:00
|
|
|
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
tmpdir=$(mktemp -d)
|
|
|
|
trap 'rm -rf ${tmpdir}' EXIT
|
|
|
|
|
|
|
|
script="$(realpath "$(dirname $0)")/docker_label_helper"
|
|
|
|
|
|
|
|
cd $tmpdir
|
|
|
|
|
|
|
|
# Test old syntax
|
|
|
|
cat >Dockerfile <<EOF
|
|
|
|
# labelprefix=org.opensuse.nano
|
|
|
|
PREFIXEDLABEL org.opencontainers.image.title="Example container."
|
|
|
|
PREFIXEDLABEL org.opencontainers.image.description="This contains nano"
|
|
|
|
PREFIXEDLABEL org.opencontainers.image.source="https://build.opensuse.org/package/show/openSUSE:Factory/opensuse-tumbleweed-image?rev=1afbea7e9b8ecf976071564312c2db66"
|
|
|
|
PREFIXEDLABEL test.whitespace="Two spaces. One tab."
|
|
|
|
EOF
|
|
|
|
|
|
|
|
export BUILD_DIST=
|
|
|
|
sh "${script}"
|
|
|
|
|
|
|
|
diff -u Dockerfile - <<EOF
|
|
|
|
LABEL org.opensuse.nano.title="Example container."
|
|
|
|
LABEL org.opencontainers.image.title="Example container."
|
|
|
|
LABEL org.opensuse.nano.description="This contains nano"
|
|
|
|
LABEL org.opencontainers.image.description="This contains nano"
|
|
|
|
LABEL org.opensuse.nano.source="https://build.opensuse.org/package/show/openSUSE:Factory/opensuse-tumbleweed-image?rev=1afbea7e9b8ecf976071564312c2db66"
|
|
|
|
LABEL org.opencontainers.image.source="https://build.opensuse.org/package/show/openSUSE:Factory/opensuse-tumbleweed-image?rev=1afbea7e9b8ecf976071564312c2db66"
|
|
|
|
LABEL org.opensuse.nano.whitespace="Two spaces. One tab."
|
|
|
|
LABEL test.whitespace="Two spaces. One tab."
|
|
|
|
EOF
|
|
|
|
|
|
|
|
rm -f Dockerfile
|
|
|
|
|
|
|
|
# Test new syntax
|
|
|
|
cat >Dockerfile <<EOF
|
|
|
|
# labelprefix=org.opensuse.nano
|
|
|
|
LABEL org.opencontainers.image.title="Example container."
|
|
|
|
LABEL org.opencontainers.image.description="This contains nano"
|
|
|
|
LABEL org.opencontainers.image.source="https://build.opensuse.org/package/show/openSUSE:Factory/opensuse-tumbleweed-image?rev=1afbea7e9b8ecf976071564312c2db66"
|
|
|
|
LABEL test.whitespace="Two spaces. One tab."
|
|
|
|
# endlabelprefix
|
|
|
|
LABEL not.expanded.label="example"
|
|
|
|
EOF
|
|
|
|
|
|
|
|
export BUILD_DIST=
|
|
|
|
sh "${script}"
|
|
|
|
|
|
|
|
diff -u Dockerfile - <<EOF
|
|
|
|
LABEL org.opensuse.nano.title="Example container."
|
|
|
|
LABEL org.opencontainers.image.title="Example container."
|
|
|
|
LABEL org.opensuse.nano.description="This contains nano"
|
|
|
|
LABEL org.opencontainers.image.description="This contains nano"
|
|
|
|
LABEL org.opensuse.nano.source="https://build.opensuse.org/package/show/openSUSE:Factory/opensuse-tumbleweed-image?rev=1afbea7e9b8ecf976071564312c2db66"
|
|
|
|
LABEL org.opencontainers.image.source="https://build.opensuse.org/package/show/openSUSE:Factory/opensuse-tumbleweed-image?rev=1afbea7e9b8ecf976071564312c2db66"
|
|
|
|
LABEL org.opensuse.nano.whitespace="Two spaces. One tab."
|
|
|
|
LABEL test.whitespace="Two spaces. One tab."
|
|
|
|
LABEL not.expanded.label="example"
|
|
|
|
EOF
|
2024-10-03 17:41:02 +02:00
|
|
|
|
|
|
|
# Test _multibuild
|
|
|
|
cat >Dockerfile.FLAVOR <<EOF
|
|
|
|
# labelprefix=org.opensuse.nano
|
|
|
|
LABEL org.opencontainers.image.title="Example container."
|
|
|
|
# endlabelprefix
|
|
|
|
EOF
|
|
|
|
|
|
|
|
export BUILD_DIST="$tmpdir/test_multibuild/.build/build.dist"
|
|
|
|
mkdir -p "$tmpdir/test_multibuild/.build"
|
|
|
|
cat >"$tmpdir/test_multibuild/.build/build.data" <<EOF
|
|
|
|
RECIPEFILE=_service:obs_scm:Dockerfile.FLAVOR
|
|
|
|
EOF
|
|
|
|
sh "${script}"
|
|
|
|
|
|
|
|
diff -u Dockerfile.FLAVOR - <<EOF
|
|
|
|
LABEL org.opensuse.nano.title="Example container."
|
|
|
|
LABEL org.opencontainers.image.title="Example container."
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# Test _multibuild when not a Dockerfile.*
|
|
|
|
cat >NotADockerfile <<EOF
|
|
|
|
# labelprefix=org.opensuse.nano
|
|
|
|
LABEL org.opencontainers.image.title="Example container."
|
|
|
|
# endlabelprefix
|
|
|
|
EOF
|
|
|
|
|
|
|
|
export BUILD_DIST="$tmpdir/test_multibuild/.build/build.dist"
|
|
|
|
mkdir -p "$tmpdir/test_multibuild/.build"
|
|
|
|
cat >"$tmpdir/test_multibuild/.build/build.data" <<EOF
|
|
|
|
RECIPEFILE=_service:obs_scm:NotADockerfile
|
|
|
|
EOF
|
|
|
|
sh "${script}"
|
|
|
|
|
|
|
|
diff -u NotADockerfile - <<EOF
|
|
|
|
# labelprefix=org.opensuse.nano
|
|
|
|
LABEL org.opencontainers.image.title="Example container."
|
|
|
|
# endlabelprefix
|
|
|
|
EOF
|