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
#
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
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
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-01-12 18:40:36 +03:00
echo "1..6"
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"