remove git sha because we only need git tree sha remove github-owner from frontmatter, and make github-repo support full url. Only support github.com as host, error out otherwise
76 lines
1.8 KiB
Go
76 lines
1.8 KiB
Go
package source
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestBuildRepoURL(t *testing.T) {
|
|
assert.Equal(t, "https://github.com/monalisa/octocat-skills", BuildRepoURL("github.com", "monalisa", "octocat-skills"))
|
|
}
|
|
|
|
func TestParseMetadataRepo(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
meta map[string]interface{}
|
|
wantOwner string
|
|
wantRepo string
|
|
wantHost string
|
|
wantFound bool
|
|
wantErr string
|
|
}{
|
|
{
|
|
name: "parses repo url metadata",
|
|
meta: map[string]interface{}{
|
|
"github-repo": "https://github.com/monalisa/octocat-skills",
|
|
},
|
|
wantOwner: "monalisa",
|
|
wantRepo: "octocat-skills",
|
|
wantHost: SupportedHost,
|
|
wantFound: true,
|
|
},
|
|
{
|
|
name: "invalid repo url",
|
|
meta: map[string]interface{}{
|
|
"github-repo": "not a url",
|
|
},
|
|
wantFound: true,
|
|
wantErr: "invalid repository URL",
|
|
},
|
|
{
|
|
name: "missing repo metadata",
|
|
meta: map[string]interface{}{},
|
|
wantFound: false,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
repo, found, err := ParseMetadataRepo(tt.meta)
|
|
assert.Equal(t, tt.wantFound, found)
|
|
if !tt.wantFound {
|
|
require.NoError(t, err)
|
|
assert.Nil(t, repo)
|
|
return
|
|
}
|
|
if tt.wantErr != "" {
|
|
require.Error(t, err)
|
|
assert.Contains(t, err.Error(), tt.wantErr)
|
|
return
|
|
}
|
|
|
|
require.NoError(t, err)
|
|
require.NotNil(t, repo)
|
|
assert.Equal(t, tt.wantOwner, repo.RepoOwner())
|
|
assert.Equal(t, tt.wantRepo, repo.RepoName())
|
|
assert.Equal(t, tt.wantHost, repo.RepoHost())
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestValidateSupportedHost(t *testing.T) {
|
|
require.NoError(t, ValidateSupportedHost("github.com"))
|
|
require.ErrorContains(t, ValidateSupportedHost("acme.ghes.com"), "supports only github.com")
|
|
}
|