Merge pull request #13411 from heww/cherry-pick-remove-helmhub-testcase

Remove UT for helm hub adapter (#13255)
This commit is contained in:
He Weiwei 2020-11-02 14:38:40 +08:00 committed by GitHub
commit b5a4ebacd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 138 deletions

View File

@ -1,44 +0,0 @@
// Copyright Project Harbor 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 helmhub
import (
"testing"
"github.com/goharbor/harbor/src/replication/model"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestInfo(t *testing.T) {
adapter := &adapter{}
info, err := adapter.Info()
require.Nil(t, err)
require.Equal(t, 1, len(info.SupportedResourceTypes))
assert.Equal(t, model.ResourceTypeChart, info.SupportedResourceTypes[0])
}
func TestPrepareForPush(t *testing.T) {
adapter := &adapter{}
err := adapter.PrepareForPush(nil)
require.NotNil(t, err)
}
func TestHealthCheck(t *testing.T) {
adapter, _ := newAdapter(nil)
status, err := adapter.HealthCheck()
require.Equal(t, model.Healthy, string(status))
require.Nil(t, err)
}

View File

@ -1,94 +0,0 @@
// Copyright Project Harbor 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 helmhub
import (
"testing"
"github.com/goharbor/harbor/src/replication/model"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestFetchCharts(t *testing.T) {
adapter, err := newAdapter(nil)
require.Nil(t, err)
// filter 1
filters := []*model.Filter{
{
Type: model.FilterTypeName,
Value: "k*/*",
},
}
resources, err := adapter.FetchCharts(filters)
require.Nil(t, err)
assert.NotZero(t, len(resources))
assert.Equal(t, model.ResourceTypeChart, resources[0].Type)
assert.Equal(t, 1, len(resources[0].Metadata.Vtags))
assert.NotNil(t, resources[0].Metadata.Vtags[0])
// filter 2
filters = []*model.Filter{
{
Type: model.FilterTypeName,
Value: "harbor/*",
},
}
resources, err = adapter.FetchCharts(filters)
require.Nil(t, err)
assert.NotZero(t, len(resources))
assert.Equal(t, model.ResourceTypeChart, resources[0].Type)
assert.Equal(t, "harbor/harbor", resources[0].Metadata.Repository.Name)
assert.Equal(t, 1, len(resources[0].Metadata.Vtags))
assert.NotNil(t, resources[0].Metadata.Vtags[0])
}
func TestChartExist(t *testing.T) {
adapter, err := newAdapter(nil)
require.Nil(t, err)
exist, err := adapter.ChartExist("harbor/harbor", "1.0.0")
require.Nil(t, err)
require.True(t, exist)
}
func TestChartExist2(t *testing.T) {
adapter, err := newAdapter(nil)
require.Nil(t, err)
exist, err := adapter.ChartExist("goharbor/harbor", "1.0.0")
require.Nil(t, err)
require.False(t, exist)
exist, err = adapter.ChartExist("harbor/harbor", "1.0.100")
require.Nil(t, err)
require.False(t, exist)
}
func TestDownloadChart(t *testing.T) {
adapter, err := newAdapter(nil)
require.Nil(t, err)
_, err = adapter.DownloadChart("harbor/harbor", "1.0.0")
require.Nil(t, err)
}
func TestUploadChart(t *testing.T) {
adapter := &adapter{}
err := adapter.UploadChart("library/harbor", "1.0", nil)
require.NotNil(t, err)
}
func TestDeleteChart(t *testing.T) {
adapter := &adapter{}
err := adapter.DeleteChart("library/harbor", "1.0")
require.NotNil(t, err)
}