Better error handling when scaling a rc

This commit is contained in:
Janet Kuo
2015-09-14 17:04:13 -07:00
parent a92c8b6886
commit 3aad8cabbd
2 changed files with 46 additions and 1 deletions

View File

@@ -21,6 +21,7 @@ import (
"testing"
"k8s.io/kubernetes/pkg/api"
kerrors "k8s.io/kubernetes/pkg/api/errors"
client "k8s.io/kubernetes/pkg/client/unversioned"
"k8s.io/kubernetes/pkg/client/unversioned/testclient"
)
@@ -41,6 +42,22 @@ func (c *ErrorReplicationControllerClient) ReplicationControllers(namespace stri
return &ErrorReplicationControllers{testclient.FakeReplicationControllers{Fake: &c.Fake, Namespace: namespace}}
}
type InvalidReplicationControllers struct {
testclient.FakeReplicationControllers
}
func (c *InvalidReplicationControllers) Update(controller *api.ReplicationController) (*api.ReplicationController, error) {
return nil, kerrors.NewInvalid(controller.Kind, controller.Name, nil)
}
type InvalidReplicationControllerClient struct {
testclient.Fake
}
func (c *InvalidReplicationControllerClient) ReplicationControllers(namespace string) client.ReplicationControllerInterface {
return &InvalidReplicationControllers{testclient.FakeReplicationControllers{Fake: &c.Fake, Namespace: namespace}}
}
func TestReplicationControllerScaleRetry(t *testing.T) {
fake := &ErrorReplicationControllerClient{Fake: testclient.Fake{}}
scaler := ReplicationControllerScaler{NewScalerClient(fake)}
@@ -51,7 +68,7 @@ func TestReplicationControllerScaleRetry(t *testing.T) {
scaleFunc := ScaleCondition(&scaler, &preconditions, namespace, name, count)
pass, err := scaleFunc()
if pass != false {
if pass {
t.Errorf("Expected an update failure to return pass = false, got pass = %v", pass)
}
if err != nil {
@@ -65,6 +82,25 @@ func TestReplicationControllerScaleRetry(t *testing.T) {
}
}
func TestReplicationControllerScaleInvalid(t *testing.T) {
fake := &InvalidReplicationControllerClient{Fake: testclient.Fake{}}
scaler := ReplicationControllerScaler{NewScalerClient(fake)}
preconditions := ScalePrecondition{-1, ""}
count := uint(3)
name := "foo"
namespace := "default"
scaleFunc := ScaleCondition(&scaler, &preconditions, namespace, name, count)
pass, err := scaleFunc()
if pass {
t.Errorf("Expected an update failure to return pass = false, got pass = %v", pass)
}
e, ok := err.(ControllerScaleError)
if err == nil || !ok || e.FailureType != ControllerScaleUpdateInvalidFailure {
t.Errorf("Expected error on invalid update failure, got %v", err)
}
}
func TestReplicationControllerScale(t *testing.T) {
fake := &testclient.Fake{}
scaler := ReplicationControllerScaler{NewScalerClient(fake)}