mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-22 17:35:55 +03:00
60f4592b2c
HTTP servers derive Last-Modified from the modification time of the file. When used in combination with a Cache-Control max-age value, having the modification times match means that caches will consider them expired at the same time. This helps make it more likely that clients won't receive a cached summary and fresh signature or vice versa. This makes more sense to do now that the summary and signature are created in a temporary directory and renamed into place. In the old days where they were created directly in the repo root, it would be strange to change the summary mtime when it wasn't actually modified.
135 lines
4.8 KiB
Bash
Executable File
135 lines
4.8 KiB
Bash
Executable File
#!/bin/bash
|
||
#
|
||
# Copyright © 2017 Endless Mobile, Inc.
|
||
#
|
||
# SPDX-License-Identifier: LGPL-2.0+
|
||
#
|
||
# This library is free software; you can redistribute it and/or
|
||
# modify it under the terms of the GNU Lesser General Public
|
||
# License as published by the Free Software Foundation; either
|
||
# version 2 of the License, or (at your option) any later version.
|
||
#
|
||
# This library is distributed in the hope that it will be useful,
|
||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
# Lesser General Public License for more details.
|
||
#
|
||
# You should have received a copy of the GNU Lesser General Public
|
||
# License along with this library. If not, see <https://www.gnu.org/licenses/>.
|
||
#
|
||
# Authors:
|
||
# - Philip Withnall <withnall@endlessm.com>
|
||
|
||
set -euo pipefail
|
||
|
||
. $(dirname $0)/libtest.sh
|
||
|
||
echo "1..2"
|
||
|
||
COMMIT_SIGN=""
|
||
if has_ostree_feature gpgme; then
|
||
COMMIT_SIGN="--gpg-homedir=${TEST_GPG_KEYHOME} --gpg-sign=${TEST_GPG_KEYID_1}"
|
||
fi
|
||
|
||
|
||
cd ${test_tmpdir}
|
||
mkdir repo
|
||
ostree_repo_init repo
|
||
|
||
mkdir -p tree/root
|
||
touch tree/root/a
|
||
|
||
# Add a few commits
|
||
seq 5 | while read i; do
|
||
echo a >> tree/root/a
|
||
${CMD_PREFIX} ostree --repo=repo commit --branch=test-$i -m test -s test tree
|
||
done
|
||
|
||
# Generate a plain summary file.
|
||
${CMD_PREFIX} ostree --repo=repo summary --update
|
||
|
||
# Generate a signed summary file.
|
||
${CMD_PREFIX} ostree --repo=repo summary --update ${COMMIT_SIGN}
|
||
|
||
# If the signature file was created, it should have the same
|
||
# modification time as the summary file.
|
||
if [ -n "${COMMIT_SIGN}" ]; then
|
||
stat -c '%y' repo/summary > summary-mtime
|
||
stat -c '%y' repo/summary.sig > summary.sig-mtime
|
||
assert_files_equal summary-mtime summary.sig-mtime
|
||
fi
|
||
|
||
# Try various ways of adding additional data.
|
||
${CMD_PREFIX} ostree --repo=repo summary --update --add-metadata key="'value'" --add-metadata=key2=true
|
||
${CMD_PREFIX} ostree --repo=repo summary --update -m some-int='@t 123'
|
||
${CMD_PREFIX} ostree --repo=repo summary --update --add-metadata=map='@a{sv} {}'
|
||
|
||
# Check the additional metadata turns up in the output.
|
||
${CMD_PREFIX} ostree --repo=repo summary --view > summary
|
||
assert_file_has_content summary "^map: {}$"
|
||
${CMD_PREFIX} ostree --repo=repo summary --list-metadata-keys > metadata
|
||
assert_file_has_content metadata "^map$"
|
||
${CMD_PREFIX} ostree --repo=repo summary --print-metadata-key=map > metadata
|
||
assert_file_has_content metadata "^@a{sv} {}$"
|
||
|
||
echo "ok 1 update summary"
|
||
|
||
# Test again, but with collections enabled in the repository.
|
||
cd ${test_tmpdir}
|
||
rm -rf repo
|
||
ostree_repo_init repo --collection-id org.example.Collection1
|
||
|
||
mkdir -p tree/root
|
||
touch tree/root/a
|
||
|
||
# Add a few commits
|
||
seq 5 | while read i; do
|
||
echo a >> tree/root/a
|
||
${CMD_PREFIX} ostree --repo=repo commit --branch=test-$i -m test -s test tree
|
||
${CMD_PREFIX} ostree --repo=repo refs --collections --create=org.example.Collection2:test-$i test-$i
|
||
done
|
||
|
||
# Generate a plain summary file.
|
||
${CMD_PREFIX} ostree --repo=repo summary --update
|
||
|
||
# Generate a signed summary file.
|
||
${CMD_PREFIX} ostree --repo=repo summary --update ${COMMIT_SIGN}
|
||
|
||
# If the signature file was created, it should have the same
|
||
# modification time as the summary file.
|
||
if [ -n "${COMMIT_SIGN}" ]; then
|
||
stat -c '%y' repo/summary > summary-mtime
|
||
stat -c '%y' repo/summary.sig > summary.sig-mtime
|
||
assert_files_equal summary-mtime summary.sig-mtime
|
||
fi
|
||
|
||
# Try various ways of adding additional data.
|
||
${CMD_PREFIX} ostree --repo=repo summary --update --add-metadata key="'value'" --add-metadata=key2=true
|
||
${CMD_PREFIX} ostree --repo=repo summary --update -m some-int='@t 123'
|
||
${CMD_PREFIX} ostree --repo=repo summary --update --add-metadata=map='@a{sv} {}'
|
||
|
||
# Check the additional metadata turns up in the output.
|
||
${CMD_PREFIX} ostree --repo=repo summary --view > summary
|
||
assert_file_has_content summary "^map: {}$"
|
||
|
||
# Check the ostree-metadata ref has also been created with the same content and appropriate bindings.
|
||
${CMD_PREFIX} ostree --repo=repo refs --collections > refs
|
||
assert_file_has_content refs "^(org\.example\.Collection1, ostree-metadata)$"
|
||
|
||
${CMD_PREFIX} ostree --repo=repo show ostree-metadata --raw > metadata
|
||
assert_file_has_content metadata "'map': <@a{sv} {}>"
|
||
assert_file_has_content metadata "'ostree\.ref-binding': <\['ostree-metadata'\]>"
|
||
assert_file_has_content metadata "'ostree\.collection-binding': <'org\.example\.Collection1'>"
|
||
|
||
# There should be 5 commits in the ostree-metadata branch, since we’ve updated the summary 5 times.
|
||
${CMD_PREFIX} ostree --repo=repo log ostree-metadata | grep 'commit ' | wc -l > commit-count
|
||
assert_file_has_content commit-count "^5$"
|
||
|
||
# The ostree-metadata commits should not contain any files
|
||
${CMD_PREFIX} ostree --repo=repo ls ostree-metadata > files
|
||
assert_file_has_content files " /$"
|
||
cat files | wc -l > files-count
|
||
assert_file_has_content files-count "^1$"
|
||
|
||
echo "ok 2 update summary with collections"
|