2014-02-21 03:25:56 +04:00
#!/bin/bash
#
# Copyright (C) 2014 Colin Walters <walters@verbum.org>
#
# 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.
2016-01-27 19:44:10 +03:00
set -euo pipefail
2014-02-21 03:25:56 +04:00
. $( dirname $0 ) /libtest.sh
2015-07-14 20:30:05 +03:00
# Exports OSTREE_SYSROOT so --sysroot not needed.
2014-02-21 03:25:56 +04:00
setup_os_repository "archive-z2" "syslinux"
echo "1..2"
2017-05-19 01:12:33 +03:00
ref = testos/buildmaster/x86_64-runtime
2014-02-21 03:25:56 +04:00
cd ${ test_tmpdir }
2015-03-03 15:13:54 +03:00
${ CMD_PREFIX } ostree --repo= sysroot/ostree/repo remote add --set= gpg-verify= false testos $( cat httpd-address) /ostree/testos-repo
2017-05-19 01:12:33 +03:00
${ CMD_PREFIX } ostree --repo= sysroot/ostree/repo pull testos ${ ref }
rev = $( ${ CMD_PREFIX } ostree --repo= sysroot/ostree/repo rev-parse ${ ref } )
2014-02-21 03:25:56 +04:00
export rev
echo " rev= ${ rev } "
2017-05-19 01:12:33 +03:00
# This initial deployment gets kicked off with some kernel arguments
${ CMD_PREFIX } ostree admin deploy --karg= root = LABEL = MOO --karg= quiet --os= testos testos:${ ref }
2014-02-21 03:25:56 +04:00
assert_has_dir sysroot/boot/ostree/testos-${ bootcsum }
# This should be a no-op
2015-07-14 20:30:05 +03:00
${ CMD_PREFIX } ostree admin upgrade --os= testos
2014-02-21 03:25:56 +04:00
2017-05-19 01:12:33 +03:00
# Generate a new commit with an older timestamp that also has
# some new content, so we test timestamp checking during pull
# <https://github.com/ostreedev/ostree/pull/1055>
origrev = $( ostree --repo= ${ test_tmpdir } /sysroot/ostree/repo rev-parse testos:${ ref } )
cd ${ test_tmpdir } /osdata
echo "new content for pull timestamp checking" > usr/share/test-pull-ts-check.txt
${ CMD_PREFIX } ostree --repo= ${ test_tmpdir } /testos-repo commit --add-metadata-string "version=tscheck" \
-b ${ ref } --timestamp= 'October 25 1985'
newrev = $( ostree --repo= ${ test_tmpdir } /testos-repo rev-parse ${ ref } )
assert_not_streq ${ origrev } ${ newrev }
cd ${ test_tmpdir }
tscheck_checksum = $( ostree_file_path_to_checksum testos-repo ${ ref } /usr/share/test-pull-ts-check.txt)
2017-08-21 22:00:49 +03:00
tscheck_filez_objpath = $( ostree_checksum_to_relative_object_path testos-repo ${ tscheck_checksum } )
assert_has_file testos-repo/${ tscheck_filez_objpath }
2015-07-14 20:30:05 +03:00
if ${ CMD_PREFIX } ostree admin upgrade --os= testos 2>upgrade-err.txt; then
2014-02-21 03:25:56 +04:00
assert_not_reached 'upgrade unexpectedly succeeded'
fi
assert_file_has_content upgrade-err.txt 'chronologically older'
2017-05-19 01:12:33 +03:00
currev = $( ostree --repo= sysroot/ostree/repo rev-parse testos:${ ref } )
assert_not_streq ${ newrev } ${ currev }
assert_streq ${ origrev } ${ currev }
2017-08-21 22:00:49 +03:00
tscheck_file_objpath = $( ostree_checksum_to_relative_object_path sysroot/ostree/repo ${ tscheck_checksum } )
assert_not_has_file sysroot/ostree/repo/${ tscheck_file_objpath }
2014-02-21 03:25:56 +04:00
echo 'ok upgrade will not go backwards'
2015-07-14 20:30:05 +03:00
${ CMD_PREFIX } ostree admin upgrade --os= testos --allow-downgrade
2014-02-21 03:25:56 +04:00
echo 'ok upgrade backwards'