mirror of
https://github.com/containers/skopeo.git
synced 2026-02-21 14:42:42 +00:00
When saving the contents of a URL to a local file, attempt to set mtime based on the response's Last-Modified header, if there is one. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com> Closes: #58 Approved by: nalind
45 lines
1.0 KiB
Bash
45 lines
1.0 KiB
Bash
#!/bin/bash
|
|
|
|
BUILDAH_BINARY=${BUILDAH_BINARY:-$(dirname ${BASH_SOURCE})/../buildah}
|
|
TESTSDIR=${TESTSDIR:-$(dirname ${BASH_SOURCE})}
|
|
|
|
function setup() {
|
|
suffix=$(dd if=/dev/urandom bs=12 count=1 status=none | base64 | tr +/ _.)
|
|
TESTDIR=${BATS_TMPDIR}/tmp.${suffix}
|
|
rm -fr ${TESTDIR}
|
|
mkdir -p ${TESTDIR}/{root,runroot}
|
|
REPO=${TESTDIR}/root
|
|
}
|
|
|
|
function starthttpd() {
|
|
pushd ${2:-${BATS_TMPDIR}} > /dev/null
|
|
cp ${TESTSDIR}/serve.go .
|
|
go build serve.go
|
|
HTTP_SERVER_PORT=$((RANDOM+32768))
|
|
./serve ${HTTP_SERVER_PORT} ${1:-${BATS_TMPDIR}} &
|
|
HTTP_SERVER_PID=$!
|
|
popd > /dev/null
|
|
}
|
|
|
|
function stophttpd() {
|
|
if test -n "$HTTP_SERVER_PID" ; then
|
|
kill -HUP ${HTTP_SERVER_PID}
|
|
unset HTTP_SERVER_PID
|
|
unset HTTP_SERVER_PORT
|
|
fi
|
|
true
|
|
}
|
|
|
|
function teardown() {
|
|
stophttpd
|
|
rm -fr ${TESTDIR}
|
|
}
|
|
|
|
function createrandom() {
|
|
dd if=/dev/urandom bs=1 count=${2:-256} of=${1:-${BATS_TMPDIR}/randomfile} status=none
|
|
}
|
|
|
|
function buildah() {
|
|
${BUILDAH_BINARY} --debug --root ${TESTDIR}/root --runroot ${TESTDIR}/runroot --storage-driver vfs "$@"
|
|
}
|