mirror of https://github.com/kubevela/kubevela.git
114 lines
2.9 KiB
Go
114 lines
2.9 KiB
Go
/*
|
|
Copyright 2021 The KubeVela Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package cli
|
|
|
|
import (
|
|
"context"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestRegistry(t *testing.T) {
|
|
t.Skip("temporary pend this test")
|
|
testAddon := "dynamic-sa"
|
|
regName := "testReg"
|
|
localPath, err := filepath.Abs("../../e2e/plugin/testdata")
|
|
assert.Nil(t, err)
|
|
|
|
cases := map[string]struct {
|
|
url string
|
|
expectReg Registry
|
|
}{
|
|
"oss registry": {
|
|
url: "oss://registry.kubevela.net/",
|
|
expectReg: OssRegistry{},
|
|
},
|
|
"github registry": {
|
|
url: "https://github.com/oam-dev/catalog/tree/master/registry",
|
|
expectReg: GithubRegistry{},
|
|
},
|
|
"local registry": {
|
|
url: "file://" + localPath,
|
|
expectReg: LocalRegistry{},
|
|
},
|
|
}
|
|
|
|
for _, c := range cases {
|
|
registry, err := NewRegistry(context.Background(), "", regName, c.url)
|
|
assert.NoError(t, err, c.url)
|
|
assert.IsType(t, c.expectReg, registry, regName)
|
|
|
|
caps, err := registry.ListCaps()
|
|
assert.NoError(t, err, c.url)
|
|
assert.NotEmpty(t, caps, c.url)
|
|
|
|
capability, data, err := registry.GetCap(testAddon)
|
|
assert.NoError(t, err, c.url)
|
|
assert.NotNil(t, capability, testAddon)
|
|
assert.NotNil(t, data, testAddon)
|
|
}
|
|
}
|
|
|
|
func TestParseURL(t *testing.T) {
|
|
cases := map[string]struct {
|
|
url string
|
|
exp *GithubContent
|
|
expType string
|
|
}{
|
|
"api-github": {
|
|
url: "https://api.github.com/repos/oam-dev/catalog/contents/traits?ref=master",
|
|
expType: TypeGithub,
|
|
exp: &GithubContent{
|
|
URL: "https://api.github.com/repos/oam-dev/catalog/contents/traits?ref=master",
|
|
Owner: "oam-dev",
|
|
Repo: "catalog",
|
|
Path: "traits",
|
|
Ref: "master",
|
|
},
|
|
},
|
|
"github-copy-path": {
|
|
url: "https://github.com/oam-dev/catalog/tree/master/repository",
|
|
expType: TypeGithub,
|
|
exp: &GithubContent{
|
|
URL: "https://github.com/oam-dev/catalog/tree/master/repository",
|
|
Owner: "oam-dev",
|
|
Repo: "catalog",
|
|
Path: "repository",
|
|
Ref: "master",
|
|
},
|
|
},
|
|
"github-manual-write-path": {
|
|
url: "https://github.com/oam-dev/catalog/traits",
|
|
expType: TypeGithub,
|
|
exp: &GithubContent{
|
|
URL: "https://github.com/oam-dev/catalog/traits",
|
|
Owner: "oam-dev",
|
|
Repo: "catalog",
|
|
Path: "traits",
|
|
},
|
|
},
|
|
}
|
|
for caseName, c := range cases {
|
|
tp, content, err := Parse(c.url)
|
|
assert.NoError(t, err, caseName)
|
|
assert.Equal(t, c.exp, &content.GithubContent, caseName)
|
|
assert.Equal(t, c.expType, tp, caseName)
|
|
}
|
|
}
|