2015-10-14 18:03:59 +00:00
|
|
|
/*
|
2016-06-03 00:25:58 +00:00
|
|
|
Copyright 2016 The Kubernetes Authors.
|
2015-10-14 18:03:59 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2016-12-03 18:57:26 +00:00
|
|
|
package v1
|
2015-10-14 18:03:59 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
2016-04-22 15:36:25 +00:00
|
|
|
"strings"
|
2015-10-14 18:03:59 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"k8s.io/kubernetes/pkg/labels"
|
|
|
|
)
|
|
|
|
|
2015-12-01 09:24:21 +00:00
|
|
|
func TestLabelSelectorAsSelector(t *testing.T) {
|
2015-10-14 18:03:59 +00:00
|
|
|
matchLabels := map[string]string{"foo": "bar"}
|
2015-12-01 09:24:21 +00:00
|
|
|
matchExpressions := []LabelSelectorRequirement{{
|
2015-10-14 18:03:59 +00:00
|
|
|
Key: "baz",
|
2015-12-01 09:24:21 +00:00
|
|
|
Operator: LabelSelectorOpIn,
|
2015-10-14 18:03:59 +00:00
|
|
|
Values: []string{"qux", "norf"},
|
|
|
|
}}
|
|
|
|
mustParse := func(s string) labels.Selector {
|
|
|
|
out, e := labels.Parse(s)
|
|
|
|
if e != nil {
|
|
|
|
panic(e)
|
|
|
|
}
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
tc := []struct {
|
2015-12-01 09:24:21 +00:00
|
|
|
in *LabelSelector
|
2015-10-14 18:03:59 +00:00
|
|
|
out labels.Selector
|
|
|
|
expectErr bool
|
|
|
|
}{
|
|
|
|
{in: nil, out: labels.Nothing()},
|
2015-12-01 09:24:21 +00:00
|
|
|
{in: &LabelSelector{}, out: labels.Everything()},
|
2015-10-14 18:03:59 +00:00
|
|
|
{
|
2015-12-01 09:24:21 +00:00
|
|
|
in: &LabelSelector{MatchLabels: matchLabels},
|
2016-03-09 00:27:13 +00:00
|
|
|
out: mustParse("foo=bar"),
|
2015-10-14 18:03:59 +00:00
|
|
|
},
|
|
|
|
{
|
2015-12-01 09:24:21 +00:00
|
|
|
in: &LabelSelector{MatchExpressions: matchExpressions},
|
2015-10-14 18:03:59 +00:00
|
|
|
out: mustParse("baz in (norf,qux)"),
|
|
|
|
},
|
|
|
|
{
|
2015-12-01 09:24:21 +00:00
|
|
|
in: &LabelSelector{MatchLabels: matchLabels, MatchExpressions: matchExpressions},
|
2016-03-09 00:27:13 +00:00
|
|
|
out: mustParse("baz in (norf,qux),foo=bar"),
|
2015-10-14 18:03:59 +00:00
|
|
|
},
|
|
|
|
{
|
2015-12-01 09:24:21 +00:00
|
|
|
in: &LabelSelector{
|
|
|
|
MatchExpressions: []LabelSelectorRequirement{{
|
2015-10-14 18:03:59 +00:00
|
|
|
Key: "baz",
|
2015-12-01 09:24:21 +00:00
|
|
|
Operator: LabelSelectorOpExists,
|
2015-10-14 18:03:59 +00:00
|
|
|
Values: []string{"qux", "norf"},
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
expectErr: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, tc := range tc {
|
2015-12-01 09:24:21 +00:00
|
|
|
out, err := LabelSelectorAsSelector(tc.in)
|
2015-10-14 18:03:59 +00:00
|
|
|
if err == nil && tc.expectErr {
|
|
|
|
t.Errorf("[%v]expected error but got none.", i)
|
|
|
|
}
|
|
|
|
if err != nil && !tc.expectErr {
|
|
|
|
t.Errorf("[%v]did not expect error but got: %v", i, err)
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(out, tc.out) {
|
|
|
|
t.Errorf("[%v]expected:\n\t%+v\nbut got:\n\t%+v", i, tc.out, out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-22 15:36:25 +00:00
|
|
|
|
|
|
|
func TestLabelSelectorAsMap(t *testing.T) {
|
|
|
|
matchLabels := map[string]string{"foo": "bar"}
|
|
|
|
matchExpressions := func(operator LabelSelectorOperator, values []string) []LabelSelectorRequirement {
|
|
|
|
return []LabelSelectorRequirement{{
|
|
|
|
Key: "baz",
|
|
|
|
Operator: operator,
|
|
|
|
Values: values,
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
in *LabelSelector
|
|
|
|
out map[string]string
|
|
|
|
errString string
|
|
|
|
}{
|
|
|
|
{in: nil, out: nil},
|
|
|
|
{
|
|
|
|
in: &LabelSelector{MatchLabels: matchLabels},
|
|
|
|
out: map[string]string{"foo": "bar"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: &LabelSelector{MatchLabels: matchLabels, MatchExpressions: matchExpressions(LabelSelectorOpIn, []string{"norf"})},
|
|
|
|
out: map[string]string{"foo": "bar", "baz": "norf"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: &LabelSelector{MatchExpressions: matchExpressions(LabelSelectorOpIn, []string{"norf"})},
|
|
|
|
out: map[string]string{"baz": "norf"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: &LabelSelector{MatchLabels: matchLabels, MatchExpressions: matchExpressions(LabelSelectorOpIn, []string{"norf", "qux"})},
|
|
|
|
out: map[string]string{"foo": "bar"},
|
|
|
|
errString: "without a single value cannot be converted",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: &LabelSelector{MatchExpressions: matchExpressions(LabelSelectorOpNotIn, []string{"norf", "qux"})},
|
|
|
|
out: map[string]string{},
|
|
|
|
errString: "cannot be converted",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: &LabelSelector{MatchLabels: matchLabels, MatchExpressions: matchExpressions(LabelSelectorOpExists, []string{})},
|
|
|
|
out: map[string]string{"foo": "bar"},
|
|
|
|
errString: "cannot be converted",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: &LabelSelector{MatchExpressions: matchExpressions(LabelSelectorOpDoesNotExist, []string{})},
|
|
|
|
out: map[string]string{},
|
|
|
|
errString: "cannot be converted",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, tc := range tests {
|
|
|
|
out, err := LabelSelectorAsMap(tc.in)
|
|
|
|
if err == nil && len(tc.errString) > 0 {
|
|
|
|
t.Errorf("[%v]expected error but got none.", i)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if err != nil && len(tc.errString) == 0 {
|
|
|
|
t.Errorf("[%v]did not expect error but got: %v", i, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if err != nil && len(tc.errString) > 0 && !strings.Contains(err.Error(), tc.errString) {
|
|
|
|
t.Errorf("[%v]expected error with %q but got: %v", i, tc.errString, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(out, tc.out) {
|
|
|
|
t.Errorf("[%v]expected:\n\t%+v\nbut got:\n\t%+v", i, tc.out, out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|