k3s/pkg/kubectl/stop_test.go

187 lines
4.9 KiB
Go
Raw Normal View History

2015-01-22 17:46:38 +00:00
/*
Copyright 2014 The Kubernetes Authors All rights reserved.
2015-01-22 17:46:38 +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.
*/
package kubectl
import (
"fmt"
"testing"
"time"
2015-08-05 22:03:47 +00:00
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/client"
"k8s.io/kubernetes/pkg/client/testclient"
2015-01-22 17:46:38 +00:00
)
func TestReplicationControllerStop(t *testing.T) {
name := "foo"
ns := "default"
fake := testclient.NewSimpleFake(&api.ReplicationController{
ObjectMeta: api.ObjectMeta{
Name: name,
Namespace: ns,
},
Spec: api.ReplicationControllerSpec{
Replicas: 0,
2015-01-22 17:46:38 +00:00
},
})
2015-01-22 17:46:38 +00:00
reaper := ReplicationControllerReaper{fake, time.Millisecond, time.Millisecond}
s, err := reaper.Stop(ns, name, 0, nil)
2015-01-22 17:46:38 +00:00
if err != nil {
t.Errorf("unexpected error: %v", err)
}
expected := "foo stopped"
if s != expected {
t.Errorf("expected %s, got %s", expected, s)
}
actions := fake.Actions()
if len(actions) != 7 {
t.Errorf("unexpected actions: %v, expected 6 actions (get, list, get, update, get, get, delete)", fake.Actions)
2015-01-22 17:46:38 +00:00
}
2015-08-03 13:21:11 +00:00
for i, verb := range []string{"get", "list", "get", "update", "get", "get", "delete"} {
if actions[i].GetResource() != "replicationcontrollers" {
t.Errorf("unexpected action: %+v, expected %s-replicationController", actions[i], verb)
continue
}
if actions[i].GetVerb() != verb {
t.Errorf("unexpected action: %+v, expected %s-replicationController", actions[i], verb)
2015-01-22 17:46:38 +00:00
}
}
}
type noSuchPod struct {
*testclient.FakePods
2015-01-22 17:46:38 +00:00
}
func (c *noSuchPod) Get(name string) (*api.Pod, error) {
return nil, fmt.Errorf("%s does not exist", name)
}
type noDeleteService struct {
*testclient.FakeServices
2015-01-22 17:46:38 +00:00
}
func (c *noDeleteService) Delete(service string) error {
return fmt.Errorf("I'm afraid I can't do that, Dave")
}
type reaperFake struct {
*testclient.Fake
2015-01-22 17:46:38 +00:00
noSuchPod, noDeleteService bool
}
func (c *reaperFake) Pods(namespace string) client.PodInterface {
2015-08-08 01:52:23 +00:00
pods := &testclient.FakePods{Fake: c.Fake, Namespace: namespace}
2015-01-22 17:46:38 +00:00
if c.noSuchPod {
return &noSuchPod{pods}
}
return pods
}
func (c *reaperFake) Services(namespace string) client.ServiceInterface {
2015-08-08 01:52:23 +00:00
services := &testclient.FakeServices{Fake: c.Fake, Namespace: namespace}
2015-01-22 17:46:38 +00:00
if c.noDeleteService {
return &noDeleteService{services}
}
return services
}
func TestSimpleStop(t *testing.T) {
tests := []struct {
fake *reaperFake
kind string
2015-08-03 13:21:11 +00:00
actions []testclient.Action
2015-01-22 17:46:38 +00:00
expectError bool
test string
}{
{
fake: &reaperFake{
Fake: &testclient.Fake{},
2015-01-22 17:46:38 +00:00
},
2015-08-03 13:21:11 +00:00
kind: "Pod",
actions: []testclient.Action{
testclient.NewGetAction("pods", api.NamespaceDefault, "foo"),
testclient.NewDeleteAction("pods", api.NamespaceDefault, "foo"),
},
2015-01-22 17:46:38 +00:00
expectError: false,
test: "stop pod succeeds",
},
{
fake: &reaperFake{
Fake: &testclient.Fake{},
2015-01-22 17:46:38 +00:00
},
2015-08-03 13:21:11 +00:00
kind: "Service",
actions: []testclient.Action{
testclient.NewGetAction("services", api.NamespaceDefault, "foo"),
testclient.NewDeleteAction("services", api.NamespaceDefault, "foo"),
},
2015-01-22 17:46:38 +00:00
expectError: false,
test: "stop service succeeds",
},
{
fake: &reaperFake{
Fake: &testclient.Fake{},
2015-01-22 17:46:38 +00:00
noSuchPod: true,
},
kind: "Pod",
2015-08-03 13:21:11 +00:00
actions: []testclient.Action{},
2015-01-22 17:46:38 +00:00
expectError: true,
test: "stop pod fails, no pod",
},
{
fake: &reaperFake{
Fake: &testclient.Fake{},
2015-01-22 17:46:38 +00:00
noDeleteService: true,
},
2015-08-03 13:21:11 +00:00
kind: "Service",
actions: []testclient.Action{
testclient.NewGetAction("services", api.NamespaceDefault, "foo"),
},
2015-01-22 17:46:38 +00:00
expectError: true,
test: "stop service fails, can't delete",
},
}
for _, test := range tests {
fake := test.fake
reaper, err := ReaperFor(test.kind, fake)
if err != nil {
t.Errorf("unexpected error: %v (%s)", err, test.test)
}
s, err := reaper.Stop("default", "foo", 0, nil)
2015-01-22 17:46:38 +00:00
if err != nil && !test.expectError {
t.Errorf("unexpected error: %v (%s)", err, test.test)
}
if err == nil {
if test.expectError {
t.Errorf("unexpected non-error: %v (%s)", err, test.test)
}
if s != "foo stopped" {
t.Errorf("unexpected return: %s (%s)", s, test.test)
}
}
actions := fake.Actions()
if len(test.actions) != len(actions) {
2015-01-22 17:46:38 +00:00
t.Errorf("unexpected actions: %v; expected %v (%s)", fake.Actions, test.actions, test.test)
}
for i, action := range actions {
2015-01-22 17:46:38 +00:00
testAction := test.actions[i]
2015-08-03 13:21:11 +00:00
if action != testAction {
t.Errorf("unexpected action: %#v; expected %v (%s)", action, testAction, test.test)
2015-01-22 17:46:38 +00:00
}
}
}
}