tests: Add a payload link unit test
authorColin Walters <walters@verbum.org>
Mon, 29 Jul 2024 21:05:46 +0000 (17:05 -0400)
committerColin Walters <walters@verbum.org>
Mon, 29 Jul 2024 21:08:03 +0000 (17:08 -0400)
Motivated by changing this code.

Signed-off-by: Colin Walters <walters@verbum.org>
Makefile-tests.am
tests/test-payload-link.sh [new file with mode: 0755]

index d333b9a3c1b5bcadb01f105e2c806dc3bff61633..abf61af2d0e480ad35aa18198aa6799b72190306 100644 (file)
@@ -73,6 +73,7 @@ _installed_or_uninstalled_test_scripts = \
        tests/test-remote-headers.sh \
        tests/test-remote-refs.sh \
        tests/test-composefs.sh \
+       tests/test-payload-link.sh \
        tests/test-commit-sign.sh \
        tests/test-commit-timestamp.sh \
        tests/test-export.sh \
diff --git a/tests/test-payload-link.sh b/tests/test-payload-link.sh
new file mode 100755 (executable)
index 0000000..14b86a6
--- /dev/null
@@ -0,0 +1,46 @@
+#!/bin/bash
+#
+# Copyright (C) 2024 Red Hat, Inc.
+#
+# SPDX-License-Identifier: LGPL-2.0+
+#
+# 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, see <https://www.gnu.org/licenses/>.
+
+set -euox pipefail
+
+. $(dirname $0)/libtest.sh
+
+touch foo
+if ! cp --reflink=always foo bar &>/dev/null; then
+    skip "no reflinks"
+fi
+rm foo bar
+
+$CMD_PREFIX ostree --repo=repo init --mode=bare-user
+$CMD_PREFIX ostree config --repo=repo set core.payload-link-threshold 0
+
+mkdir d
+echo test > d/testcontent
+chmod 0644 d/testcontent
+$CMD_PREFIX ostree --repo=repo commit --tree=dir=d --consume -b testref
+mkdir d
+echo test > d/testcontent
+chmod 0755 d/testcontent
+$CMD_PREFIX ostree --repo=repo commit --tree=dir=d --consume -b testref
+find repo -type l -name '*.payload-link' >payload-links.txt
+assert_streq "$(wc -l < payload-links.txt)" "1"
+
+tap_ok payload-link
+
+tap_end