tests: add 'test_bool_env' to catch non-bool GIT_TEST_* values
commit43a2afee82acd0c51609a7840ca71ac5291020b4
authorSZEDER Gábor <szeder.dev@gmail.com>
Fri, 22 Nov 2019 13:14:36 +0000 (22 14:14 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sat, 23 Nov 2019 02:16:08 +0000 (23 11:16 +0900)
tree64ef867b7c9e7659df23adb08cdf0fb2af832cf5
parentd9f6f3b6195a0ca35642561e530798ad1469bd41
tests: add 'test_bool_env' to catch non-bool GIT_TEST_* values

Since 3b072c577b (tests: replace test_tristate with "git env--helper",
2019-06-21) we get the normalized bool values of various GIT_TEST_*
environment variables via 'git env--helper'.  Now, while the 'git
env--helper' command itself does catch invalid values in the
environment variable or in the given --default and exits with error
(exit code 128 or 129, respectively), it's invoked in conditions like
'if ! git env--helper ...', which means that all invalid bool values
are interpreted the same as the ordinary 'false' (exit code 1).  This
has led to inadvertently skipped httpd tests in our CI builds for a
couple of weeks, see 3960290675 (ci: restore running httpd tests,
2019-09-06).

Let's be more careful about what the test suite accepts as bool values
in GIT_TEST_* environment variables, and error out loud and clear on
invalid values instead of simply skipping tests.  Add the
'test_bool_env' helper function to encapsulate the invocation of 'git
env--helper' and the verification of its exit code, and replace all
invocations of that command in our test framework and test suite with
a call to this new helper (except in 't0017-env-helper.sh', of
course).

  $ GIT_TEST_GIT_DAEMON=YesPlease ./t5570-git-daemon.sh
  fatal: bad numeric config value 'YesPlease' for 'GIT_TEST_GIT_DAEMON': invalid unit
  error: test_bool_env requires bool values both for $GIT_TEST_GIT_DAEMON and for the default fallback

Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/README
t/lib-git-daemon.sh
t/lib-git-svn.sh
t/lib-httpd.sh
t/t0000-basic.sh
t/t5512-ls-remote.sh
t/test-lib-functions.sh
t/test-lib.sh