forked from tektoncd/pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcondition_validation_test.go
100 lines (90 loc) · 3.01 KB
/
condition_validation_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
Copyright 2019 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 v1alpha1_test
import (
"context"
"testing"
"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
tb "github.com/tektoncd/pipeline/internal/builder/v1alpha1"
"github.com/tektoncd/pipeline/pkg/apis/pipeline/v1alpha1"
"github.com/tektoncd/pipeline/test/diff"
"knative.dev/pkg/apis"
)
func TestCondition_Validate(t *testing.T) {
c := tb.Condition("condname",
tb.ConditionSpec(
tb.ConditionSpecCheck("cname", "ubuntu"),
tb.ConditionParamSpec("paramname", v1alpha1.ParamTypeString),
))
if err := c.Validate(context.Background()); err != nil {
t.Errorf("Condition.Validate() unexpected error = %v", err)
}
}
func TestCondition_Invalidate(t *testing.T) {
tcs := []struct {
name string
cond *v1alpha1.Condition
expectedError apis.FieldError
}{{
name: "invalid meta",
cond: tb.Condition("invalid.,name"),
expectedError: apis.FieldError{
Message: "Invalid resource name: special character . must not be present",
Paths: []string{"metadata.name"},
},
}, {
name: "no image",
cond: tb.Condition("cond", tb.ConditionSpec(
tb.ConditionSpecCheck("", ""),
)),
expectedError: apis.FieldError{
Message: "missing field(s)",
Paths: []string{"Spec.Check.Image"},
},
}, {
name: "condition with script and command",
cond: tb.Condition("cond",
tb.ConditionSpec(
tb.ConditionSpecCheck("cname", "image", tb.Command("exit 0")),
tb.ConditionSpecCheckScript("echo foo"),
)),
expectedError: apis.FieldError{
Message: "step 0 script cannot be used with command",
Paths: []string{"Spec.Check.script"},
},
}, {
name: "condition with invalid check name",
cond: tb.Condition("cond",
tb.ConditionSpec(
tb.ConditionSpecCheck("Cname", "image", tb.Command("exit 0")),
tb.ConditionSpecCheckScript("echo foo"),
)),
expectedError: apis.FieldError{
Message: "invalid value \"Cname\"",
Paths: []string{"Spec.Check.name"},
Details: "Condition check name must be a valid DNS Label, For more info refer to https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
},
}}
for _, tc := range tcs {
t.Run(tc.name, func(t *testing.T) {
err := tc.cond.Validate(context.Background())
if err == nil {
t.Fatalf("Expected an Error, got nothing for %v", tc)
}
if d := cmp.Diff(tc.expectedError, *err, cmpopts.IgnoreUnexported(apis.FieldError{})); d != "" {
t.Errorf("Condition.Validate() errors diff %s", diff.PrintWantGot(d))
}
})
}
}