Skip to content

Commit

Permalink
Extend validation for ReplicationController
Browse files Browse the repository at this point in the history
Provide type safe checks for empty sets of selectors.
  • Loading branch information
smarterclayton committed Jul 25, 2014
1 parent fbd71c9 commit d320248
Show file tree
Hide file tree
Showing 4 changed files with 146 additions and 2 deletions.
16 changes: 15 additions & 1 deletion pkg/api/validation.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import (
"fmt"
"strings"

"github.com/GoogleCloudPlatform/kubernetes/pkg/labels"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"github.com/golang/glog"
)
Expand Down Expand Up @@ -286,8 +287,21 @@ func ValidateService(service *Service) []error {
if service.ID == "" {
allErrs.Append(makeInvalidError("Service.ID", service.ID))
}
if len(service.Selector) == 0 {
if labels.Set(service.Selector).AsSelector().Empty() {
allErrs.Append(makeInvalidError("Service.Selector", service.Selector))
}
return []error(allErrs)
}

// ValidateReplicationController tests if required fields in the replication controller are set.
func ValidateReplicationController(controller *ReplicationController) []error {
errors := []error{}
if controller.ID == "" {
errors = append(errors, makeInvalidError("ReplicationController.ID", controller.ID))
}
if labels.Set(controller.DesiredState.ReplicaSelector).AsSelector().Empty() {
errors = append(errors, makeInvalidError("ReplicationController.ReplicaSelector", controller.DesiredState.ReplicaSelector))
}
errors = append(errors, ValidateManifest(&controller.DesiredState.PodTemplate.DesiredState.Manifest)...)
return errors
}
60 changes: 60 additions & 0 deletions pkg/api/validation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,3 +294,63 @@ func TestValidateService(t *testing.T) {
t.Errorf("Unexpected error list: %#v", errs)
}
}

func TestValidateReplicationController(t *testing.T) {
validSelector := map[string]string{"a": "b"}
validPodTemplate := PodTemplate{
DesiredState: PodState{
Manifest: ContainerManifest{
Version: "v1beta1",
},
},
}

successCases := []ReplicationController{
{
JSONBase: JSONBase{ID: "abc"},
DesiredState: ReplicationControllerState{
ReplicaSelector: validSelector,
PodTemplate: validPodTemplate,
},
},
{
JSONBase: JSONBase{ID: "abc-123"},
DesiredState: ReplicationControllerState{
ReplicaSelector: validSelector,
PodTemplate: validPodTemplate,
},
},
}
for _, successCase := range successCases {
if errs := ValidateReplicationController(&successCase); len(errs) != 0 {
t.Errorf("expected success: %v", errs)
}
}

errorCases := map[string]ReplicationController{
"zero-length ID": {
JSONBase: JSONBase{ID: ""},
DesiredState: ReplicationControllerState{
ReplicaSelector: validSelector,
PodTemplate: validPodTemplate,
},
},
"empty selector": {
JSONBase: JSONBase{ID: "abc"},
DesiredState: ReplicationControllerState{
PodTemplate: validPodTemplate,
},
},
"invalid manifest": {
JSONBase: JSONBase{ID: "abc"},
DesiredState: ReplicationControllerState{
ReplicaSelector: validSelector,
},
},
}
for k, v := range errorCases {
if errs := ValidateReplicationController(&v); len(errs) == 0 {
t.Errorf("expected failure for %s", k)
}
}
}
41 changes: 40 additions & 1 deletion pkg/labels/selector.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ type Selector interface {
// Matches returns true if this selector matches the given set of labels.
Matches(Labels) bool

// Empty returns true if this selector does not restrict the selection space.
Empty() bool

// String returns a human readable string that represents this selector.
String() string
}
Expand All @@ -44,6 +47,10 @@ func (t *hasTerm) Matches(ls Labels) bool {
return ls.Get(t.label) == t.value
}

func (t *hasTerm) Empty() bool {
return false
}

func (t *hasTerm) String() string {
return fmt.Sprintf("%v=%v", t.label, t.value)
}
Expand All @@ -56,6 +63,10 @@ func (t *notHasTerm) Matches(ls Labels) bool {
return ls.Get(t.label) != t.value
}

func (t *notHasTerm) Empty() bool {
return false
}

func (t *notHasTerm) String() string {
return fmt.Sprintf("%v!=%v", t.label, t.value)
}
Expand All @@ -71,6 +82,21 @@ func (t andTerm) Matches(ls Labels) bool {
return true
}

func (t andTerm) Empty() bool {
if t == nil {
return true
}
if len([]Selector(t)) == 0 {
return true
}
for i := range t {
if !t[i].Empty() {
return false
}
}
return true
}

func (t andTerm) String() string {
var terms []string
for _, q := range t {
Expand All @@ -87,8 +113,12 @@ func try(selectorPiece, op string) (lhs, rhs string, ok bool) {
return "", "", false
}

// SelectorFromSet returns a Selector which will match exactly the given Set.
// SelectorFromSet returns a Selector which will match exactly the given Set. A
// nil Set is considered equivalent to Everything().
func SelectorFromSet(ls Set) Selector {
if ls == nil {
return Everything()
}
items := make([]Selector, 0, len(ls))
for label, value := range ls {
items = append(items, &hasTerm{label: label, value: value})
Expand Down Expand Up @@ -124,3 +154,12 @@ func ParseSelector(selector string) (Selector, error) {
}
return andTerm(items), nil
}

// MustParseSelector parses the selection or panics.
func MustParseSelector(selector string) Selector {
s, err := ParseSelector(selector)
if err != nil {
panic(err)
}
return s
}
31 changes: 31 additions & 0 deletions pkg/labels/selector_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ func TestEverything(t *testing.T) {
if !Everything().Matches(Set{"x": "y"}) {
t.Errorf("Nil selector didn't match")
}
if !Everything().Empty() {
t.Errorf("Everything was not empty")
}
}

func TestSelectorMatches(t *testing.T) {
Expand Down Expand Up @@ -132,3 +135,31 @@ func TestSetMatches(t *testing.T) {
expectNoMatchDirect(t, Set{"baz": "=bar"}, labelset)
expectNoMatchDirect(t, Set{"foo": "=bar", "foobar": "bar", "baz": "blah"}, labelset)
}

func TestNilMapIsValid(t *testing.T) {
selector := Set(nil).AsSelector()
if selector == nil {
t.Errorf("Selector for nil set should be Everything")
}
if !selector.Empty() {
t.Errorf("Selector for nil set should be Empty")
}
}

func TestSetIsEmpty(t *testing.T) {
if !(Set{}).AsSelector().Empty() {
t.Errorf("Empty set should be empty")
}
if !(andTerm(nil)).Empty() {
t.Errorf("Nil andTerm should be empty")
}
if (&hasTerm{}).Empty() {
t.Errorf("hasTerm should not be empty")
}
if !(andTerm{andTerm{}}).Empty() {
t.Errorf("Nested andTerm should be empty")
}
if (andTerm{&hasTerm{"a", "b"}}).Empty() {
t.Errorf("Nested andTerm should not be empty")
}
}

0 comments on commit d320248

Please sign in to comment.