Skip to content

Commit

Permalink
[TEP-0076]Add type for results
Browse files Browse the repository at this point in the history
This commit is the first step of TEP-0076, to support array and object
in resutls we need to add type for TaskResult and TaskRunResult first.
Before this commit we don't have the Type for these results.
  • Loading branch information
Yongxuanzhang committed Apr 28, 2022
1 parent 919edfe commit 4b30812
Show file tree
Hide file tree
Showing 11 changed files with 180 additions and 27 deletions.
14 changes: 14 additions & 0 deletions pkg/apis/pipeline/v1beta1/openapi_generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pkg/apis/pipeline/v1beta1/resource_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ type PipelineResourceResult struct {
}

// ResultType used to find out whether a PipelineResourceResult is from a task result or not
// Note that ResultsType is another type which is used to define the data type
// (e.g. string, array, etc) we used for Results
type ResultType int

// UnmarshalJSON unmarshals either an int or a string into a ResultType. String
Expand Down
24 changes: 24 additions & 0 deletions pkg/apis/pipeline/v1beta1/result_defaults.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
Copyright 2022 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 v1beta1

import "context"

// SetDefaults set the default type for TaskResult
func (tr *TaskResult) SetDefaults(ctx context.Context) {
if tr != nil && tr.Type == "" {
// ResultsTypeString is the default value
tr.Type = ResultsTypeString
}
}
59 changes: 59 additions & 0 deletions pkg/apis/pipeline/v1beta1/result_types.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
/*
Copyright 2022 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 v1beta1

// TaskResult used to describe the results of a task
type TaskResult struct {
// Name the given name
Name string `json:"name"`

// Type is the user-specified type of the result. The possible type
// is currently "string" and will support "array" in following work.
Type ResultsType `json:"type,omitempty"`

// Description is a human-readable description of the result
// +optional
Description string `json:"description"`
}

// TaskRunResult used to describe the results of a task
type TaskRunResult struct {
// Name the given name
Name string `json:"name"`

// Type is the user-specified type of the result. The possible type
// is currently "string" and will support "array" in following work.
// +optional
Type ResultsType `json:"type,omitempty"`

// Value the given value of the result
Value string `json:"value"`
}

// ResultsType indicates the type of a result;
// Used to distinguish between a single string and an array of strings.
// Note that there is ResultType used to find out whether a
// PipelineResourceResult is from a task result or not, which is different from
// this ResultsType.
// TODO(@Yongxuanzhang): add "array" and "object" support
// TODO(@Yongxuanzhang): align ResultsType and ParamType in ArrayOrString
type ResultsType string

// Valid ResultsType:
const (
ResultsTypeString ResultsType = "string"
)

// AllResultsTypes can be used for ResultsTypes validation.
var AllResultsTypes = []ResultsType{ResultsTypeString}
40 changes: 40 additions & 0 deletions pkg/apis/pipeline/v1beta1/result_validation.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/*
Copyright 2022 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 v1beta1

import (
"context"
"fmt"

"knative.dev/pkg/apis"
)

// Validate implements apis.Validatable
func (tr TaskResult) Validate(_ context.Context) *apis.FieldError {
if !resultNameFormatRegex.MatchString(tr.Name) {
return apis.ErrInvalidKeyName(tr.Name, "name", fmt.Sprintf("Name must consist of alphanumeric characters, '-', '_', and must start and end with an alphanumeric character (e.g. 'MyName', or 'my-name', or 'my_name', regex used for validation is '%s')", ResultNameFormat))
}
// Validate the result type
validType := false
for _, allowedType := range AllResultsTypes {
if tr.Type == allowedType {
validType = true
}
}
if !validType {
return apis.ErrInvalidValue(tr.Type, "type", fmt.Sprintf("type must be string"))
}

return nil
}
8 changes: 8 additions & 0 deletions pkg/apis/pipeline/v1beta1/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -2262,6 +2262,10 @@
"description": "Name the given name",
"type": "string",
"default": ""
},
"type": {
"description": "Type is the user-specified type of the result. The possible type is currently \"string\" and will support \"array\" in following work.",
"type": "string"
}
}
},
Expand Down Expand Up @@ -2406,6 +2410,10 @@
"type": "string",
"default": ""
},
"type": {
"description": "Type is the user-specified type of the result. The possible type is currently \"string\" and will support \"array\" in following work.",
"type": "string"
},
"value": {
"description": "Value the given value of the result",
"type": "string",
Expand Down
3 changes: 3 additions & 0 deletions pkg/apis/pipeline/v1beta1/task_defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ func (ts *TaskSpec) SetDefaults(ctx context.Context) {
for i := range ts.Params {
ts.Params[i].SetDefaults(ctx)
}
for i := range ts.Results {
ts.Results[i].SetDefaults(ctx)
}
}

// applyImplicitParams propagates implicit params from the parent context
Expand Down
10 changes: 0 additions & 10 deletions pkg/apis/pipeline/v1beta1/task_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,16 +126,6 @@ type TaskSpec struct {
Results []TaskResult `json:"results,omitempty"`
}

// TaskResult used to describe the results of a task
type TaskResult struct {
// Name the given name
Name string `json:"name"`

// Description is a human-readable description of the result
// +optional
Description string `json:"description"`
}

// Step embeds the Container type, which allows it to include fields not
// provided by Container.
type Step struct {
Expand Down
8 changes: 0 additions & 8 deletions pkg/apis/pipeline/v1beta1/task_validation.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,6 @@ func validateResults(ctx context.Context, results []TaskResult) (errs *apis.Fiel
return errs
}

// Validate implements apis.Validatable
func (tr TaskResult) Validate(_ context.Context) *apis.FieldError {
if !resultNameFormatRegex.MatchString(tr.Name) {
return apis.ErrInvalidKeyName(tr.Name, "name", fmt.Sprintf("Name must consist of alphanumeric characters, '-', '_', and must start and end with an alphanumeric character (e.g. 'MyName', or 'my-name', or 'my_name', regex used for validation is '%s')", ResultNameFormat))
}
return nil
}

// a mount path which conflicts with any other declared workspaces, with the explicitly
// declared volume mounts, or with the stepTemplate. The names must also be unique.
func validateDeclaredWorkspaces(workspaces []WorkspaceDeclaration, steps []Step, stepTemplate *corev1.Container) (errs *apis.FieldError) {
Expand Down
30 changes: 30 additions & 0 deletions pkg/apis/pipeline/v1beta1/task_validation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,21 @@ func TestTaskSpecValidate(t *testing.T) {
Description: "my great result",
}},
},
}, {
name: "valid result type",
fields: fields{
Steps: []v1beta1.Step{{
Container: corev1.Container{
Image: "my-image",
Args: []string{"arg"},
},
}},
Results: []v1beta1.TaskResult{{
Name: "MY-RESULT",
Type: "string",
Description: "my great result",
}},
},
}, {
name: "valid task name context",
fields: fields{
Expand Down Expand Up @@ -956,6 +971,21 @@ func TestTaskSpecValidateError(t *testing.T) {
Paths: []string{"results[0].name"},
Details: "Name must consist of alphanumeric characters, '-', '_', and must start and end with an alphanumeric character (e.g. 'MyName', or 'my-name', or 'my_name', regex used for validation is '^([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]$')",
},
}, {
name: "result type not validate",
fields: fields{
Steps: validSteps,
Results: []v1beta1.TaskResult{{
Name: "MY-RESULT",
Type: "wrong",
Description: "my great result",
}},
},
expectedError: apis.FieldError{
Message: `invalid value: wrong`,
Paths: []string{"results[0].type"},
Details: "type must be string",
},
}, {
name: "context not validate",
fields: fields{
Expand Down
9 changes: 0 additions & 9 deletions pkg/apis/pipeline/v1beta1/taskrun_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -235,15 +235,6 @@ type TaskRunStatusFields struct {
TaskSpec *TaskSpec `json:"taskSpec,omitempty"`
}

// TaskRunResult used to describe the results of a task
type TaskRunResult struct {
// Name the given name
Name string `json:"name"`

// Value the given value of the result
Value string `json:"value"`
}

// TaskRunStepOverride is used to override the values of a Step in the corresponding Task.
type TaskRunStepOverride struct {
// The name of the Step to override.
Expand Down

0 comments on commit 4b30812

Please sign in to comment.