-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: add unit tests for
pkg/resolution/resource
fix #6429
- Loading branch information
Showing
8 changed files
with
648 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
Copyright 2023 The Tekton 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 common | ||
|
||
import ( | ||
"context" | ||
|
||
pipelinev1beta1 "github.com/tektoncd/pipeline/pkg/apis/pipeline/v1beta1" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
) | ||
|
||
// ResolverName is the type used for a resolver's name and is mostly | ||
// used to ensure the function signatures that accept it are clear on the | ||
// purpose for the given string. | ||
type ResolverName string | ||
|
||
// Requester is the interface implemented by a type that knows how to | ||
// submit requests for remote resources. | ||
type Requester interface { | ||
// Submit accepts the name of a resolver to submit a request to | ||
// along with the request itself. | ||
Submit(context.Context, ResolverName, Request) (ResolvedResource, error) | ||
} | ||
|
||
// Request is implemented by any type that represents a single request | ||
// for a remote resource. Implementing this interface gives the underlying | ||
// type an opportunity to control properties such as whether the name of | ||
// a request has particular properties, whether the request should be made | ||
// to a specific namespace, and precisely which parameters should be included. | ||
type Request interface { | ||
Name() string | ||
Namespace() string | ||
Params() pipelinev1beta1.Params | ||
} | ||
|
||
// OwnedRequest is implemented by any type implementing Request that also needs | ||
// to express a Kubernetes OwnerRef relationship as part of the request being | ||
// made. | ||
type OwnedRequest interface { | ||
OwnerRef() metav1.OwnerReference | ||
} | ||
|
||
// ResolvedResource is implemented by any type that offers a read-only | ||
// view of the data and metadata of a resolved remote resource. | ||
type ResolvedResource interface { | ||
Data() ([]byte, error) | ||
Annotations() map[string]string | ||
RefSource() *pipelinev1beta1.RefSource | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.