| import { describe, it, expect } from "vitest"; |
|
|
| import { parseGitRemoteUrl } from "#/utils/parse-git-remote-url"; |
|
|
| describe("parseGitRemoteUrl", () => { |
| it("returns null for empty/whitespace input", () => { |
| expect(parseGitRemoteUrl(undefined)).toBeNull(); |
| expect(parseGitRemoteUrl(null)).toBeNull(); |
| expect(parseGitRemoteUrl("")).toBeNull(); |
| expect(parseGitRemoteUrl(" ")).toBeNull(); |
| }); |
|
|
| it("parses HTTPS GitHub URLs and strips the .git suffix", () => { |
| const result = parseGitRemoteUrl("https://github.com/owner/repo.git"); |
| expect(result).toEqual({ |
| url: "https://github.com/owner/repo.git", |
| host: "github.com", |
| repository: "owner/repo", |
| provider: "github", |
| }); |
| }); |
|
|
| it("strips the .git suffix when an HTTPS URL has a trailing slash", () => { |
| const result = parseGitRemoteUrl( |
| "https://github.com/OpenHands/OpenHands.git/", |
| ); |
| expect(result?.repository).toBe("OpenHands/OpenHands"); |
| }); |
|
|
| it("parses HTTPS GitHub URLs without a .git suffix", () => { |
| const result = parseGitRemoteUrl("https://github.com/owner/repo"); |
| expect(result?.repository).toBe("owner/repo"); |
| expect(result?.provider).toBe("github"); |
| }); |
|
|
| it("parses SSH-style git@host:owner/repo URLs", () => { |
| const result = parseGitRemoteUrl("git@github.com:owner/repo.git"); |
| expect(result).toEqual({ |
| url: "git@github.com:owner/repo.git", |
| host: "github.com", |
| repository: "owner/repo", |
| provider: "github", |
| }); |
| }); |
|
|
| it("parses ssh:// URLs", () => { |
| const result = parseGitRemoteUrl("ssh://git@gitlab.com/owner/repo.git"); |
| expect(result?.host).toBe("gitlab.com"); |
| expect(result?.repository).toBe("owner/repo"); |
| expect(result?.provider).toBe("gitlab"); |
| }); |
|
|
| it("parses ssh:// URLs that carry an explicit port", () => { |
| const result = parseGitRemoteUrl( |
| "ssh://git@git.example.com:2222/owner/repo.git", |
| ); |
| expect(result?.host).toBe("git.example.com"); |
| expect(result?.repository).toBe("owner/repo"); |
| }); |
|
|
| |
| |
| it("parses ssh:// URLs whose colon segment is a path, not a port", () => { |
| const result = parseGitRemoteUrl("ssh://git@github.com:owner/repo.git"); |
| expect(result).toEqual({ |
| url: "ssh://git@github.com:owner/repo.git", |
| host: "github.com", |
| repository: "owner/repo", |
| provider: "github", |
| }); |
| }); |
|
|
| it("parses http URLs that carry credentials and a port", () => { |
| const result = parseGitRemoteUrl( |
| "http://user@git.example.com:8080/owner/repo.git", |
| ); |
| expect(result).toEqual({ |
| url: "http://user@git.example.com:8080/owner/repo.git", |
| host: "git.example.com", |
| repository: "owner/repo", |
| provider: null, |
| }); |
| }); |
|
|
| it("parses https URLs that carry a user:password pair and a port", () => { |
| const result = parseGitRemoteUrl( |
| "https://user:tok@git.example.com:8443/owner/repo.git", |
| ); |
| expect(result).toEqual({ |
| url: "https://user:tok@git.example.com:8443/owner/repo.git", |
| host: "git.example.com", |
| repository: "owner/repo", |
| provider: null, |
| }); |
| }); |
|
|
| it("parses Bitbucket Cloud URLs", () => { |
| const result = parseGitRemoteUrl( |
| "https://bitbucket.org/owner/repo.git", |
| ); |
| expect(result?.provider).toBe("bitbucket"); |
| expect(result?.repository).toBe("owner/repo"); |
| }); |
|
|
| it("normalizes Azure DevOps paths by removing the _git segment", () => { |
| const result = parseGitRemoteUrl( |
| "https://dev.azure.com/org/project/_git/repo", |
| ); |
| expect(result?.provider).toBe("azure_devops"); |
| expect(result?.repository).toBe("org/project/repo"); |
| }); |
|
|
| it("parses Azure DevOps SSH URLs, dropping the v3 prefix", () => { |
| const result = parseGitRemoteUrl( |
| "git@ssh.dev.azure.com:v3/org/project/repo", |
| ); |
| expect(result?.provider).toBe("azure_devops"); |
| expect(result?.repository).toBe("org/project/repo"); |
| }); |
|
|
| it("parses Azure DevOps ssh:// URLs", () => { |
| const result = parseGitRemoteUrl( |
| "ssh://git@ssh.dev.azure.com/v3/org/project/repo", |
| ); |
| expect(result?.host).toBe("dev.azure.com"); |
| expect(result?.provider).toBe("azure_devops"); |
| expect(result?.repository).toBe("org/project/repo"); |
| }); |
|
|
| it("parses Azure DevOps ssh:// URLs that carry an explicit port", () => { |
| const result = parseGitRemoteUrl( |
| "ssh://git@ssh.dev.azure.com:22/v3/org/project/repo", |
| ); |
| expect(result?.host).toBe("dev.azure.com"); |
| expect(result?.provider).toBe("azure_devops"); |
| expect(result?.repository).toBe("org/project/repo"); |
| }); |
|
|
| it("parses legacy visualstudio.com SSH URLs", () => { |
| const result = parseGitRemoteUrl( |
| "git@vs-ssh.visualstudio.com:v3/org/project/repo", |
| ); |
| expect(result?.provider).toBe("azure_devops"); |
| expect(result?.repository).toBe("org/project/repo"); |
| }); |
|
|
| it("keeps an Azure DevOps organization actually named v3", () => { |
| const result = parseGitRemoteUrl( |
| "https://dev.azure.com/v3/project/_git/repo", |
| ); |
| expect(result?.repository).toBe("v3/project/repo"); |
| }); |
|
|
| it("preserves nested paths for unknown self-hosted hosts", () => { |
| const result = parseGitRemoteUrl( |
| "https://git.example.com/group/subgroup/repo.git", |
| ); |
| expect(result?.host).toBe("git.example.com"); |
| expect(result?.repository).toBe("group/subgroup/repo"); |
| expect(result?.provider).toBeNull(); |
| }); |
|
|
| it("handles SSH-style URLs against unknown hosts", () => { |
| const result = parseGitRemoteUrl("git@git.example.com:team/repo.git"); |
| expect(result?.host).toBe("git.example.com"); |
| expect(result?.repository).toBe("team/repo"); |
| expect(result?.provider).toBeNull(); |
| }); |
|
|
| it("returns null for unparseable strings", () => { |
| expect(parseGitRemoteUrl("not a url")).toBeNull(); |
| }); |
|
|
| it("treats a host named after an Object.prototype member as a plain host", () => { |
| const result = parseGitRemoteUrl("http://constructor/owner/repo.git"); |
| expect(result?.host).toBe("constructor"); |
| expect(result?.repository).toBe("owner/repo"); |
| }); |
| }); |
|
|