mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-22 17:35:55 +03:00
d25212f04a
OSTree's code for testing predates the `glib-tap.mk` making its way into GLib. Let's switch to it, as it provides a number of advantages. By far the biggest advantage is that `make check` can start to run most of the tests *in addition* to having them work installed. This commit keeps the installed tests working, but `make check` turns out to be really broken because...our TAP usage has bitrotted to say the least. Fix that all up. Do some hacks so that the tests work uninstalled as well - in particular, `glib-tap.mk` and the bits encoded into `g_test_build_filename()` assume *recursive* Automake (blah). Work around that by creating a symlink when installed to loop back.
118 lines
3.4 KiB
Bash
Executable File
118 lines
3.4 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (C) 2011 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.
|
|
|
|
set -euo pipefail
|
|
|
|
if ! ostree --version | grep -q -e '\+libarchive'; then
|
|
echo "1..0 #SKIP no libarchive support compiled in"
|
|
exit 0
|
|
fi
|
|
|
|
. $(dirname $0)/libtest.sh
|
|
|
|
echo "1..7"
|
|
|
|
setup_test_repository "bare"
|
|
cd ${test_tmpdir}
|
|
mkdir foo
|
|
cd foo
|
|
echo hi > hi
|
|
ln -s hi hello
|
|
mkdir subdir
|
|
echo contents > subdir/more
|
|
mkdir subdir/1
|
|
touch subdir/1/empty
|
|
mkdir subdir/2
|
|
touch subdir/2/empty
|
|
echo not > subdir/2/notempty
|
|
|
|
tar -c -z -f ../foo.tar.gz .
|
|
cd ..
|
|
$OSTREE commit -s "from tar" -b test-tar --tree=tar=foo.tar.gz
|
|
echo "ok tar commit"
|
|
|
|
cd ${test_tmpdir}
|
|
$OSTREE checkout test-tar test-tar-checkout
|
|
cd test-tar-checkout
|
|
assert_file_has_content hi hi
|
|
assert_file_has_content hello hi
|
|
assert_file_has_content subdir/more contents
|
|
assert_has_file subdir/1/empty
|
|
assert_has_file subdir/2/empty
|
|
cd ${test_tmpdir}
|
|
rm -rf test-tar-checkout
|
|
echo "ok tar contents"
|
|
|
|
cd ${test_tmpdir}
|
|
mkdir hardlinktest
|
|
cd hardlinktest
|
|
echo other > otherfile
|
|
echo foo1 > foo
|
|
ln foo bar
|
|
tar czf ${test_tmpdir}/hardlinktest.tar.gz .
|
|
cd ${test_tmpdir}
|
|
$OSTREE commit -s 'hardlinks' -b test-hardlinks --tree=tar=hardlinktest.tar.gz
|
|
rm -rf hardlinktest
|
|
echo "ok hardlink commit"
|
|
|
|
cd ${test_tmpdir}
|
|
$OSTREE checkout test-hardlinks test-hardlinks-checkout
|
|
cd test-hardlinks-checkout
|
|
assert_file_has_content foo foo1
|
|
assert_file_has_content bar foo1
|
|
echo "ok hardlink contents"
|
|
|
|
cd ${test_tmpdir}
|
|
mkdir multicommit-files
|
|
cd multicommit-files
|
|
mkdir -p files1/subdir files2/subdir
|
|
echo "to be overwritten file" > files1/testfile
|
|
echo "not overwritten" > files1/otherfile
|
|
echo "overwriting file" > files2/testfile
|
|
ln -s "to-be-overwritten-symlink" files1/testsymlink
|
|
ln -s "overwriting-symlink" files2/testsymlink
|
|
ln -s "not overwriting symlink" files2/ohersymlink
|
|
echo "original" > files1/subdir/original
|
|
echo "new" > files2/subdir/new
|
|
|
|
tar -c -C files1 -z -f files1.tar.gz .
|
|
tar -c -C files2 -z -f files2.tar.gz .
|
|
|
|
$OSTREE commit -s 'multi tar' -b multicommit --tree=tar=files1.tar.gz --tree=tar=files2.tar.gz
|
|
echo "ok tar multicommit"
|
|
|
|
cd ${test_tmpdir}
|
|
$OSTREE checkout multicommit multicommit-checkout
|
|
cd multicommit-checkout
|
|
assert_file_has_content testfile "overwriting file"
|
|
assert_file_has_content otherfile "not overwritten"
|
|
assert_file_has_content subdir/original "original"
|
|
assert_file_has_content subdir/new "new"
|
|
echo "ok tar multicommit contents"
|
|
|
|
cd ${test_tmpdir}/multicommit-files
|
|
tar -c -C files1 -z -f partial.tar.gz subdir/original
|
|
$OSTREE commit -s 'partial' -b partial --tar-autocreate-parents --tree=tar=partial.tar.gz
|
|
echo "ok tar partial commit"
|
|
|
|
cd ${test_tmpdir}
|
|
$OSTREE checkout partial partial-checkout
|
|
cd partial-checkout
|
|
assert_file_has_content subdir/original "original"
|