fix: Support BitBucket endpoint with path (#665)

Signed-off-by: Anatolii Bazko <abazko@redhat.com>
pull/666/head
Anatolii Bazko 2024-03-12 10:22:04 +01:00
parent bdf8905164
commit 54f6dcd485
2 changed files with 4 additions and 3 deletions

View File

@ -78,7 +78,7 @@ public class BitbucketServerURLParser {
bitbucketUrlPatternTemplates.forEach(
t -> {
String scheme = t.contains("git@") ? "ssh" : uri.getScheme();
String host = uri.getHost();
String host = uri.getHost() + uri.getPath();
bitbucketUrlPatterns.add(Pattern.compile(format(t, scheme, host)));
});
}

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2012-2023 Red Hat, Inc.
* Copyright (c) 2012-2024 Red Hat, Inc.
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
@ -59,7 +59,7 @@ public class BitbucketServerURLParserTest {
public void setUp() {
bitbucketURLParser =
new BitbucketServerURLParser(
"https://bitbucket.2mcl.com,https://bbkt.com",
"https://bitbucket.2mcl.com,https://bbkt.com,https://my-bitbucket.org/bitbucket",
devfileFilenamesProvider,
oAuthAPI,
mock(PersonalAccessTokenManager.class));
@ -145,6 +145,7 @@ public class BitbucketServerURLParserTest {
@DataProvider(name = "UrlsProvider")
public Object[][] urls() {
return new Object[][] {
{"https://my-bitbucket.org/bitbucket/scm/proj/repo.git"},
{"https://bitbucket.2mcl.com/scm/~user/repo.git"},
{"https://bitbucket.2mcl.com/scm/project/test1.git"},
{"https://bitbucket.2mcl.com/projects/project/repos/test1/browse?at=refs%2Fheads%2Fbranch"},