Commit 76b3d1e1 authored by Adam Reese's avatar Adam Reese

fix(tests): fix testclient reactions that were not triggering

parent a2543f87
...@@ -77,7 +77,7 @@ func TestInitCmd_exsits(t *testing.T) { ...@@ -77,7 +77,7 @@ func TestInitCmd_exsits(t *testing.T) {
Name: "tiller-deploy", Name: "tiller-deploy",
}, },
}) })
fc.AddReactor("*", "*", func(action testcore.Action) (bool, runtime.Object, error) { fc.PrependReactor("*", "*", func(action testcore.Action) (bool, runtime.Object, error) {
return true, nil, errors.NewAlreadyExists(api.Resource("deployments"), "1") return true, nil, errors.NewAlreadyExists(api.Resource("deployments"), "1")
}) })
cmd := &initCmd{ cmd := &initCmd{
......
...@@ -67,8 +67,8 @@ func TestDeploymentManifest(t *testing.T) { ...@@ -67,8 +67,8 @@ func TestDeploymentManifest(t *testing.T) {
func TestInstall(t *testing.T) { func TestInstall(t *testing.T) {
image := "gcr.io/kubernetes-helm/tiller:v2.0.0" image := "gcr.io/kubernetes-helm/tiller:v2.0.0"
fake := fake.NewSimpleClientset() fc := &fake.Clientset{}
fake.AddReactor("create", "deployments", func(action testcore.Action) (bool, runtime.Object, error) { fc.AddReactor("create", "deployments", func(action testcore.Action) (bool, runtime.Object, error) {
obj := action.(testcore.CreateAction).GetObject().(*extensions.Deployment) obj := action.(testcore.CreateAction).GetObject().(*extensions.Deployment)
l := obj.GetLabels() l := obj.GetLabels()
if reflect.DeepEqual(l, map[string]string{"app": "helm"}) { if reflect.DeepEqual(l, map[string]string{"app": "helm"}) {
...@@ -81,15 +81,18 @@ func TestInstall(t *testing.T) { ...@@ -81,15 +81,18 @@ func TestInstall(t *testing.T) {
return true, obj, nil return true, obj, nil
}) })
err := Install(fake.Extensions(), api.NamespaceDefault, image, false, false) if err := Install(fc.Extensions(), api.NamespaceDefault, image, false, false); err != nil {
if err != nil {
t.Errorf("unexpected error: %#+v", err) t.Errorf("unexpected error: %#+v", err)
} }
if actions := fc.Actions(); len(actions) != 1 {
t.Errorf("unexpected actions: %v, expected 1 actions got %d", actions, len(actions))
}
} }
func TestInstall_canary(t *testing.T) { func TestInstall_canary(t *testing.T) {
fake := fake.NewSimpleClientset() fc := &fake.Clientset{}
fake.AddReactor("create", "deployments", func(action testcore.Action) (bool, runtime.Object, error) { fc.AddReactor("create", "deployments", func(action testcore.Action) (bool, runtime.Object, error) {
obj := action.(testcore.CreateAction).GetObject().(*extensions.Deployment) obj := action.(testcore.CreateAction).GetObject().(*extensions.Deployment)
i := obj.Spec.Template.Spec.Containers[0].Image i := obj.Spec.Template.Spec.Containers[0].Image
if i != "gcr.io/kubernetes-helm/tiller:canary" { if i != "gcr.io/kubernetes-helm/tiller:canary" {
...@@ -98,18 +101,26 @@ func TestInstall_canary(t *testing.T) { ...@@ -98,18 +101,26 @@ func TestInstall_canary(t *testing.T) {
return true, obj, nil return true, obj, nil
}) })
err := Install(fake.Extensions(), api.NamespaceDefault, "", true, false) if err := Install(fc.Extensions(), api.NamespaceDefault, "", true, false); err != nil {
if err != nil {
t.Errorf("unexpected error: %#+v", err) t.Errorf("unexpected error: %#+v", err)
} }
if actions := fc.Actions(); len(actions) != 1 {
t.Errorf("unexpected actions: %v, expected 1 actions got %d", actions, len(actions))
}
} }
func TestUpgrade(t *testing.T) { func TestUpgrade(t *testing.T) {
image := "gcr.io/kubernetes-helm/tiller:v2.0.0" image := "gcr.io/kubernetes-helm/tiller:v2.0.0"
fc := fake.NewSimpleClientset(deployment(api.NamespaceDefault, "imageToReplace", false)) existingDeployment := deployment(api.NamespaceDefault, "imageToReplace", false)
fc := &fake.Clientset{}
fc.AddReactor("get", "deployments", func(action testcore.Action) (bool, runtime.Object, error) {
return true, existingDeployment, nil
})
fc.AddReactor("update", "deployments", func(action testcore.Action) (bool, runtime.Object, error) { fc.AddReactor("update", "deployments", func(action testcore.Action) (bool, runtime.Object, error) {
obj := action.(testcore.CreateAction).GetObject().(*extensions.Deployment) obj := action.(testcore.UpdateAction).GetObject().(*extensions.Deployment)
i := obj.Spec.Template.Spec.Containers[0].Image i := obj.Spec.Template.Spec.Containers[0].Image
if i != image { if i != image {
t.Errorf("expected image = '%s', got '%s'", image, i) t.Errorf("expected image = '%s', got '%s'", image, i)
...@@ -117,8 +128,11 @@ func TestUpgrade(t *testing.T) { ...@@ -117,8 +128,11 @@ func TestUpgrade(t *testing.T) {
return true, obj, nil return true, obj, nil
}) })
err := Upgrade(fc.Extensions(), api.NamespaceDefault, image, false) if err := Upgrade(fc.Extensions(), api.NamespaceDefault, image, false); err != nil {
if err != nil {
t.Errorf("unexpected error: %#+v", err) t.Errorf("unexpected error: %#+v", err)
} }
if actions := fc.Actions(); len(actions) != 2 {
t.Errorf("unexpected actions: %v, expected 2 actions got %d", actions, len(actions))
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment