# Source library for shell script tests # # Copyright (C) 2011 Colin Walters # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program 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 General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # Author: Colin Walters cd `dirname $0` SRCDIR=`pwd` cd - TMPDIR=${TMPDIR:-/tmp} export TMPDIR test_tmpdir=`mktemp -d "$TMPDIR/ostree-tests.XXXXXXXXXX"` cd "$test_tmpdir" touch "$test_tmpdir/.test$$" die () { if test -z "$OT_TESTS_SAVE_TEMPS"; then test -f "$test_tmpdir/.test$$" && rm -rf "$test_tmpdir" else echo "Temporary files saved in $test_tmpdir" fi } assert_streq () { test "$1" = "$2" || (echo "$1 != $2"; exit 1) } assert_has_file () { test -f "$1" || (echo "Couldn't find '$1'"; exit 1) } assert_not_has_file () { if test -f "$1"; then echo "File '$1' exists"; exit 1 fi } assert_file_has_content () { if ! grep -q "$2" "$1"; then echo "File '$1' doesn't match regexp '$2'"; exit 1 fi } setup_test_repository () { mode=$1 shift oldpwd=`pwd` mkdir files cd files ot_files=`pwd` export ht_files ln -s nosuchfile somelink echo first > firstfile mkdir baz echo moo > baz/cow echo alien > baz/saucer mkdir baz/deeper echo hi > baz/deeper/ohyeah ln -s nonexistent baz/alink mkdir baz/another/ echo x > baz/another/y cd ${test_tmpdir} mkdir repo cd repo ot_repo="--repo=`pwd`" cd ../files export ot_repo if test "$mode" = "archive"; then ostree init --archive $ot_repo else ostree init $ot_repo fi ostree commit $ot_repo -b test2 -s "Test Commit 1" -m "Commit body first" --add=firstfile --add=somelink ostree commit $ot_repo -b test2 -s "Test Commit 2" -m "Commit body second" --add=baz/cow --add=baz/saucer --add=baz/deeper/ohyeah --add=baz/another/y --add=baz/alink ostree fsck -q $ot_repo cd $oldpwd } setup_fake_remote_repo1() { oldpwd=`pwd` mkdir ostree-srv cd ostree-srv mkdir gnomerepo ostree init --archive --repo=gnomerepo mkdir gnomerepo-files cd gnomerepo-files echo first > firstfile mkdir baz echo moo > baz/cow echo alien > baz/saucer find | grep -v '^\.$' | ostree commit --repo=${test_tmpdir}/ostree-srv/gnomerepo -b main -s "A remote commit" -m "Some Commit body" --from-stdin mkdir baz/deeper ostree commit --repo=${test_tmpdir}/ostree-srv/gnomerepo -b main -s "Add deeper" --add=baz/deeper echo hi > baz/deeper/ohyeah mkdir baz/another/ echo x > baz/another/y find | grep -v '^\.$' | ostree commit --repo=${test_tmpdir}/ostree-srv/gnomerepo -b main -s "The rest" --from-stdin cd .. rm -rf gnomerepo-files cd ${test_tmpdir} mkdir ${test_tmpdir}/httpd cd httpd cat >httpd.conf <