-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace fmt.Sprintf() with labels.NewSelector() for building labelsel…
…ectors (cherry picked from commit f580edf)
- Loading branch information
1 parent
2f79547
commit a099f66
Showing
11 changed files
with
559 additions
and
87 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,42 @@ | ||
/* | ||
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 common | ||
|
||
import ( | ||
"fmt" | ||
"strings" | ||
|
||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/labels" | ||
"k8s.io/apimachinery/pkg/selection" | ||
) | ||
|
||
func LabelSelector(ls metav1.LabelSelector) (string, error) { | ||
var ( | ||
err error | ||
req *labels.Requirement | ||
s []string | ||
) | ||
for k, v := range ls.MatchLabels { | ||
req, err = labels.NewRequirement(k, selection.Equals, []string{v}) | ||
if err != nil { | ||
return "", fmt.Errorf("failed to create requirement: %w", err) | ||
} | ||
s = append(s, labels.NewSelector().Add(*req).String()) | ||
} | ||
return strings.Join(s, ","), err | ||
} |
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,51 @@ | ||
/* | ||
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 common | ||
|
||
import ( | ||
"testing" | ||
|
||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
) | ||
|
||
func TestLabelSelector(t *testing.T) { | ||
for _, c := range []struct { | ||
name string | ||
ls metav1.LabelSelector | ||
want string | ||
}{{ | ||
name: "empty label selector", | ||
ls: metav1.LabelSelector{}, | ||
want: "", | ||
}, { | ||
name: "non empty label selector", | ||
ls: metav1.LabelSelector{ | ||
MatchLabels: map[string]string{ | ||
"createdByKey": "createdByValue", | ||
"installerSetType": "pipelineResourceName", | ||
}, | ||
}, | ||
want: "createdByKey=createdByValue,installerSetType=pipelineResourceName", | ||
}} { | ||
t.Run(c.name, func(t *testing.T) { | ||
got, _ := LabelSelector(c.ls) | ||
if got != c.want { | ||
t.Errorf("LabelSelector:\n got %q\nwant %q", got, c.want) | ||
} | ||
}) | ||
} | ||
} |
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
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
Oops, something went wrong.