2011-11-01 04:24:38 +04:00
#!/bin/bash
#
2017-12-05 22:27:15 +03:00
# Copyright (C) 2011,2017 Colin Walters <walters@verbum.org>
2011-11-01 04:24:38 +04:00
#
2018-01-30 22:26:26 +03:00
# SPDX-License-Identifier: LGPL-2.0+
#
2011-11-10 22:17:04 +04:00
# 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.
2011-11-01 04:24:38 +04:00
#
2011-11-10 22:17:04 +04:00
# This library is distributed in the hope that it will be useful,
2011-11-01 04:24:38 +04:00
# but WITHOUT ANY WARRANTY; without even the implied warranty of
2011-11-10 22:17:04 +04:00
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
2011-11-01 04:24:38 +04:00
#
2011-11-10 22:17:04 +04:00
# You should have received a copy of the GNU Lesser General Public
2021-12-07 04:20:55 +03:00
# License along with this library. If not, see <https://www.gnu.org/licenses/>.
2011-11-01 04:24:38 +04:00
2016-01-27 19:44:10 +03:00
set -euo pipefail
2011-11-01 04:24:38 +04:00
2018-05-17 11:06:24 +03:00
echo "1..9"
2011-11-09 17:27:47 +04:00
2013-05-01 23:26:21 +04:00
. $( dirname $0 ) /libtest.sh
2011-11-01 04:24:38 +04:00
2017-05-08 23:59:14 +03:00
cd ${ test_tmpdir }
rm repo files -rf
2012-09-15 20:44:57 +04:00
setup_test_repository "bare"
2011-11-09 17:27:47 +04:00
$OSTREE checkout test2 checkout-test2
cd checkout-test2
chmod o+x firstfile
2017-12-06 04:55:13 +03:00
if $OSTREE fsck -q; then
fatal "fsck unexpectedly succeeded"
fi
2011-11-09 17:27:47 +04:00
chmod o-x firstfile
$OSTREE fsck -q
2011-11-01 04:24:38 +04:00
2011-11-09 17:27:47 +04:00
echo "ok chmod"
2013-07-18 20:09:44 +04:00
2017-12-05 22:27:15 +03:00
cd ${ test_tmpdir }
rm repo files -rf
setup_test_repository "bare"
rev = $( $OSTREE rev-parse test2)
echo -n > repo/objects/${ rev : 0 : 2 } /${ rev : 2 } .commit
if $OSTREE fsck -q 2>err.txt; then
fatal "fsck unexpectedly succeeded"
fi
assert_file_has_content_literal err.txt "Corrupted commit object; checksum expected"
echo "ok metadata checksum"
2013-07-18 20:09:44 +04:00
cd ${ test_tmpdir }
2017-05-08 23:59:14 +03:00
rm repo files -rf
setup_test_repository "bare"
2013-07-18 20:09:44 +04:00
rm checkout-test2 -rf
$OSTREE checkout test2 checkout-test2
cd checkout-test2
chmod o+x firstfile
2017-12-06 04:55:13 +03:00
if $OSTREE fsck -q --delete; then
fatal "fsck unexpectedly succeeded"
fi
2013-07-18 20:09:44 +04:00
echo "ok chmod"
2017-05-08 23:59:14 +03:00
cd ${ test_tmpdir }
rm repo files -rf
setup_test_repository "bare"
find repo/ -name '*.commit' -delete
if $OSTREE fsck -q 2>err.txt; then
assert_not_reached "fsck unexpectedly succeeded"
fi
assert_file_has_content_literal err.txt "Loading commit for ref test2: No such metadata object"
echo "ok missing commit"
2018-01-12 17:01:52 +03:00
cd ${ test_tmpdir }
tar xf ${ test_srcdir } /ostree-path-traverse.tar.gz
if ${ CMD_PREFIX } ostree --repo= ostree-path-traverse/repo fsck -q 2>err.txt; then
fatal "fsck unexpectedly succeeded"
fi
assert_file_has_content_literal err.txt '.dirtree: Invalid / in filename ../afile'
2018-01-12 18:40:36 +03:00
echo "ok path traverse fsck"
2018-01-12 17:01:52 +03:00
2018-01-12 18:40:36 +03:00
cd ${ test_tmpdir }
if ${ CMD_PREFIX } ostree --repo= ostree-path-traverse/repo checkout pathtraverse-test pathtraverse-test 2>err.txt; then
fatal "checkout with path traversal unexpectedly succeeded"
fi
assert_file_has_content_literal err.txt 'Invalid / in filename ../afile'
echo "ok path traverse checkout"
2018-04-06 16:39:43 +03:00
cd ${ test_tmpdir }
rm repo files -rf
setup_test_repository "bare"
rev = $( $OSTREE rev-parse test2)
filechecksum = $( ostree_file_path_to_checksum repo test2 /firstfile)
rm repo/$( ostree_checksum_to_relative_object_path repo $filechecksum )
assert_not_has_file repo/state/${ rev } .commitpartial
if $OSTREE fsck -q 2>err.txt; then
assert_not_reached "fsck unexpectedly succeeded"
fi
2018-05-17 11:05:49 +03:00
assert_file_has_content_literal err.txt "Object missing"
2018-04-18 21:36:19 +03:00
assert_file_has_content_literal err.txt " Marking commit as partial: $rev "
2018-04-06 16:39:43 +03:00
assert_has_file repo/state/${ rev } .commitpartial
echo "ok missing file"
cd ${ test_tmpdir }
rm repo files -rf
setup_test_repository "bare"
rev = $( $OSTREE rev-parse test2)
filechecksum = $( ostree_file_path_to_checksum repo test2 /firstfile)
echo corrupted >> repo/$( ostree_checksum_to_relative_object_path repo $filechecksum )
2018-05-17 11:06:24 +03:00
unset filechecksum
2018-04-06 16:39:43 +03:00
assert_not_has_file repo/state/${ rev } .commitpartial
if $OSTREE fsck -q --delete 2>err.txt; then
assert_not_reached "fsck unexpectedly succeeded"
fi
assert_file_has_content_literal err.txt "Corrupted file object;"
2018-04-18 21:36:19 +03:00
assert_file_has_content_literal err.txt " Marking commit as partial: $rev "
2018-04-06 16:39:43 +03:00
assert_has_file repo/state/${ rev } .commitpartial
echo "ok corrupt file"
2018-05-17 11:06:24 +03:00
cd ${ test_tmpdir }
rm repo files -rf
setup_test_repository "bare"
rev = $( $OSTREE rev-parse test2)
firstfilechecksum = $( ostree_file_path_to_checksum repo test2 /firstfile)
echo corrupted >> repo/$( ostree_checksum_to_relative_object_path repo $firstfilechecksum )
secondfilechecksum = $( ostree_file_path_to_checksum repo test2 /baz/cow)
echo corrupted >> repo/$( ostree_checksum_to_relative_object_path repo $secondfilechecksum )
assert_not_has_file repo/state/${ rev } .commitpartial
if $OSTREE fsck -a --delete 2>err.txt; then
assert_not_reached "fsck unexpectedly succeeded"
fi
assert_file_has_content err.txt " Corrupted file object.* ${ firstfilechecksum } "
assert_file_has_content err.txt " Corrupted file object.* ${ secondfilechecksum } "
assert_file_has_content_literal err.txt " Marking commit as partial: $rev "
assert_has_file repo/state/${ rev } .commitpartial
echo "ok fsck --all"