diff options
Diffstat (limited to 't/recipes/checks/files/symbolic-links/cruft-unsafe-symlinks')
4 files changed, 21 insertions, 0 deletions
diff --git a/t/recipes/checks/files/symbolic-links/cruft-unsafe-symlinks/build-spec/fill-values b/t/recipes/checks/files/symbolic-links/cruft-unsafe-symlinks/build-spec/fill-values new file mode 100644 index 0000000..9fe30a6 --- /dev/null +++ b/t/recipes/checks/files/symbolic-links/cruft-unsafe-symlinks/build-spec/fill-values @@ -0,0 +1,3 @@ +Skeleton: upload-native +Testname: cruft-unsafe-symlinks +Description: General tests of unsafe symlinks diff --git a/t/recipes/checks/files/symbolic-links/cruft-unsafe-symlinks/build-spec/pre-build b/t/recipes/checks/files/symbolic-links/cruft-unsafe-symlinks/build-spec/pre-build new file mode 100755 index 0000000..dfc51e8 --- /dev/null +++ b/t/recipes/checks/files/symbolic-links/cruft-unsafe-symlinks/build-spec/pre-build @@ -0,0 +1,12 @@ +#!/bin/sh +SOURCE_ROOT="$1" +LINK_TARGET=non-existent/path/lintian-should-not-open + + +mkdir -p "$SOURCE_ROOT/bad-symlinks" "$SOURCE_ROOT/tests/" +ln -s "../../$LINK_TARGET" "$SOURCE_ROOT/bad-symlinks/relative-escape" +ln -s "/../../$LINK_TARGET" "$SOURCE_ROOT/bad-symlinks/absolute-escape" + +# Lintian no longer ignores these +ln -s "../../$LINK_TARGET" "$SOURCE_ROOT/tests/relative-escape-from-tests" +ln -s "/../../$LINK_TARGET" "$SOURCE_ROOT/tests/absolute-escape-from-tests" diff --git a/t/recipes/checks/files/symbolic-links/cruft-unsafe-symlinks/eval/desc b/t/recipes/checks/files/symbolic-links/cruft-unsafe-symlinks/eval/desc new file mode 100644 index 0000000..f5fb8b5 --- /dev/null +++ b/t/recipes/checks/files/symbolic-links/cruft-unsafe-symlinks/eval/desc @@ -0,0 +1,2 @@ +Testname: cruft-unsafe-symlinks +Check: files/symbolic-links diff --git a/t/recipes/checks/files/symbolic-links/cruft-unsafe-symlinks/eval/hints b/t/recipes/checks/files/symbolic-links/cruft-unsafe-symlinks/eval/hints new file mode 100644 index 0000000..21c0606 --- /dev/null +++ b/t/recipes/checks/files/symbolic-links/cruft-unsafe-symlinks/eval/hints @@ -0,0 +1,4 @@ +cruft-unsafe-symlinks (source): wayward-symbolic-link-target-in-source ../../non-existent/path/lintian-should-not-open [tests/relative-escape-from-tests] +cruft-unsafe-symlinks (source): wayward-symbolic-link-target-in-source ../../non-existent/path/lintian-should-not-open [bad-symlinks/relative-escape] +cruft-unsafe-symlinks (source): absolute-symbolic-link-target-in-source /../../non-existent/path/lintian-should-not-open [tests/absolute-escape-from-tests] +cruft-unsafe-symlinks (source): absolute-symbolic-link-target-in-source /../../non-existent/path/lintian-should-not-open [bad-symlinks/absolute-escape] |