b881f33ba7
This is an initial drop of support for: `rpm-ostree rebase rojig://fahc:fedora-atomic-host`. We also then support `rpm-ostree upgrade` from that. There's a lot that could be improved here; the test coverage is relatively minimal. A blocking issue there is having a realistic jigdo setup, and that's going to require changing how we do testing. For now, this means that if we want to e.g. change the format we'll have to temporarily disable this test, get the format change in, update FAHC, then re-enable the test. Closes: #1166 Approved by: jlebon
45 lines
1.5 KiB
Bash
Executable File
45 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (C) 2018 Red Hat, Inc.
|
|
#
|
|
# 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, write to the
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
set -euo pipefail
|
|
|
|
. ${commondir}/libtest.sh
|
|
. ${commondir}/libvm.sh
|
|
|
|
set -x
|
|
|
|
# Test rebasing to https://pagure.io/fedora-atomic-host-continuous
|
|
# in rojig:// mode.
|
|
|
|
vm_cmd 'cat >/etc/yum.repos.d/fahc.repo' <<EOF
|
|
[fahc]
|
|
baseurl=https://ci.centos.org/artifacts/sig-atomic/fahc/jigdo
|
|
gpgcheck=0
|
|
EOF
|
|
|
|
if vm_rpmostree rebase rojig://fahc:fedora-atomic-host 2>err.txt; then
|
|
fatal "Did rojig rebase without --experimental"
|
|
fi
|
|
assert_file_has_content_literal err.txt 'rojig:// refspec requires --experimental'
|
|
vm_rpmostree rebase --experimental rojig://fahc:fedora-atomic-host
|
|
vm_assert_status_jq '.deployments[0].origin|startswith("rojig://fahc:fedora-atomic-host")'
|
|
vm_cmd ostree refs > refs.txt
|
|
assert_file_has_content refs.txt '^rpmostree/pkg/kernel-core/'
|
|
echo "ok jigdo client"
|