From: "Fabian Pottbäcker" <fpottbaecker+git@mailbox.org>
To: git@vger.kernel.org
Cc: "Junio C Hamano" <gitster@pobox.com>,
"Patrick Steinhardt" <ps@pks.im>,
"Fabian Pottbäcker" <fpottbaecker+git@mailbox.org>
Subject: [PATCH 2/3] t1300: cover --url for some --get-urlmatch tests
Date: Fri, 24 Jul 2026 02:40:10 +0200 [thread overview]
Message-ID: <20260724004011.41795-3-fpottbaecker+git@mailbox.org> (raw)
In-Reply-To: <20260724004011.41795-1-fpottbaecker+git@mailbox.org>
Signed-off-by: Fabian Pottbäcker <fpottbaecker+git@mailbox.org>
---
t/t1300-config.sh | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/t/t1300-config.sh b/t/t1300-config.sh
index b99f782d5d..8310fe6a65 100755
--- a/t/t1300-config.sh
+++ b/t/t1300-config.sh
@@ -2028,22 +2028,32 @@ test_expect_success 'urlmatch with wildcard' '
test_expect_code 1 git config --bool --get-urlmatch doesnt.exist https://good.example.com >actual &&
test_must_be_empty actual &&
+ test_expect_code 1 git config get --bool --url=https://good.example.com doesnt.exist >actual &&
+ test_must_be_empty actual &&
echo true >expect &&
git config --bool --get-urlmatch http.SSLverify https://example.com >actual &&
test_cmp expect actual &&
+ git config get --bool --url=https://example.com http.SSLverify >actual &&
+ test_cmp expect actual &&
echo true >expect &&
git config --bool --get-urlmatch http.SSLverify https://good-example.com >actual &&
test_cmp expect actual &&
+ git config get --bool --url=https://good-example.com http.SSLverify >actual &&
+ test_cmp expect actual &&
echo true >expect &&
git config --bool --get-urlmatch http.sslverify https://deep.nested.example.com >actual &&
test_cmp expect actual &&
+ git config get --bool --url=https://deep.nested.example.com http.sslverify >actual &&
+ test_cmp expect actual &&
echo false >expect &&
git config --bool --get-urlmatch http.sslverify https://good.example.com >actual &&
test_cmp expect actual &&
+ git config get --bool --url=https://good.example.com http.sslverify >actual &&
+ test_cmp expect actual &&
{
echo http.cookiefile /tmp/cookie.txt &&
@@ -2051,9 +2061,13 @@ test_expect_success 'urlmatch with wildcard' '
} >expect &&
git config --get-urlmatch HTTP https://good.example.com >actual &&
test_cmp expect actual &&
+ git config get --url=https://good.example.com HTTP >actual &&
+ test_cmp expect actual &&
echo http.sslverify >expect &&
git config --get-urlmatch HTTP https://more.example.com.au >actual &&
+ test_cmp expect actual &&
+ git config get --url=https://more.example.com.au HTTP >actual &&
test_cmp expect actual
'
--
2.50.1 (Apple Git-155)
next prev parent reply other threads:[~2026-07-24 0:40 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-24 0:40 [PATCH 0/3] config: support scp-style --url Fabian Pottbäcker
2026-07-24 0:40 ` [PATCH 1/3] urlmatch: normalize ssh and ftp default ports Fabian Pottbäcker
2026-07-24 11:35 ` Ben Knoble
2026-07-24 0:40 ` Fabian Pottbäcker [this message]
2026-07-24 0:40 ` [PATCH 3/3] config: use url_parse for --url Fabian Pottbäcker
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260724004011.41795-3-fpottbaecker+git@mailbox.org \
--to=fpottbaecker+git@mailbox.org \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=ps@pks.im \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.