Blame tests/test-summary-collections.sh

rpm-build 0fba15
#!/bin/bash
rpm-build 0fba15
#
rpm-build 0fba15
# Copyright © 2016 Red Hat, Inc.
rpm-build 0fba15
# Copyright © 2017 Endless Mobile, Inc.
rpm-build 0fba15
#
rpm-build 0fba15
# SPDX-License-Identifier: LGPL-2.0+
rpm-build 0fba15
#
rpm-build 0fba15
# This library is free software; you can redistribute it and/or
rpm-build 0fba15
# modify it under the terms of the GNU Lesser General Public
rpm-build 0fba15
# License as published by the Free Software Foundation; either
rpm-build 0fba15
# version 2 of the License, or (at your option) any later version.
rpm-build 0fba15
#
rpm-build 0fba15
# This library is distributed in the hope that it will be useful,
rpm-build 0fba15
# but WITHOUT ANY WARRANTY; without even the implied warranty of
rpm-build 0fba15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
rpm-build 0fba15
# Lesser General Public License for more details.
rpm-build 0fba15
#
rpm-build 0fba15
# You should have received a copy of the GNU Lesser General Public
rpm-build 0fba15
# License along with this library; if not, write to the
rpm-build 0fba15
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
rpm-build 0fba15
# Boston, MA 02111-1307, USA.
rpm-build 0fba15
rpm-build 0fba15
set -euo pipefail
rpm-build 0fba15
rpm-build 0fba15
. $(dirname $0)/libtest.sh
rpm-build 0fba15
rpm-build 0fba15
echo '1..1'
rpm-build 0fba15
rpm-build 0fba15
cd ${test_tmpdir}
rpm-build 0fba15
mkdir repo
rpm-build 0fba15
ostree_repo_init repo --collection-id org.example.Collection
rpm-build 0fba15
rpm-build 0fba15
mkdir -p tree/root
rpm-build 0fba15
touch tree/root/a
rpm-build 0fba15
rpm-build 0fba15
# Add a few commits
rpm-build 0fba15
seq 5 | while read i; do
rpm-build 0fba15
    echo a >> tree/root/a
rpm-build 0fba15
    ${CMD_PREFIX} ostree --repo=repo commit --branch=test-$i -m test -s test tree
rpm-build 0fba15
done
rpm-build 0fba15
rpm-build 0fba15
# Check that they are all listed, with the repository’s collection ID, in the summary.
rpm-build 0fba15
${CMD_PREFIX} ostree --repo=repo summary --update
rpm-build 0fba15
rpm-build 0fba15
${CMD_PREFIX} ostree --repo=repo summary --view > summary
rpm-build 0fba15
assert_file_has_content summary "(org\.example\.Collection, test-1)$"
rpm-build 0fba15
assert_file_has_content summary "(org\.example\.Collection, test-2)$"
rpm-build 0fba15
assert_file_has_content summary "(org\.example\.Collection, test-3)$"
rpm-build 0fba15
assert_file_has_content summary "(org\.example\.Collection, test-4)$"
rpm-build 0fba15
assert_file_has_content summary "(org\.example\.Collection, test-5)$"
rpm-build 0fba15
assert_file_has_content summary "^Collection ID (ostree\.summary\.collection-id): org\.example\.Collection$"
rpm-build 0fba15
rpm-build 0fba15
# Test that mirrored branches are listed too.
rpm-build 0fba15
${CMD_PREFIX} ostree --repo=repo refs --collections --create=org.example.OtherCollection:test-1-mirror test-1
rpm-build 0fba15
${CMD_PREFIX} ostree --repo=repo summary --update
rpm-build 0fba15
rpm-build 0fba15
${CMD_PREFIX} ostree --repo=repo summary --view > summary
rpm-build 0fba15
assert_file_has_content summary "(org\.example\.OtherCollection, test-1-mirror)$"
rpm-build 0fba15
rpm-build 0fba15
# Test that remote refs are listed, but only if they have collection IDs
rpm-build 0fba15
cd ${test_tmpdir}
rpm-build 0fba15
mkdir collection-repo
rpm-build 0fba15
ostree_repo_init collection-repo --collection-id org.example.RemoteCollection
rpm-build 0fba15
mkdir -p adir
rpm-build 0fba15
${CMD_PREFIX} ostree --repo=collection-repo commit --branch=rcommit -m rcommit -s rcommit adir
rpm-build 0fba15
${CMD_PREFIX} ostree --repo=repo remote add --no-sign-verify --collection-id org.example.RemoteCollection collection-repo-remote "file://${test_tmpdir}/collection-repo"
rpm-build 0fba15
${CMD_PREFIX} ostree --repo=repo pull collection-repo-remote rcommit
rpm-build 0fba15
${CMD_PREFIX} ostree --repo=repo summary --update
rpm-build 0fba15
rpm-build 0fba15
${CMD_PREFIX} ostree --repo=repo summary --view > summary
rpm-build 0fba15
assert_file_has_content summary "(org\.example\.RemoteCollection, rcommit)$"
rpm-build 0fba15
rpm-build 0fba15
cd ${test_tmpdir}
rpm-build 0fba15
mkdir no-collection-repo
rpm-build 0fba15
ostree_repo_init no-collection-repo
rpm-build 0fba15
mkdir -p adir2
rpm-build 0fba15
${CMD_PREFIX} ostree --repo=no-collection-repo commit --branch=rcommit2 -m rcommit2 -s rcommit2 adir2
rpm-build 0fba15
${CMD_PREFIX} ostree --repo=repo remote add --no-sign-verify no-collection-repo-remote "file://${test_tmpdir}/no-collection-repo"
rpm-build 0fba15
${CMD_PREFIX} ostree --repo=repo pull no-collection-repo-remote rcommit2
rpm-build 0fba15
${CMD_PREFIX} ostree --repo=repo summary --update
rpm-build 0fba15
rpm-build 0fba15
${CMD_PREFIX} ostree --repo=repo summary --view > summary
rpm-build 0fba15
assert_not_file_has_content summary "rcommit2"
rpm-build 0fba15
rpm-build 0fba15
echo "ok summary collections"