2017-06-01 00:53:42 +00:00
|
|
|
/*
|
|
|
|
Copyright 2017 The Kubernetes Authors.
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2017-07-18 08:08:43 +00:00
|
|
|
package markmaster
|
2017-06-01 00:53:42 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
|
|
|
|
2017-07-18 08:08:43 +00:00
|
|
|
"k8s.io/api/core/v1"
|
2017-06-01 00:53:42 +00:00
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
clientset "k8s.io/client-go/kubernetes"
|
|
|
|
restclient "k8s.io/client-go/rest"
|
|
|
|
kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
|
|
|
|
kubeletapis "k8s.io/kubernetes/pkg/kubelet/apis"
|
|
|
|
"k8s.io/kubernetes/pkg/util/node"
|
|
|
|
)
|
|
|
|
|
2017-07-18 08:08:43 +00:00
|
|
|
func TestMarkMaster(t *testing.T) {
|
2017-06-01 00:53:42 +00:00
|
|
|
// Note: this test takes advantage of the deterministic marshalling of
|
|
|
|
// JSON provided by strategicpatch so that "expectedPatch" can use a
|
|
|
|
// string equality test instead of a logical JSON equality test. That
|
|
|
|
// will need to change if strategicpatch's behavior changes in the
|
|
|
|
// future.
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
existingLabel string
|
2017-07-18 08:08:43 +00:00
|
|
|
existingTaint *v1.Taint
|
2017-06-01 00:53:42 +00:00
|
|
|
expectedPatch string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
"master label and taint missing",
|
|
|
|
"",
|
|
|
|
nil,
|
2017-03-13 21:15:43 +00:00
|
|
|
"{\"metadata\":{\"labels\":{\"node-role.kubernetes.io/master\":\"\"}},\"spec\":{\"taints\":[{\"effect\":\"NoSchedule\",\"key\":\"node-role.kubernetes.io/master\"}]}}",
|
2017-06-01 00:53:42 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"master label missing",
|
|
|
|
"",
|
2017-07-18 08:08:43 +00:00
|
|
|
&kubeadmconstants.MasterTaint,
|
2017-06-01 00:53:42 +00:00
|
|
|
"{\"metadata\":{\"labels\":{\"node-role.kubernetes.io/master\":\"\"}}}",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"master taint missing",
|
2017-07-18 08:08:43 +00:00
|
|
|
kubeadmconstants.LabelNodeRoleMaster,
|
2017-06-01 00:53:42 +00:00
|
|
|
nil,
|
2017-03-13 21:15:43 +00:00
|
|
|
"{\"spec\":{\"taints\":[{\"effect\":\"NoSchedule\",\"key\":\"node-role.kubernetes.io/master\"}]}}",
|
2017-06-01 00:53:42 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"nothing missing",
|
2017-07-18 08:08:43 +00:00
|
|
|
kubeadmconstants.LabelNodeRoleMaster,
|
|
|
|
&kubeadmconstants.MasterTaint,
|
2017-06-01 00:53:42 +00:00
|
|
|
"{}",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range tests {
|
|
|
|
hostname := node.GetHostname("")
|
2017-07-18 08:08:43 +00:00
|
|
|
masterNode := &v1.Node{
|
2017-06-01 00:53:42 +00:00
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: hostname,
|
|
|
|
Labels: map[string]string{
|
|
|
|
kubeletapis.LabelHostname: hostname,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if tc.existingLabel != "" {
|
|
|
|
masterNode.ObjectMeta.Labels[tc.existingLabel] = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
if tc.existingTaint != nil {
|
|
|
|
masterNode.Spec.Taints = append(masterNode.Spec.Taints, *tc.existingTaint)
|
|
|
|
}
|
|
|
|
|
|
|
|
jsonNode, err := json.Marshal(masterNode)
|
|
|
|
if err != nil {
|
2017-07-18 08:08:43 +00:00
|
|
|
t.Fatalf("MarkMaster(%s): unexpected encoding error: %v", tc.name, err)
|
2017-06-01 00:53:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var patchRequest string
|
|
|
|
s := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
|
|
|
|
if req.URL.Path != "/api/v1/nodes/"+hostname {
|
2017-07-18 08:08:43 +00:00
|
|
|
t.Errorf("MarkMaster(%s): request for unexpected HTTP resource: %v", tc.name, req.URL.Path)
|
2017-06-01 00:53:42 +00:00
|
|
|
w.WriteHeader(http.StatusNotFound)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
switch req.Method {
|
|
|
|
case "GET":
|
|
|
|
case "PATCH":
|
|
|
|
patchRequest = toString(req.Body)
|
|
|
|
default:
|
2017-07-18 08:08:43 +00:00
|
|
|
t.Errorf("MarkMaster(%s): request for unexpected HTTP verb: %v", tc.name, req.Method)
|
2017-06-01 00:53:42 +00:00
|
|
|
w.WriteHeader(http.StatusNotFound)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
w.Write(jsonNode)
|
|
|
|
}))
|
|
|
|
defer s.Close()
|
|
|
|
|
2017-07-21 10:46:24 +00:00
|
|
|
cs, err := clientset.NewForConfig(&restclient.Config{Host: s.URL})
|
2017-06-01 00:53:42 +00:00
|
|
|
if err != nil {
|
2017-07-18 08:08:43 +00:00
|
|
|
t.Fatalf("MarkMaster(%s): unexpected error building clientset: %v", tc.name, err)
|
2017-06-01 00:53:42 +00:00
|
|
|
}
|
|
|
|
|
2017-07-18 08:08:43 +00:00
|
|
|
err = MarkMaster(cs, hostname)
|
2017-06-01 00:53:42 +00:00
|
|
|
if err != nil {
|
2017-07-18 08:08:43 +00:00
|
|
|
t.Errorf("MarkMaster(%s) returned unexpected error: %v", tc.name, err)
|
2017-06-01 00:53:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if tc.expectedPatch != patchRequest {
|
2017-07-18 08:08:43 +00:00
|
|
|
t.Errorf("MarkMaster(%s) wanted patch %v, got %v", tc.name, tc.expectedPatch, patchRequest)
|
2017-06-01 00:53:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func toString(r io.Reader) string {
|
|
|
|
buf := new(bytes.Buffer)
|
|
|
|
buf.ReadFrom(r)
|
|
|
|
return buf.String()
|
|
|
|
}
|