156 lines
4.2 KiB
Go
156 lines
4.2 KiB
Go
package prometheus
|
|
|
|
import (
|
|
"github.com/ericchiang/k8s"
|
|
"testing"
|
|
|
|
"github.com/influxdata/telegraf/testutil"
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
v1 "github.com/ericchiang/k8s/apis/core/v1"
|
|
metav1 "github.com/ericchiang/k8s/apis/meta/v1"
|
|
)
|
|
|
|
func TestScrapeURLNoAnnotations(t *testing.T) {
|
|
p := &v1.Pod{Metadata: &metav1.ObjectMeta{}}
|
|
p.GetMetadata().Annotations = map[string]string{}
|
|
url := getScrapeURL(p)
|
|
assert.Nil(t, url)
|
|
}
|
|
|
|
func TestScrapeURLAnnotationsNoScrape(t *testing.T) {
|
|
p := &v1.Pod{Metadata: &metav1.ObjectMeta{}}
|
|
p.Metadata.Name = str("myPod")
|
|
p.Metadata.Annotations = map[string]string{"prometheus.io/scrape": "false"}
|
|
url := getScrapeURL(p)
|
|
assert.Nil(t, url)
|
|
}
|
|
|
|
func TestScrapeURLAnnotations(t *testing.T) {
|
|
p := pod()
|
|
p.Metadata.Annotations = map[string]string{"prometheus.io/scrape": "true"}
|
|
url := getScrapeURL(p)
|
|
assert.Equal(t, "http://127.0.0.1:9102/metrics", *url)
|
|
}
|
|
|
|
func TestScrapeURLAnnotationsCustomPort(t *testing.T) {
|
|
p := pod()
|
|
p.Metadata.Annotations = map[string]string{"prometheus.io/scrape": "true", "prometheus.io/port": "9000"}
|
|
url := getScrapeURL(p)
|
|
assert.Equal(t, "http://127.0.0.1:9000/metrics", *url)
|
|
}
|
|
|
|
func TestScrapeURLAnnotationsCustomPath(t *testing.T) {
|
|
p := pod()
|
|
p.Metadata.Annotations = map[string]string{"prometheus.io/scrape": "true", "prometheus.io/path": "mymetrics"}
|
|
url := getScrapeURL(p)
|
|
assert.Equal(t, "http://127.0.0.1:9102/mymetrics", *url)
|
|
}
|
|
|
|
func TestScrapeURLAnnotationsCustomPathWithSep(t *testing.T) {
|
|
p := pod()
|
|
p.Metadata.Annotations = map[string]string{"prometheus.io/scrape": "true", "prometheus.io/path": "/mymetrics"}
|
|
url := getScrapeURL(p)
|
|
assert.Equal(t, "http://127.0.0.1:9102/mymetrics", *url)
|
|
}
|
|
|
|
func TestAddPod(t *testing.T) {
|
|
prom := &Prometheus{Log: testutil.Logger{}}
|
|
|
|
p := pod()
|
|
p.Metadata.Annotations = map[string]string{"prometheus.io/scrape": "true"}
|
|
registerPod(p, prom)
|
|
assert.Equal(t, 1, len(prom.kubernetesPods))
|
|
}
|
|
|
|
func TestAddMultipleDuplicatePods(t *testing.T) {
|
|
prom := &Prometheus{Log: testutil.Logger{}}
|
|
|
|
p := pod()
|
|
p.Metadata.Annotations = map[string]string{"prometheus.io/scrape": "true"}
|
|
registerPod(p, prom)
|
|
p.Metadata.Name = str("Pod2")
|
|
registerPod(p, prom)
|
|
assert.Equal(t, 1, len(prom.kubernetesPods))
|
|
}
|
|
|
|
func TestAddMultiplePods(t *testing.T) {
|
|
prom := &Prometheus{Log: testutil.Logger{}}
|
|
|
|
p := pod()
|
|
p.Metadata.Annotations = map[string]string{"prometheus.io/scrape": "true"}
|
|
registerPod(p, prom)
|
|
p.Metadata.Name = str("Pod2")
|
|
p.Status.PodIP = str("127.0.0.2")
|
|
registerPod(p, prom)
|
|
assert.Equal(t, 2, len(prom.kubernetesPods))
|
|
}
|
|
|
|
func TestDeletePods(t *testing.T) {
|
|
prom := &Prometheus{Log: testutil.Logger{}}
|
|
|
|
p := pod()
|
|
p.Metadata.Annotations = map[string]string{"prometheus.io/scrape": "true"}
|
|
registerPod(p, prom)
|
|
unregisterPod(p, prom)
|
|
assert.Equal(t, 0, len(prom.kubernetesPods))
|
|
}
|
|
|
|
func TestPodSelector(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
expected []k8s.Option
|
|
labelselector string
|
|
fieldselector string
|
|
}{
|
|
{
|
|
expected: []k8s.Option{
|
|
k8s.QueryParam("labelSelector", "key1=val1,key2=val2,key3"),
|
|
k8s.QueryParam("fieldSelector", "spec.nodeName=ip-1-2-3-4.acme.com"),
|
|
},
|
|
labelselector: "key1=val1,key2=val2,key3",
|
|
fieldselector: "spec.nodeName=ip-1-2-3-4.acme.com",
|
|
},
|
|
{
|
|
expected: []k8s.Option{
|
|
k8s.QueryParam("labelSelector", "key1"),
|
|
k8s.QueryParam("fieldSelector", "spec.nodeName=ip-1-2-3-4.acme.com"),
|
|
},
|
|
labelselector: "key1",
|
|
fieldselector: "spec.nodeName=ip-1-2-3-4.acme.com",
|
|
},
|
|
{
|
|
expected: []k8s.Option{
|
|
k8s.QueryParam("labelSelector", "key1"),
|
|
k8s.QueryParam("fieldSelector", "somefield"),
|
|
},
|
|
labelselector: "key1",
|
|
fieldselector: "somefield",
|
|
},
|
|
}
|
|
|
|
for _, c := range cases {
|
|
prom := &Prometheus{
|
|
Log: testutil.Logger{},
|
|
KubernetesLabelSelector: c.labelselector,
|
|
KubernetesFieldSelector: c.fieldselector,
|
|
}
|
|
|
|
output := podSelector(prom)
|
|
|
|
assert.Equal(t, len(output), len(c.expected))
|
|
}
|
|
}
|
|
|
|
func pod() *v1.Pod {
|
|
p := &v1.Pod{Metadata: &metav1.ObjectMeta{}, Status: &v1.PodStatus{}, Spec: &v1.PodSpec{}}
|
|
p.Status.PodIP = str("127.0.0.1")
|
|
p.Metadata.Name = str("myPod")
|
|
p.Metadata.Namespace = str("default")
|
|
return p
|
|
}
|
|
|
|
func str(x string) *string {
|
|
return &x
|
|
}
|