k3s/pkg/controller/replication_controller_test.go

358 lines
9.3 KiB
Go
Raw Normal View History

2014-06-06 23:40:48 +00:00
/*
Copyright 2014 Google Inc. All rights reserved.
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 controller
2014-06-06 23:40:48 +00:00
import (
"encoding/json"
"fmt"
"net/http"
2014-06-06 23:40:48 +00:00
"net/http/httptest"
"reflect"
"sync"
2014-06-06 23:40:48 +00:00
"testing"
"time"
2014-06-06 23:40:48 +00:00
2014-06-12 20:17:34 +00:00
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
"github.com/GoogleCloudPlatform/kubernetes/pkg/api/latest"
"github.com/GoogleCloudPlatform/kubernetes/pkg/api/v1beta1"
2014-06-12 20:17:34 +00:00
"github.com/GoogleCloudPlatform/kubernetes/pkg/client"
2014-08-05 23:20:50 +00:00
"github.com/GoogleCloudPlatform/kubernetes/pkg/labels"
"github.com/GoogleCloudPlatform/kubernetes/pkg/runtime"
"github.com/GoogleCloudPlatform/kubernetes/pkg/tools"
2014-06-06 23:40:48 +00:00
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"github.com/GoogleCloudPlatform/kubernetes/pkg/watch"
2014-06-06 23:40:48 +00:00
"github.com/coreos/go-etcd/etcd"
)
// TODO: Move this to a common place, it's needed in multiple tests.
var apiPath = "/api/v1beta1"
2014-07-10 11:47:10 +00:00
func makeURL(suffix string) string {
2014-06-06 23:40:48 +00:00
return apiPath + suffix
}
2014-06-09 05:38:45 +00:00
type FakePodControl struct {
2014-06-12 20:17:34 +00:00
controllerSpec []api.ReplicationController
2014-06-12 21:09:40 +00:00
deletePodID []string
lock sync.Mutex
2014-06-06 23:40:48 +00:00
}
2014-06-12 20:17:34 +00:00
func (f *FakePodControl) createReplica(spec api.ReplicationController) {
f.lock.Lock()
defer f.lock.Unlock()
2014-06-06 23:40:48 +00:00
f.controllerSpec = append(f.controllerSpec, spec)
}
2014-06-09 05:38:45 +00:00
func (f *FakePodControl) deletePod(podID string) error {
f.lock.Lock()
defer f.lock.Unlock()
2014-06-09 05:38:45 +00:00
f.deletePodID = append(f.deletePodID, podID)
2014-06-06 23:40:48 +00:00
return nil
}
func newReplicationController(replicas int) api.ReplicationController {
2014-06-12 20:17:34 +00:00
return api.ReplicationController{
DesiredState: api.ReplicationControllerState{
2014-06-06 23:40:48 +00:00
Replicas: replicas,
2014-06-12 20:17:34 +00:00
PodTemplate: api.PodTemplate{
DesiredState: api.PodState{
Manifest: api.ContainerManifest{
Containers: []api.Container{
2014-06-12 21:09:40 +00:00
{
2014-06-06 23:40:48 +00:00
Image: "foo/bar",
},
},
},
},
Labels: map[string]string{
"name": "foo",
"type": "production",
},
},
},
}
}
2014-09-08 04:14:18 +00:00
func newPodList(count int) *api.PodList {
2014-06-12 20:17:34 +00:00
pods := []api.Pod{}
2014-06-06 23:40:48 +00:00
for i := 0; i < count; i++ {
2014-06-12 20:17:34 +00:00
pods = append(pods, api.Pod{
JSONBase: api.JSONBase{
2014-06-09 05:38:45 +00:00
ID: fmt.Sprintf("pod%d", i),
2014-06-06 23:40:48 +00:00
},
})
}
2014-09-08 04:14:18 +00:00
return &api.PodList{
2014-06-09 05:38:45 +00:00
Items: pods,
2014-06-06 23:40:48 +00:00
}
}
2014-06-09 05:38:45 +00:00
func validateSyncReplication(t *testing.T, fakePodControl *FakePodControl, expectedCreates, expectedDeletes int) {
if len(fakePodControl.controllerSpec) != expectedCreates {
t.Errorf("Unexpected number of creates. Expected %d, saw %d\n", expectedCreates, len(fakePodControl.controllerSpec))
2014-06-06 23:40:48 +00:00
}
2014-06-09 05:38:45 +00:00
if len(fakePodControl.deletePodID) != expectedDeletes {
t.Errorf("Unexpected number of deletes. Expected %d, saw %d\n", expectedDeletes, len(fakePodControl.deletePodID))
2014-06-06 23:40:48 +00:00
}
}
func TestSyncReplicationControllerDoesNothing(t *testing.T) {
body, _ := latest.Codec.Encode(newPodList(2))
2014-06-06 23:40:48 +00:00
fakeHandler := util.FakeHandler{
StatusCode: 200,
ResponseBody: string(body),
}
testServer := httptest.NewTLSServer(&fakeHandler)
client := client.NewOrDie(testServer.URL, nil)
2014-06-06 23:40:48 +00:00
2014-06-09 05:38:45 +00:00
fakePodControl := FakePodControl{}
2014-06-06 23:40:48 +00:00
manager := NewReplicationManager(client)
2014-06-09 05:38:45 +00:00
manager.podControl = &fakePodControl
2014-06-06 23:40:48 +00:00
controllerSpec := newReplicationController(2)
2014-06-06 23:40:48 +00:00
manager.syncReplicationController(controllerSpec)
2014-06-09 05:38:45 +00:00
validateSyncReplication(t, &fakePodControl, 0, 0)
2014-06-06 23:40:48 +00:00
}
func TestSyncReplicationControllerDeletes(t *testing.T) {
body, _ := latest.Codec.Encode(newPodList(2))
2014-06-06 23:40:48 +00:00
fakeHandler := util.FakeHandler{
StatusCode: 200,
ResponseBody: string(body),
}
testServer := httptest.NewTLSServer(&fakeHandler)
client := client.NewOrDie(testServer.URL, nil)
2014-06-06 23:40:48 +00:00
2014-06-09 05:38:45 +00:00
fakePodControl := FakePodControl{}
2014-06-06 23:40:48 +00:00
manager := NewReplicationManager(client)
2014-06-09 05:38:45 +00:00
manager.podControl = &fakePodControl
2014-06-06 23:40:48 +00:00
controllerSpec := newReplicationController(1)
2014-06-06 23:40:48 +00:00
manager.syncReplicationController(controllerSpec)
2014-06-09 05:38:45 +00:00
validateSyncReplication(t, &fakePodControl, 0, 1)
2014-06-06 23:40:48 +00:00
}
func TestSyncReplicationControllerCreates(t *testing.T) {
body, _ := latest.Codec.Encode(newPodList(0))
2014-06-06 23:40:48 +00:00
fakeHandler := util.FakeHandler{
StatusCode: 200,
ResponseBody: string(body),
}
testServer := httptest.NewTLSServer(&fakeHandler)
client := client.NewOrDie(testServer.URL, nil)
2014-06-06 23:40:48 +00:00
2014-06-09 05:38:45 +00:00
fakePodControl := FakePodControl{}
2014-06-06 23:40:48 +00:00
manager := NewReplicationManager(client)
2014-06-09 05:38:45 +00:00
manager.podControl = &fakePodControl
2014-06-06 23:40:48 +00:00
controllerSpec := newReplicationController(2)
2014-06-06 23:40:48 +00:00
manager.syncReplicationController(controllerSpec)
2014-06-09 05:38:45 +00:00
validateSyncReplication(t, &fakePodControl, 2, 0)
2014-06-06 23:40:48 +00:00
}
func TestCreateReplica(t *testing.T) {
body, _ := v1beta1.Codec.Encode(&api.Pod{})
2014-06-06 23:40:48 +00:00
fakeHandler := util.FakeHandler{
StatusCode: 200,
ResponseBody: string(body),
}
testServer := httptest.NewTLSServer(&fakeHandler)
client := client.NewOrDie(testServer.URL, nil)
2014-06-06 23:40:48 +00:00
2014-06-09 05:38:45 +00:00
podControl := RealPodControl{
2014-06-06 23:40:48 +00:00
kubeClient: client,
}
2014-06-12 20:17:34 +00:00
controllerSpec := api.ReplicationController{
2014-07-16 21:30:28 +00:00
JSONBase: api.JSONBase{
Kind: "ReplicationController",
},
2014-06-12 20:17:34 +00:00
DesiredState: api.ReplicationControllerState{
PodTemplate: api.PodTemplate{
DesiredState: api.PodState{
Manifest: api.ContainerManifest{
Containers: []api.Container{
2014-06-12 21:09:40 +00:00
{
2014-06-06 23:40:48 +00:00
Image: "foo/bar",
},
},
},
},
Labels: map[string]string{
"name": "foo",
"type": "production",
},
},
},
}
2014-06-09 05:38:45 +00:00
podControl.createReplica(controllerSpec)
2014-06-06 23:40:48 +00:00
expectedPod := api.Pod{
JSONBase: api.JSONBase{
2014-07-16 21:30:28 +00:00
Kind: "Pod",
APIVersion: latest.Version,
},
Labels: controllerSpec.DesiredState.PodTemplate.Labels,
DesiredState: controllerSpec.DesiredState.PodTemplate.DesiredState,
}
2014-07-10 11:47:10 +00:00
fakeHandler.ValidateRequest(t, makeURL("/pods"), "POST", nil)
actualPod := api.Pod{}
if err := json.Unmarshal([]byte(fakeHandler.RequestBody), &actualPod); err != nil {
t.Errorf("Unexpected error: %#v", err)
}
if !reflect.DeepEqual(expectedPod, actualPod) {
t.Logf("Body: %s", fakeHandler.RequestBody)
2014-07-16 21:30:28 +00:00
t.Errorf("Unexpected mismatch. Expected\n %#v,\n Got:\n %#v", expectedPod, actualPod)
}
2014-06-06 23:40:48 +00:00
}
func TestSyncronize(t *testing.T) {
controllerSpec1 := api.ReplicationController{
2014-07-16 21:30:28 +00:00
JSONBase: api.JSONBase{APIVersion: "v1beta1"},
DesiredState: api.ReplicationControllerState{
Replicas: 4,
PodTemplate: api.PodTemplate{
DesiredState: api.PodState{
Manifest: api.ContainerManifest{
Containers: []api.Container{
{
Image: "foo/bar",
},
},
},
},
Labels: map[string]string{
"name": "foo",
"type": "production",
},
},
},
}
controllerSpec2 := api.ReplicationController{
2014-07-16 21:30:28 +00:00
JSONBase: api.JSONBase{APIVersion: "v1beta1"},
DesiredState: api.ReplicationControllerState{
Replicas: 3,
PodTemplate: api.PodTemplate{
DesiredState: api.PodState{
Manifest: api.ContainerManifest{
Containers: []api.Container{
{
Image: "bar/baz",
},
},
},
},
Labels: map[string]string{
"name": "bar",
"type": "production",
},
},
},
}
fakeEtcd := tools.NewFakeEtcdClient(t)
fakeEtcd.Data["/registry/controllers"] = tools.EtcdResponseWithError{
R: &etcd.Response{
Node: &etcd.Node{
Nodes: []*etcd.Node{
{
Value: util.EncodeJSON(controllerSpec1),
},
{
Value: util.EncodeJSON(controllerSpec2),
},
},
},
},
}
fakePodHandler := util.FakeHandler{
StatusCode: 200,
ResponseBody: "{\"apiVersion\": \"" + latest.Version + "\", \"kind\": \"PodList\"}",
T: t,
}
fakeControllerHandler := util.FakeHandler{
StatusCode: 200,
ResponseBody: runtime.EncodeOrDie(latest.Codec, &api.ReplicationControllerList{
Items: []api.ReplicationController{
controllerSpec1,
controllerSpec2,
},
}),
T: t,
}
mux := http.NewServeMux()
mux.Handle("/api/v1beta1/pods/", &fakePodHandler)
mux.Handle("/api/v1beta1/replicationControllers/", &fakeControllerHandler)
mux.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) {
w.WriteHeader(http.StatusNotFound)
t.Errorf("Unexpected request for %v", req.RequestURI)
})
2014-08-05 23:20:50 +00:00
testServer := httptest.NewServer(mux)
client := client.NewOrDie(testServer.URL, nil)
manager := NewReplicationManager(client)
fakePodControl := FakePodControl{}
manager.podControl = &fakePodControl
manager.synchronize()
validateSyncReplication(t, &fakePodControl, 7, 0)
}
2014-08-05 23:20:50 +00:00
type FakeWatcher struct {
w *watch.FakeWatcher
*client.Fake
2014-08-05 23:20:50 +00:00
}
2014-08-05 23:20:50 +00:00
func (fw FakeWatcher) WatchReplicationControllers(l, f labels.Selector, rv uint64) (watch.Interface, error) {
return fw.w, nil
}
func TestWatchControllers(t *testing.T) {
client := FakeWatcher{watch.NewFake(), &client.Fake{}}
manager := NewReplicationManager(client)
var testControllerSpec api.ReplicationController
received := make(chan struct{})
manager.syncHandler = func(controllerSpec api.ReplicationController) error {
if !reflect.DeepEqual(controllerSpec, testControllerSpec) {
t.Errorf("Expected %#v, but got %#v", testControllerSpec, controllerSpec)
}
2014-06-30 21:48:57 +00:00
close(received)
return nil
}
resourceVersion := uint64(0)
go manager.watchControllers(&resourceVersion)
2014-06-30 21:48:57 +00:00
// Test normal case
testControllerSpec.ID = "foo"
2014-08-05 23:20:50 +00:00
client.w.Add(&testControllerSpec)
2014-06-30 21:48:57 +00:00
select {
case <-received:
case <-time.After(10 * time.Millisecond):
t.Errorf("Expected 1 call but got 0")
}
}