-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support multinamespace informer filtering
- Loading branch information
Showing
7 changed files
with
361 additions
and
88 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
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,80 @@ | ||
/* | ||
Copyright 2024 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 reconciler | ||
|
||
import ( | ||
v1 "github.com/tektoncd/pipeline/pkg/apis/pipeline/v1" | ||
"knative.dev/pkg/controller" | ||
) | ||
|
||
// PipelineRunInformerFilterFunc returns a filter function | ||
// for PipelineRuns ensuring PipelineRuns are filtered by list of namespaces membership | ||
func PipelineRunInformerFilterFunc(namespaces []string) func(obj interface{}) bool { | ||
return func(obj interface{}) bool { | ||
// Namespace filter | ||
if len(namespaces) == 0 { | ||
return true | ||
} | ||
if pr, ok := obj.(*v1.PipelineRun); ok { | ||
for _, ns := range namespaces { | ||
if pr.Namespace == ns { | ||
return true | ||
} | ||
} | ||
} | ||
return false | ||
} | ||
} | ||
|
||
// TaskRunInformerFilterFunc returns a filter function | ||
// for TaskRuns ensuring TaskRuns are filtered by list of namespaces membership | ||
func TaskRunInformerFilterFunc(namespaces []string) func(obj interface{}) bool { | ||
return func(obj interface{}) bool { | ||
// Namespace filter | ||
if len(namespaces) == 0 { | ||
return true | ||
} | ||
if tr, ok := obj.(*v1.TaskRun); ok { | ||
for _, ns := range namespaces { | ||
if tr.Namespace == ns { | ||
return true | ||
} | ||
} | ||
} | ||
return false | ||
} | ||
} | ||
|
||
// TaskRunInformerFilterFuncWithOwnership returns a filter function | ||
// for TaskRuns ensuring Ownership by a PipelineRun and filtered by list of namespaces membership and | ||
func TaskRunInformerFilterFuncWithOwnership(namespaces []string) func(obj interface{}) bool { | ||
return func(obj interface{}) bool { | ||
// Ownership filter | ||
if !controller.FilterController(&v1.PipelineRun{})(obj) { | ||
return false | ||
} | ||
// Namespace filter | ||
if len(namespaces) == 0 { | ||
return true | ||
} | ||
if tr, ok := obj.(*v1.TaskRun); ok { | ||
for _, ns := range namespaces { | ||
if tr.Namespace == ns { | ||
return true | ||
} | ||
} | ||
} | ||
return false | ||
} | ||
} |
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,161 @@ | ||
package reconciler | ||
|
||
import ( | ||
"testing" | ||
|
||
v1 "github.com/tektoncd/pipeline/pkg/apis/pipeline/v1" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
) | ||
|
||
// TestPipelineRunInformerFilterFunc tests the PipelineRunInformerFilterFunc | ||
// nolint | ||
func TestPipelineRunInformerFilterFunc(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
namespaces []string | ||
obj interface{} | ||
expected bool | ||
}{ | ||
{ | ||
name: "Empty namespaces, should match", | ||
namespaces: []string{}, | ||
obj: &v1.PipelineRun{ObjectMeta: metav1.ObjectMeta{Namespace: "default"}}, | ||
expected: true, | ||
}, | ||
{ | ||
name: "Matching namespace", | ||
namespaces: []string{"default", "test"}, | ||
obj: &v1.PipelineRun{ObjectMeta: metav1.ObjectMeta{Namespace: "default"}}, | ||
expected: true, | ||
}, | ||
{ | ||
name: "Non-matching namespace", | ||
namespaces: []string{"test"}, | ||
obj: &v1.PipelineRun{ObjectMeta: metav1.ObjectMeta{Namespace: "default"}}, | ||
expected: false, | ||
}, | ||
{ | ||
name: "Non PipelineRun object", | ||
namespaces: []string{"default"}, | ||
obj: &v1.TaskRun{ObjectMeta: metav1.ObjectMeta{Namespace: "default"}}, | ||
expected: false, | ||
}, | ||
} | ||
|
||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
filterFunc := PipelineRunInformerFilterFunc(tt.namespaces) | ||
result := filterFunc(tt.obj) | ||
if result != tt.expected { | ||
t.Errorf("Reconciler.PipelineRunInformerFilterFunc() result = %v, wanted %v", result, tt.expected) | ||
} | ||
}) | ||
} | ||
} | ||
|
||
// TestTaskRunInformerFilterFunc tests the TaskRunInformerFilterFunc | ||
// nolint | ||
func TestTaskRunInformerFilterFunc(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
namespaces []string | ||
obj interface{} | ||
expected bool | ||
}{ | ||
{ | ||
name: "Empty namespaces, should match", | ||
namespaces: []string{}, | ||
obj: &v1.TaskRun{ObjectMeta: metav1.ObjectMeta{Namespace: "default"}}, | ||
expected: true, | ||
}, | ||
{ | ||
name: "Matching namespace", | ||
namespaces: []string{"default", "test"}, | ||
obj: &v1.TaskRun{ObjectMeta: metav1.ObjectMeta{Namespace: "default"}}, | ||
expected: true, | ||
}, | ||
{ | ||
name: "Non-matching namespace", | ||
namespaces: []string{"test"}, | ||
obj: &v1.TaskRun{ObjectMeta: metav1.ObjectMeta{Namespace: "default"}}, | ||
expected: false, | ||
}, | ||
{ | ||
name: "Non TaskRun object", | ||
namespaces: []string{"default"}, | ||
obj: &v1.PipelineRun{ObjectMeta: metav1.ObjectMeta{Namespace: "default"}}, | ||
expected: false, | ||
}, | ||
} | ||
|
||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
filterFunc := TaskRunInformerFilterFunc(tt.namespaces) | ||
result := filterFunc(tt.obj) | ||
if result != tt.expected { | ||
t.Errorf("Reconciler.TaskRunInformerFilterFunc() result = %v, wanted %v", result, tt.expected) | ||
} | ||
}) | ||
} | ||
} | ||
|
||
// TestTaskRunInformerFilterFuncWithOwnership tests the TaskRunInformerFilterFuncWithOwnership | ||
func TestTaskRunInformerFilterFuncWithOwnership(t *testing.T) { | ||
boolValue := true | ||
tests := []struct { | ||
name string | ||
namespaces []string | ||
obj interface{} | ||
expected bool | ||
}{ | ||
{ | ||
name: "Empty namespaces and ownership, should match", | ||
namespaces: []string{}, | ||
obj: &v1.TaskRun{ObjectMeta: metav1.ObjectMeta{ | ||
Namespace: "default", | ||
OwnerReferences: []metav1.OwnerReference{ | ||
{APIVersion: "tekton.dev/v1", Kind: "PipelineRun", Controller: &boolValue}, | ||
}, | ||
}}, | ||
expected: true, | ||
}, | ||
{ | ||
name: "Matching namespace and ownership", | ||
namespaces: []string{"default", "test"}, | ||
obj: &v1.TaskRun{ObjectMeta: metav1.ObjectMeta{ | ||
Namespace: "default", | ||
OwnerReferences: []metav1.OwnerReference{ | ||
{APIVersion: "tekton.dev/v1", Kind: "PipelineRun", Controller: &boolValue}, | ||
}, | ||
}}, | ||
expected: true, | ||
}, | ||
{ | ||
name: "Non-matching namespace and ownership", | ||
namespaces: []string{"test"}, | ||
obj: &v1.TaskRun{ObjectMeta: metav1.ObjectMeta{ | ||
Namespace: "default", | ||
OwnerReferences: []metav1.OwnerReference{ | ||
{APIVersion: "tekton.dev/v1", Kind: "PipelineRun", Controller: &boolValue}, | ||
}, | ||
}}, | ||
expected: false, | ||
}, | ||
{ | ||
name: "No ownership", | ||
namespaces: []string{"default"}, | ||
obj: &v1.TaskRun{ObjectMeta: metav1.ObjectMeta{Namespace: "default"}}, | ||
expected: false, | ||
}, | ||
} | ||
|
||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
filterFunc := TaskRunInformerFilterFuncWithOwnership(tt.namespaces) | ||
result := filterFunc(tt.obj) | ||
if result != tt.expected { | ||
t.Errorf("Reconciler.TaskRunInformerFilterFuncWithOwnership() result = %v, wanted %v", result, tt.expected) | ||
} | ||
}) | ||
} | ||
} |
Oops, something went wrong.