From: Jeff King Date: Wed, 12 Oct 2011 18:30:02 +0000 (-0400) Subject: t1300: test mixed-case variable retrieval X-Git-Tag: v1.7.8-rc0~42^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=88d42af893ba2a5cff01506e623f3543ef78f9ed;p=git.git t1300: test mixed-case variable retrieval We should be able to ask for a config value both by its canonical all-lowercase name (as git does internally), as well as by random mixed-case (which will be canonicalized by git-config for us). Subsections are a tricky point, though. Since we have both [section "Foo"] and [section.Foo] you might want git-config to canonicalize the subsection or not, depending on which you are expecting. But there's no way to communicate this; git-config sees only the key, and doesn't know which type of section name will be in the config file. So it must leave the subsection intact, and it is up to the caller to provide a canonical version of the subsection if they want to match the latter form. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- diff --git a/t/t1300-repo-config.sh b/t/t1300-repo-config.sh index cf508afd6..8a37f9639 100755 --- a/t/t1300-repo-config.sh +++ b/t/t1300-repo-config.sh @@ -73,6 +73,33 @@ EOF test_expect_success 'non-match result' 'test_cmp expect .git/config' +test_expect_success 'find mixed-case key by canonical name' ' + echo Second >expect && + git config cores.whatever >actual && + test_cmp expect actual +' + +test_expect_success 'find mixed-case key by non-canonical name' ' + echo Second >expect && + git config CoReS.WhAtEvEr >actual && + test_cmp expect actual +' + +test_expect_success 'subsections are not canonicalized by git-config' ' + cat >>.git/config <<-\EOF && + [section.SubSection] + key = one + [section "SubSection"] + key = two + EOF + echo one >expect && + git config section.subsection.key >actual && + test_cmp expect actual && + echo two >expect && + git config section.SubSection.key >actual && + test_cmp expect actual +' + cat > .git/config <<\EOF [alpha] bar = foo