mirror of https://github.com/prometheus/prometheus
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
338 lines
9.4 KiB
338 lines
9.4 KiB
8 years ago
|
// Copyright 2016 The Prometheus 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.
|
||
|
|
||
|
package kubernetes
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/prometheus/common/log"
|
||
|
"github.com/prometheus/common/model"
|
||
|
"github.com/prometheus/prometheus/config"
|
||
|
"k8s.io/client-go/1.5/pkg/api/v1"
|
||
8 years ago
|
"k8s.io/client-go/1.5/tools/cache"
|
||
8 years ago
|
)
|
||
|
|
||
8 years ago
|
func endpointsStoreKeyFunc(obj interface{}) (string, error) {
|
||
8 years ago
|
return obj.(*v1.Endpoints).ObjectMeta.Name, nil
|
||
|
}
|
||
|
|
||
8 years ago
|
func newFakeEndpointsInformer() *fakeInformer {
|
||
|
return newFakeInformer(endpointsStoreKeyFunc)
|
||
8 years ago
|
}
|
||
|
|
||
8 years ago
|
func makeTestEndpointsDiscovery() (*Endpoints, *fakeInformer, *fakeInformer, *fakeInformer) {
|
||
8 years ago
|
svc := newFakeServiceInformer()
|
||
8 years ago
|
eps := newFakeEndpointsInformer()
|
||
8 years ago
|
pod := newFakePodInformer()
|
||
|
return NewEndpoints(log.Base(), svc, eps, pod), svc, eps, pod
|
||
|
}
|
||
|
|
||
8 years ago
|
func makeEndpoints() *v1.Endpoints {
|
||
8 years ago
|
return &v1.Endpoints{
|
||
|
ObjectMeta: v1.ObjectMeta{
|
||
|
Name: "testendpoints",
|
||
|
Namespace: "default",
|
||
|
},
|
||
|
Subsets: []v1.EndpointSubset{
|
||
|
v1.EndpointSubset{
|
||
|
Addresses: []v1.EndpointAddress{
|
||
|
v1.EndpointAddress{
|
||
|
IP: "1.2.3.4",
|
||
|
},
|
||
|
},
|
||
|
Ports: []v1.EndpointPort{
|
||
|
v1.EndpointPort{
|
||
|
Name: "testport",
|
||
|
Port: 9000,
|
||
|
Protocol: v1.ProtocolTCP,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
v1.EndpointSubset{
|
||
|
Addresses: []v1.EndpointAddress{
|
||
|
v1.EndpointAddress{
|
||
|
IP: "2.3.4.5",
|
||
|
},
|
||
|
},
|
||
|
NotReadyAddresses: []v1.EndpointAddress{
|
||
|
v1.EndpointAddress{
|
||
|
IP: "2.3.4.5",
|
||
|
},
|
||
|
},
|
||
|
Ports: []v1.EndpointPort{
|
||
|
v1.EndpointPort{
|
||
|
Name: "testport",
|
||
|
Port: 9001,
|
||
|
Protocol: v1.ProtocolTCP,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
|
||
8 years ago
|
func TestEndpointsDiscoveryInitial(t *testing.T) {
|
||
|
n, _, eps, _ := makeTestEndpointsDiscovery()
|
||
|
eps.GetStore().Add(makeEndpoints())
|
||
8 years ago
|
|
||
|
k8sDiscoveryTest{
|
||
|
discovery: n,
|
||
|
expectedInitial: []*config.TargetGroup{
|
||
|
&config.TargetGroup{
|
||
|
Targets: []model.LabelSet{
|
||
|
model.LabelSet{
|
||
|
"__address__": "1.2.3.4:9000",
|
||
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
||
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
||
|
"__meta_kubernetes_endpoint_ready": "true",
|
||
|
},
|
||
|
model.LabelSet{
|
||
|
"__address__": "2.3.4.5:9001",
|
||
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
||
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
||
|
"__meta_kubernetes_endpoint_ready": "true",
|
||
|
},
|
||
|
model.LabelSet{
|
||
|
"__address__": "2.3.4.5:9001",
|
||
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
||
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
||
|
"__meta_kubernetes_endpoint_ready": "false",
|
||
|
},
|
||
|
},
|
||
|
Labels: model.LabelSet{
|
||
|
"__meta_kubernetes_namespace": "default",
|
||
|
"__meta_kubernetes_endpoints_name": "testendpoints",
|
||
|
},
|
||
|
Source: "endpoints/default/testendpoints",
|
||
|
},
|
||
|
},
|
||
|
}.Run(t)
|
||
|
}
|
||
|
|
||
8 years ago
|
func TestEndpointsDiscoveryAdd(t *testing.T) {
|
||
|
n, _, eps, pods := makeTestEndpointsDiscovery()
|
||
8 years ago
|
pods.GetStore().Add(&v1.Pod{
|
||
|
ObjectMeta: v1.ObjectMeta{
|
||
|
Name: "testpod",
|
||
|
Namespace: "default",
|
||
|
},
|
||
|
Spec: v1.PodSpec{
|
||
|
NodeName: "testnode",
|
||
|
Containers: []v1.Container{
|
||
|
v1.Container{
|
||
|
Name: "c1",
|
||
|
Ports: []v1.ContainerPort{
|
||
|
v1.ContainerPort{
|
||
|
Name: "mainport",
|
||
|
ContainerPort: 9000,
|
||
|
Protocol: v1.ProtocolTCP,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
v1.Container{
|
||
|
Name: "c2",
|
||
|
Ports: []v1.ContainerPort{
|
||
|
v1.ContainerPort{
|
||
|
Name: "sideport",
|
||
|
ContainerPort: 9001,
|
||
|
Protocol: v1.ProtocolTCP,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
Status: v1.PodStatus{
|
||
|
HostIP: "2.3.4.5",
|
||
|
PodIP: "1.2.3.4",
|
||
|
},
|
||
|
})
|
||
|
|
||
|
k8sDiscoveryTest{
|
||
|
discovery: n,
|
||
|
afterStart: func() {
|
||
|
go func() {
|
||
|
eps.Add(
|
||
|
&v1.Endpoints{
|
||
|
ObjectMeta: v1.ObjectMeta{
|
||
|
Name: "testendpoints",
|
||
|
Namespace: "default",
|
||
|
},
|
||
|
Subsets: []v1.EndpointSubset{
|
||
|
v1.EndpointSubset{
|
||
|
Addresses: []v1.EndpointAddress{
|
||
|
v1.EndpointAddress{
|
||
|
IP: "4.3.2.1",
|
||
|
TargetRef: &v1.ObjectReference{
|
||
|
Kind: "Pod",
|
||
|
Name: "testpod",
|
||
|
Namespace: "default",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
Ports: []v1.EndpointPort{
|
||
|
v1.EndpointPort{
|
||
|
Name: "testport",
|
||
|
Port: 9000,
|
||
|
Protocol: v1.ProtocolTCP,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
)
|
||
|
}()
|
||
|
},
|
||
|
expectedRes: []*config.TargetGroup{
|
||
|
&config.TargetGroup{
|
||
|
Targets: []model.LabelSet{
|
||
|
model.LabelSet{
|
||
|
"__address__": "4.3.2.1:9000",
|
||
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
||
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
||
|
"__meta_kubernetes_endpoint_ready": "true",
|
||
|
"__meta_kubernetes_pod_name": "testpod",
|
||
|
"__meta_kubernetes_pod_ip": "1.2.3.4",
|
||
|
"__meta_kubernetes_pod_ready": "unknown",
|
||
|
"__meta_kubernetes_pod_node_name": "testnode",
|
||
|
"__meta_kubernetes_pod_host_ip": "2.3.4.5",
|
||
|
"__meta_kubernetes_pod_container_name": "c1",
|
||
8 years ago
|
"__meta_kubernetes_pod_container_port_name": "mainport",
|
||
|
"__meta_kubernetes_pod_container_port_number": "9000",
|
||
8 years ago
|
"__meta_kubernetes_pod_container_port_protocol": "TCP",
|
||
|
},
|
||
|
model.LabelSet{
|
||
|
"__address__": "1.2.3.4:9001",
|
||
|
"__meta_kubernetes_pod_name": "testpod",
|
||
|
"__meta_kubernetes_pod_ip": "1.2.3.4",
|
||
|
"__meta_kubernetes_pod_ready": "unknown",
|
||
|
"__meta_kubernetes_pod_node_name": "testnode",
|
||
|
"__meta_kubernetes_pod_host_ip": "2.3.4.5",
|
||
|
"__meta_kubernetes_pod_container_name": "c2",
|
||
|
"__meta_kubernetes_pod_container_port_name": "sideport",
|
||
8 years ago
|
"__meta_kubernetes_pod_container_port_number": "9001",
|
||
8 years ago
|
"__meta_kubernetes_pod_container_port_protocol": "TCP",
|
||
|
},
|
||
|
},
|
||
|
Labels: model.LabelSet{
|
||
|
"__meta_kubernetes_endpoints_name": "testendpoints",
|
||
|
"__meta_kubernetes_namespace": "default",
|
||
|
},
|
||
|
Source: "endpoints/default/testendpoints",
|
||
|
},
|
||
|
},
|
||
|
}.Run(t)
|
||
|
}
|
||
|
|
||
8 years ago
|
func TestEndpointsDiscoveryDelete(t *testing.T) {
|
||
|
n, _, eps, _ := makeTestEndpointsDiscovery()
|
||
|
eps.GetStore().Add(makeEndpoints())
|
||
8 years ago
|
|
||
|
k8sDiscoveryTest{
|
||
|
discovery: n,
|
||
8 years ago
|
afterStart: func() { go func() { eps.Delete(makeEndpoints()) }() },
|
||
8 years ago
|
expectedRes: []*config.TargetGroup{
|
||
|
&config.TargetGroup{
|
||
|
Source: "endpoints/default/testendpoints",
|
||
|
},
|
||
|
},
|
||
|
}.Run(t)
|
||
|
}
|
||
|
|
||
8 years ago
|
func TestEndpointsDiscoveryDeleteUnknownCacheState(t *testing.T) {
|
||
|
n, _, eps, _ := makeTestEndpointsDiscovery()
|
||
|
eps.GetStore().Add(makeEndpoints())
|
||
|
|
||
|
k8sDiscoveryTest{
|
||
|
discovery: n,
|
||
|
afterStart: func() { go func() { eps.Delete(cache.DeletedFinalStateUnknown{Obj: makeEndpoints()}) }() },
|
||
|
expectedRes: []*config.TargetGroup{
|
||
|
&config.TargetGroup{
|
||
|
Source: "endpoints/default/testendpoints",
|
||
|
},
|
||
|
},
|
||
|
}.Run(t)
|
||
|
}
|
||
|
|
||
8 years ago
|
func TestEndpointsDiscoveryUpdate(t *testing.T) {
|
||
|
n, _, eps, _ := makeTestEndpointsDiscovery()
|
||
|
eps.GetStore().Add(makeEndpoints())
|
||
8 years ago
|
|
||
|
k8sDiscoveryTest{
|
||
|
discovery: n,
|
||
|
afterStart: func() {
|
||
|
go func() {
|
||
|
eps.Update(&v1.Endpoints{
|
||
|
ObjectMeta: v1.ObjectMeta{
|
||
|
Name: "testendpoints",
|
||
|
Namespace: "default",
|
||
|
},
|
||
|
Subsets: []v1.EndpointSubset{
|
||
|
v1.EndpointSubset{
|
||
|
Addresses: []v1.EndpointAddress{
|
||
|
v1.EndpointAddress{
|
||
|
IP: "1.2.3.4",
|
||
|
},
|
||
|
},
|
||
|
Ports: []v1.EndpointPort{
|
||
|
v1.EndpointPort{
|
||
|
Name: "testport",
|
||
|
Port: 9000,
|
||
|
Protocol: v1.ProtocolTCP,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
v1.EndpointSubset{
|
||
|
Addresses: []v1.EndpointAddress{
|
||
|
v1.EndpointAddress{
|
||
|
IP: "2.3.4.5",
|
||
|
},
|
||
|
},
|
||
|
Ports: []v1.EndpointPort{
|
||
|
v1.EndpointPort{
|
||
|
Name: "testport",
|
||
|
Port: 9001,
|
||
|
Protocol: v1.ProtocolTCP,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
}()
|
||
|
},
|
||
|
expectedRes: []*config.TargetGroup{
|
||
|
&config.TargetGroup{
|
||
|
Targets: []model.LabelSet{
|
||
|
model.LabelSet{
|
||
|
"__address__": "1.2.3.4:9000",
|
||
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
||
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
||
|
"__meta_kubernetes_endpoint_ready": "true",
|
||
|
},
|
||
|
model.LabelSet{
|
||
|
"__address__": "2.3.4.5:9001",
|
||
|
"__meta_kubernetes_endpoint_port_name": "testport",
|
||
|
"__meta_kubernetes_endpoint_port_protocol": "TCP",
|
||
|
"__meta_kubernetes_endpoint_ready": "true",
|
||
|
},
|
||
|
},
|
||
|
Labels: model.LabelSet{
|
||
|
"__meta_kubernetes_namespace": "default",
|
||
|
"__meta_kubernetes_endpoints_name": "testendpoints",
|
||
|
},
|
||
|
Source: "endpoints/default/testendpoints",
|
||
|
},
|
||
|
},
|
||
|
}.Run(t)
|
||
|
}
|