Merge branch 'ab/plug-random-leaks'
[git/debian.git] / t / t0007-git-var.sh
blob53af92d571a92b2dccd37300e71ea030dde947c8
1 #!/bin/sh
3 test_description='basic sanity checks for git var'
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
8 test_expect_success 'get GIT_AUTHOR_IDENT' '
9 test_tick &&
10 echo "$GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL> $GIT_AUTHOR_DATE" >expect &&
11 git var GIT_AUTHOR_IDENT >actual &&
12 test_cmp expect actual
15 test_expect_success 'get GIT_COMMITTER_IDENT' '
16 test_tick &&
17 echo "$GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE" >expect &&
18 git var GIT_COMMITTER_IDENT >actual &&
19 test_cmp expect actual
22 test_expect_success !FAIL_PREREQS,!AUTOIDENT 'requested identities are strict' '
24 sane_unset GIT_COMMITTER_NAME &&
25 sane_unset GIT_COMMITTER_EMAIL &&
26 test_must_fail git var GIT_COMMITTER_IDENT
30 # For git var -l, we check only a representative variable;
31 # testing the whole output would make our test too brittle with
32 # respect to unrelated changes in the test suite's environment.
33 test_expect_success 'git var -l lists variables' '
34 git var -l >actual &&
35 echo "$GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL> $GIT_AUTHOR_DATE" >expect &&
36 sed -n s/GIT_AUTHOR_IDENT=//p <actual >actual.author &&
37 test_cmp expect actual.author
40 test_expect_success 'git var -l lists config' '
41 git var -l >actual &&
42 echo false >expect &&
43 sed -n s/core\\.bare=//p <actual >actual.bare &&
44 test_cmp expect actual.bare
47 test_expect_success 'listing and asking for variables are exclusive' '
48 test_must_fail git var -l GIT_COMMITTER_IDENT
51 test_done