mirror of
https://github.com/flatpak/flatpak.git
synced 2026-03-29 04:14:23 -04:00
Meson's TAP parser won't accept this, unlike Automake's. At the moment libtest.sh directs stderr to stdout anyway, so there is no practical effect for this change, but a subsequent commit will remove that merging. Signed-off-by: Simon McVittie <smcv@collabora.com>
36 lines
1.0 KiB
Bash
Executable File
36 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (C) 2021 Matthew Leeds <mwleeds@protonmail.com>
|
|
#
|
|
# SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
set -euo pipefail
|
|
|
|
. $(dirname $0)/libtest.sh
|
|
|
|
echo "1..1"
|
|
|
|
setup_repo
|
|
${FLATPAK} ${U} install -y test-repo org.test.Hello >&2
|
|
|
|
# delete the object for files/bin/hello.sh
|
|
rm ${FL_DIR}/repo/objects/0d/30582c0ac8a2f89f23c0f62e548ba7853f5285d21848dd503460a567b5d253.file
|
|
|
|
# dry run repair shouldn't replace the missing file
|
|
${FLATPAK} ${U} repair --dry-run >&2
|
|
assert_not_has_file ${FL_DIR}/repo/objects/0d/30582c0ac8a2f89f23c0f62e548ba7853f5285d21848dd503460a567b5d253.file
|
|
|
|
# normal repair should replace the missing file
|
|
${FLATPAK} ${U} repair >&2
|
|
assert_has_file ${FL_DIR}/repo/objects/0d/30582c0ac8a2f89f23c0f62e548ba7853f5285d21848dd503460a567b5d253.file
|
|
|
|
# app should've been reinstalled
|
|
${FLATPAK} ${U} list -d > list-log
|
|
assert_file_has_content list-log "org\.test\.Hello/"
|
|
|
|
# clean up
|
|
${FLATPAK} ${U} uninstall -y org.test.Platform org.test.Hello >&2
|
|
${FLATPAK} ${U} remote-delete test-repo >&2
|
|
|
|
ok "repair command handles missing files"
|