summaryrefslogtreecommitdiff
path: root/tests/test-pull-untrusted.sh
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2016-03-23 12:32:03 +0100
committerColin Walters (automation) <walters+githubbot@verbum.org>2016-03-25 12:56:55 +0000
commit456f515522b31bb59f03e2b30a2d86b0faa7d106 (patch)
tree3f9f19ba08969ea47136356004da83fb9026aa1c /tests/test-pull-untrusted.sh
parented1e0c6d04244847e489b1b2cb2a3e050fb3a80d (diff)
downloadostree-456f515522b31bb59f03e2b30a2d86b0faa7d106.tar.gz
Add --untrusted option to pull and pull-local
https://bugzilla.gnome.org/show_bug.cgi?id=764125 Closes: #221 Approved by: cgwalters
Diffstat (limited to 'tests/test-pull-untrusted.sh')
-rwxr-xr-xtests/test-pull-untrusted.sh63
1 files changed, 63 insertions, 0 deletions
diff --git a/tests/test-pull-untrusted.sh b/tests/test-pull-untrusted.sh
new file mode 100755
index 00000000..95f7ab93
--- /dev/null
+++ b/tests/test-pull-untrusted.sh
@@ -0,0 +1,63 @@
+#!/bin/bash
+#
+# Copyright (C) 2014 Alexander Larsson <alexl@redhat.com>
+#
+# 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
+
+. $(dirname $0)/libtest.sh
+
+echo '1..3'
+
+setup_test_repository "bare"
+
+cd ${test_tmpdir}
+mkdir repo2
+${CMD_PREFIX} ostree --repo=repo2 init --mode="bare"
+
+${CMD_PREFIX} ostree --repo=repo2 --untrusted pull-local repo
+
+find repo2 -type f -links +1 | while read line; do
+ assert_not_reached "pull-local created hardlinks"
+done
+echo "ok pull-local --untrusted didn't hardlink"
+
+# Corrupt repo
+for i in ${test_tmpdir}/repo/objects/*/*.file; do
+ echo "corrupting $i"
+ echo "broke" >> $i
+ break;
+done
+
+rm -rf repo2
+mkdir repo2
+${CMD_PREFIX} ostree --repo=repo2 init --mode="bare"
+if ${CMD_PREFIX} ostree --repo=repo2 pull-local repo; then
+ echo "ok trusted pull with corruption succeeded"
+else
+ assert_not_reached "corrupted trusted pull unexpectedly succeeded!"
+fi
+
+rm -rf repo2
+mkdir repo2
+${CMD_PREFIX} ostree --repo=repo2 init --mode="bare"
+if ${CMD_PREFIX} ostree --repo=repo2 pull-local --untrusted repo; then
+ assert_not_reached "corrupted untrusted pull unexpectedly failed!"
+else
+ echo "ok untrusted pull with corruption failed"
+fi