From bc0d5b63f6c4762b7d39fb32b525f977015ff4b3 Mon Sep 17 00:00:00 2001 From: David Alexander Date: Fri, 11 Nov 2016 02:46:00 -0500 Subject: Run hooks in a defined order Run the hooks in alphabetical order so that people can more predictably manage their hooks. While here, clean up the NEWS.md.in. --- test/rcdn-hooks-run-in-order.t | 37 +++++++++++++++++++++++++++++++++++++ test/rcup-hooks-run-in-order.t | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 test/rcdn-hooks-run-in-order.t create mode 100644 test/rcup-hooks-run-in-order.t (limited to 'test') diff --git a/test/rcdn-hooks-run-in-order.t b/test/rcdn-hooks-run-in-order.t new file mode 100644 index 0000000..8dff253 --- /dev/null +++ b/test/rcdn-hooks-run-in-order.t @@ -0,0 +1,37 @@ + $ . "$TESTDIR/helper.sh" + +Pre-down and post-down hooks should run in order according to their name + + $ mkdir -p .dotfiles/hooks/pre-down .dotfiles/hooks/post-down + > printf "#!/bin/sh\necho '1'\n" > .dotfiles/hooks/pre-down/00-test.sh + > printf "#!/bin/sh\necho '2'\n" > .dotfiles/hooks/pre-down/01-test.sh + > printf "#!/bin/sh\necho '3'\n" > .dotfiles/hooks/pre-down/02-test.sh + > printf "#!/bin/sh\necho '4'\n" > .dotfiles/hooks/post-down/00-test.sh + > printf "#!/bin/sh\necho '5'\n" > .dotfiles/hooks/post-down/01-test.sh + > printf "#!/bin/sh\necho '6'\n" > .dotfiles/hooks/post-down/02-test.sh + + $ chmod +x .dotfiles/hooks/pre-down/00-test.sh + > chmod +x .dotfiles/hooks/pre-down/01-test.sh + > chmod +x .dotfiles/hooks/pre-down/02-test.sh + > chmod +x .dotfiles/hooks/post-down/00-test.sh + > chmod +x .dotfiles/hooks/post-down/01-test.sh + > chmod +x .dotfiles/hooks/post-down/02-test.sh + + $ rcdn + 1 + 2 + 3 + 4 + 5 + 6 + + +Ensure that hooks run when output of lsrc is non-empty + $ touch .dotfiles/testrc + > rcdn + 1 + 2 + 3 + 4 + 5 + 6 diff --git a/test/rcup-hooks-run-in-order.t b/test/rcup-hooks-run-in-order.t new file mode 100644 index 0000000..cc5b402 --- /dev/null +++ b/test/rcup-hooks-run-in-order.t @@ -0,0 +1,37 @@ + $ . "$TESTDIR/helper.sh" + +Pre-up hooks should run in order according to their name + + $ mkdir -p .dotfiles/hooks/pre-up .dotfiles/hooks/post-up + > printf "#!/bin/sh\necho '1'\n" > .dotfiles/hooks/pre-up/00-test.sh + > printf "#!/bin/sh\necho '2'\n" > .dotfiles/hooks/pre-up/01-test.sh + > printf "#!/bin/sh\necho '3'\n" > .dotfiles/hooks/pre-up/02-test.sh + > printf "#!/bin/sh\necho '4'\n" > .dotfiles/hooks/post-up/00-test.sh + > printf "#!/bin/sh\necho '5'\n" > .dotfiles/hooks/post-up/01-test.sh + > printf "#!/bin/sh\necho '6'\n" > .dotfiles/hooks/post-up/02-test.sh + + $ chmod +x .dotfiles/hooks/pre-up/00-test.sh + > chmod +x .dotfiles/hooks/pre-up/01-test.sh + > chmod +x .dotfiles/hooks/pre-up/02-test.sh + > chmod +x .dotfiles/hooks/post-up/00-test.sh + > chmod +x .dotfiles/hooks/post-up/01-test.sh + > chmod +x .dotfiles/hooks/post-up/02-test.sh + + $ rcup + 1 + 2 + 3 + 4 + 5 + 6 + + +Ensure that hooks run when output of lsrc is non-empty + $ touch .dotfiles/testrc + > rcup + 1 + 2 + 3 + 4 + 5 + 6 -- cgit v1.2.3