mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2026-04-15 01:41:56 +00:00
100 lines
3.3 KiB
Go
100 lines
3.3 KiB
Go
// Copyright 2026 Woodpecker 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 registry
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/mock"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v3/server/model"
|
|
store_mocks "go.woodpecker-ci.org/woodpecker/v3/server/store/mocks"
|
|
)
|
|
|
|
func TestCombinedRegistryListPipeline(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
testTable := []struct {
|
|
name string
|
|
repoName string
|
|
dbRegs []*model.Registry
|
|
expected []*model.Registry
|
|
expectedError bool
|
|
}{
|
|
{
|
|
name: "DB registries override file registry",
|
|
repoName: "override-test",
|
|
dbRegs: []*model.Registry{
|
|
{ID: 1, RepoID: 1, Address: "docker.io", Username: "shared", Password: "db-value"},
|
|
{ID: 2, RepoID: 1, Address: "quay.io", Username: "db-only", Password: "only-in-db"},
|
|
},
|
|
expected: []*model.Registry{
|
|
{Address: "example.com", Username: "user", Password: "password-encoded", ReadOnly: true},
|
|
{ID: 1, RepoID: 1, Address: "docker.io", Username: "shared", Password: "db-value"},
|
|
{ID: 2, RepoID: 1, Address: "quay.io", Username: "db-only", Password: "only-in-db"},
|
|
},
|
|
expectedError: false,
|
|
},
|
|
{
|
|
name: "No overriding, but merged",
|
|
repoName: "no-content",
|
|
dbRegs: []*model.Registry{
|
|
{ID: 1, RepoID: 1, Address: "quay.io", Username: "db-secret", Password: "db-value"},
|
|
},
|
|
expected: []*model.Registry{
|
|
{Address: "docker.io", Username: "user", Password: "your-pw", ReadOnly: true},
|
|
{Address: "example.com", Username: "user", Password: "password-encoded", ReadOnly: true},
|
|
{ID: 1, RepoID: 1, Address: "quay.io", Username: "db-secret", Password: "db-value"},
|
|
},
|
|
expectedError: false,
|
|
},
|
|
}
|
|
|
|
tmpFile, err := os.CreateTemp(t.TempDir(), "registry-test-combined-*.json")
|
|
require.NoError(t, err)
|
|
|
|
_, err = tmpFile.WriteString(`{"auths": {"docker.io": {"username": "user", "password": "your-pw"}, "example.com": {"auth": "dXNlcjpwYXNzd29yZC1lbmNvZGVk"}}}`)
|
|
require.NoError(t, err)
|
|
|
|
fsService := NewFilesystem(tmpFile.Name())
|
|
|
|
for _, tt := range testTable {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
mockStore := store_mocks.NewMockStore(t)
|
|
mockStore.On("RegistryList", mock.Anything, true, mock.Anything).Return(tt.dbRegs, nil)
|
|
mockStore.On("GlobalRegistryList", mock.Anything).Return(nil, nil)
|
|
|
|
combined := NewCombined(NewDB(mockStore), fsService)
|
|
|
|
registries, err := combined.RegistryListPipeline(
|
|
t.Context(),
|
|
&model.Repo{ID: 1, Name: tt.repoName},
|
|
&model.Pipeline{},
|
|
nil,
|
|
)
|
|
if tt.expectedError {
|
|
require.Error(t, err, "expected an error")
|
|
} else {
|
|
require.NoError(t, err, "error fetching registries")
|
|
}
|
|
|
|
assert.ElementsMatch(t, tt.expected, registries, "expected some other registries")
|
|
})
|
|
}
|
|
}
|