Accept the "HOST/OWNER/REPO" syntax or passing a full URL for both the
`--repo` flag and the GH_REPO environment variable and allow setting
GH_HOST environment variable to override just the hostname for
operations that assume "github.com" by default.
Examples:
$ gh repo clone example.org/owner/repo
$ GH_HOST=example.org gh repo clone repo
$ GH_HOST=example.org gh api user
$ GH_HOST=example.org gh gist create myfile.txt
$ gh issue list -R example.org/owner/repo
$ gh issue list -R https://example.org/owner/repo.git
$ GH_REPO=example.org/owner/repo gh issue list
144 lines
2.4 KiB
Go
144 lines
2.4 KiB
Go
package ghinstance
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestOverridableDefault(t *testing.T) {
|
|
oldOverride := hostnameOverride
|
|
t.Cleanup(func() {
|
|
hostnameOverride = oldOverride
|
|
})
|
|
|
|
host := OverridableDefault()
|
|
if host != "github.com" {
|
|
t.Errorf("expected github.com, got %q", host)
|
|
}
|
|
|
|
OverrideDefault("example.org")
|
|
|
|
host = OverridableDefault()
|
|
if host != "example.org" {
|
|
t.Errorf("expected example.org, got %q", host)
|
|
}
|
|
host = Default()
|
|
if host != "github.com" {
|
|
t.Errorf("expected github.com, got %q", host)
|
|
}
|
|
}
|
|
|
|
func TestIsEnterprise(t *testing.T) {
|
|
tests := []struct {
|
|
host string
|
|
want bool
|
|
}{
|
|
{
|
|
host: "github.com",
|
|
want: false,
|
|
},
|
|
{
|
|
host: "api.github.com",
|
|
want: false,
|
|
},
|
|
{
|
|
host: "ghe.io",
|
|
want: true,
|
|
},
|
|
{
|
|
host: "example.com",
|
|
want: true,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.host, func(t *testing.T) {
|
|
if got := IsEnterprise(tt.host); got != tt.want {
|
|
t.Errorf("IsEnterprise() = %v, want %v", got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestNormalizeHostname(t *testing.T) {
|
|
tests := []struct {
|
|
host string
|
|
want string
|
|
}{
|
|
{
|
|
host: "GitHub.com",
|
|
want: "github.com",
|
|
},
|
|
{
|
|
host: "api.github.com",
|
|
want: "github.com",
|
|
},
|
|
{
|
|
host: "ssh.github.com",
|
|
want: "github.com",
|
|
},
|
|
{
|
|
host: "upload.github.com",
|
|
want: "github.com",
|
|
},
|
|
{
|
|
host: "GHE.IO",
|
|
want: "ghe.io",
|
|
},
|
|
{
|
|
host: "git.my.org",
|
|
want: "git.my.org",
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.host, func(t *testing.T) {
|
|
if got := NormalizeHostname(tt.host); got != tt.want {
|
|
t.Errorf("NormalizeHostname() = %v, want %v", got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestGraphQLEndpoint(t *testing.T) {
|
|
tests := []struct {
|
|
host string
|
|
want string
|
|
}{
|
|
{
|
|
host: "github.com",
|
|
want: "https://api.github.com/graphql",
|
|
},
|
|
{
|
|
host: "ghe.io",
|
|
want: "https://ghe.io/api/graphql",
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.host, func(t *testing.T) {
|
|
if got := GraphQLEndpoint(tt.host); got != tt.want {
|
|
t.Errorf("GraphQLEndpoint() = %v, want %v", got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestRESTPrefix(t *testing.T) {
|
|
tests := []struct {
|
|
host string
|
|
want string
|
|
}{
|
|
{
|
|
host: "github.com",
|
|
want: "https://api.github.com/",
|
|
},
|
|
{
|
|
host: "ghe.io",
|
|
want: "https://ghe.io/api/v3/",
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.host, func(t *testing.T) {
|
|
if got := RESTPrefix(tt.host); got != tt.want {
|
|
t.Errorf("RESTPrefix() = %v, want %v", got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|