mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-05 08:31:44 +00:00
364d708923
This pull-requests re-introduces the Bitbucket Server support with a more or less complete rewrite of the forge implementation. We have a lot of on-premises git repositories hosted in Bitbucket Server and need a CI solution for running that and Woodpecker looks promising. The implementation is based on external Bitbucket Server REST client library which we are maintaining and have created in another context. Besides the original support for Bitbucket the re-implementation also adds support for handling Bitbucket pull-request events.
66 lines
1.7 KiB
Go
66 lines
1.7 KiB
Go
// Copyright 2024 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 fixtures
|
|
|
|
import (
|
|
"net/http/httptest"
|
|
|
|
"github.com/neticdk/go-bitbucket/bitbucket"
|
|
"github.com/neticdk/go-bitbucket/mock"
|
|
)
|
|
|
|
func Server() *httptest.Server {
|
|
return mock.NewMockServer(
|
|
mock.WithRequestMatch(mock.SearchRepositories, bitbucket.RepositoryList{
|
|
ListResponse: bitbucket.ListResponse{
|
|
LastPage: true,
|
|
},
|
|
Repositories: []*bitbucket.Repository{
|
|
{
|
|
ID: uint64(123),
|
|
Slug: "repo-slug-1",
|
|
Name: "REPO Name 1",
|
|
Project: &bitbucket.Project{
|
|
ID: uint64(456),
|
|
Key: "PRJ",
|
|
},
|
|
},
|
|
{
|
|
ID: uint64(1234),
|
|
Slug: "repo-slug-2",
|
|
Name: "REPO Name 2",
|
|
Project: &bitbucket.Project{
|
|
ID: uint64(456),
|
|
Key: "PRJ",
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
mock.WithRequestMatch(mock.GetRepository, bitbucket.Repository{
|
|
ID: uint64(123),
|
|
Slug: "repo-slug",
|
|
Name: "REPO Name",
|
|
Project: &bitbucket.Project{
|
|
ID: uint64(456),
|
|
Key: "PRJ",
|
|
},
|
|
}),
|
|
mock.WithRequestMatch(mock.GetDefaultBranch, bitbucket.Branch{
|
|
ID: "refs/head/main",
|
|
DisplayID: "main",
|
|
Default: true,
|
|
}),
|
|
)
|
|
}
|