2015-08-12 20:15:34 +00:00
|
|
|
package datadog
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2016-01-20 18:57:35 +00:00
|
|
|
"github.com/influxdata/telegraf/testutil"
|
2015-08-26 17:02:10 +00:00
|
|
|
|
2016-01-27 23:15:14 +00:00
|
|
|
"github.com/influxdata/telegraf"
|
2015-08-12 20:15:34 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
fakeUrl = "http://test.datadog.com"
|
|
|
|
fakeApiKey = "123456"
|
|
|
|
)
|
|
|
|
|
2018-10-05 20:51:16 +00:00
|
|
|
func NewDatadog(url string) *Datadog {
|
|
|
|
return &Datadog{
|
|
|
|
URL: url,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-12 20:15:34 +00:00
|
|
|
func fakeDatadog() *Datadog {
|
|
|
|
d := NewDatadog(fakeUrl)
|
|
|
|
d.Apikey = fakeApiKey
|
|
|
|
return d
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestUriOverride(t *testing.T) {
|
|
|
|
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
json.NewEncoder(w).Encode(`{"status":"ok"}`)
|
|
|
|
}))
|
|
|
|
defer ts.Close()
|
|
|
|
|
|
|
|
d := NewDatadog(ts.URL)
|
2015-08-14 01:42:57 +00:00
|
|
|
d.Apikey = "123456"
|
|
|
|
err := d.Connect()
|
|
|
|
require.NoError(t, err)
|
2016-01-27 23:15:14 +00:00
|
|
|
err = d.Write(testutil.MockMetrics())
|
2015-08-12 20:15:34 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBadStatusCode(t *testing.T) {
|
|
|
|
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
json.NewEncoder(w).Encode(`{ 'errors': [
|
|
|
|
'Something bad happened to the server.',
|
|
|
|
'Your query made the server very sad.'
|
|
|
|
]
|
|
|
|
}`)
|
|
|
|
}))
|
|
|
|
defer ts.Close()
|
|
|
|
|
|
|
|
d := NewDatadog(ts.URL)
|
2015-08-14 01:42:57 +00:00
|
|
|
d.Apikey = "123456"
|
|
|
|
err := d.Connect()
|
|
|
|
require.NoError(t, err)
|
2016-01-27 23:15:14 +00:00
|
|
|
err = d.Write(testutil.MockMetrics())
|
2015-08-12 20:15:34 +00:00
|
|
|
if err == nil {
|
|
|
|
t.Errorf("error expected but none returned")
|
|
|
|
} else {
|
2015-08-14 01:42:57 +00:00
|
|
|
require.EqualError(t, fmt.Errorf("received bad status code, 500\n"), err.Error())
|
2015-08-12 20:15:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAuthenticatedUrl(t *testing.T) {
|
|
|
|
d := fakeDatadog()
|
|
|
|
|
|
|
|
authUrl := d.authenticatedUrl()
|
|
|
|
assert.EqualValues(t, fmt.Sprintf("%s?api_key=%s", fakeUrl, fakeApiKey), authUrl)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBuildTags(t *testing.T) {
|
|
|
|
var tagtests = []struct {
|
2018-10-05 20:48:18 +00:00
|
|
|
ptIn []*telegraf.Tag
|
2015-08-12 20:15:34 +00:00
|
|
|
outTags []string
|
|
|
|
}{
|
|
|
|
{
|
2018-10-05 20:48:18 +00:00
|
|
|
[]*telegraf.Tag{
|
2018-10-19 20:32:54 +00:00
|
|
|
{
|
2018-10-05 20:48:18 +00:00
|
|
|
Key: "one",
|
|
|
|
Value: "two",
|
|
|
|
},
|
2018-10-19 20:32:54 +00:00
|
|
|
{
|
2018-10-05 20:48:18 +00:00
|
|
|
Key: "three",
|
|
|
|
Value: "four",
|
|
|
|
},
|
|
|
|
},
|
2015-08-12 20:15:34 +00:00
|
|
|
[]string{"one:two", "three:four"},
|
|
|
|
},
|
|
|
|
{
|
2018-10-05 20:48:18 +00:00
|
|
|
[]*telegraf.Tag{
|
2018-10-19 20:32:54 +00:00
|
|
|
{
|
2018-10-05 20:48:18 +00:00
|
|
|
Key: "aaa",
|
|
|
|
Value: "bbb",
|
|
|
|
},
|
|
|
|
},
|
2015-08-12 20:15:34 +00:00
|
|
|
[]string{"aaa:bbb"},
|
|
|
|
},
|
|
|
|
{
|
2018-10-05 20:48:18 +00:00
|
|
|
[]*telegraf.Tag{},
|
2015-08-12 20:15:34 +00:00
|
|
|
[]string{},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tagtests {
|
2015-10-16 22:13:32 +00:00
|
|
|
tags := buildTags(tt.ptIn)
|
2015-08-12 20:15:34 +00:00
|
|
|
if !reflect.DeepEqual(tags, tt.outTags) {
|
|
|
|
t.Errorf("\nexpected %+v\ngot %+v\n", tt.outTags, tags)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBuildPoint(t *testing.T) {
|
|
|
|
var tagtests = []struct {
|
2016-01-27 23:15:14 +00:00
|
|
|
ptIn telegraf.Metric
|
2015-08-12 20:15:34 +00:00
|
|
|
outPt Point
|
|
|
|
err error
|
|
|
|
}{
|
|
|
|
{
|
2016-01-27 23:15:14 +00:00
|
|
|
testutil.TestMetric(0.0, "test1"),
|
2015-10-16 22:13:32 +00:00
|
|
|
Point{
|
|
|
|
float64(time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC).Unix()),
|
|
|
|
0.0,
|
2015-08-12 20:15:34 +00:00
|
|
|
},
|
|
|
|
nil,
|
|
|
|
},
|
|
|
|
{
|
2016-01-27 23:15:14 +00:00
|
|
|
testutil.TestMetric(1.0, "test2"),
|
2015-10-16 22:13:32 +00:00
|
|
|
Point{
|
2015-11-11 00:05:28 +00:00
|
|
|
float64(time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC).Unix()),
|
2015-10-16 22:13:32 +00:00
|
|
|
1.0,
|
2015-08-12 20:15:34 +00:00
|
|
|
},
|
|
|
|
nil,
|
|
|
|
},
|
|
|
|
{
|
2016-01-27 23:15:14 +00:00
|
|
|
testutil.TestMetric(10, "test3"),
|
2015-10-16 22:13:32 +00:00
|
|
|
Point{
|
|
|
|
float64(time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC).Unix()),
|
|
|
|
10.0,
|
2015-08-12 20:15:34 +00:00
|
|
|
},
|
|
|
|
nil,
|
|
|
|
},
|
|
|
|
{
|
2016-01-27 23:15:14 +00:00
|
|
|
testutil.TestMetric(int32(112345), "test4"),
|
2015-10-16 22:13:32 +00:00
|
|
|
Point{
|
|
|
|
float64(time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC).Unix()),
|
|
|
|
112345.0,
|
2015-08-12 20:15:34 +00:00
|
|
|
},
|
|
|
|
nil,
|
|
|
|
},
|
|
|
|
{
|
2016-01-27 23:15:14 +00:00
|
|
|
testutil.TestMetric(int64(112345), "test5"),
|
2015-10-16 22:13:32 +00:00
|
|
|
Point{
|
|
|
|
float64(time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC).Unix()),
|
|
|
|
112345.0,
|
2015-08-12 20:15:34 +00:00
|
|
|
},
|
|
|
|
nil,
|
|
|
|
},
|
|
|
|
{
|
2016-01-27 23:15:14 +00:00
|
|
|
testutil.TestMetric(float32(11234.5), "test6"),
|
2015-10-16 22:13:32 +00:00
|
|
|
Point{
|
|
|
|
float64(time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC).Unix()),
|
|
|
|
11234.5,
|
2015-08-12 20:15:34 +00:00
|
|
|
},
|
|
|
|
nil,
|
|
|
|
},
|
2018-02-21 01:32:18 +00:00
|
|
|
{
|
|
|
|
testutil.TestMetric(bool(true), "test7"),
|
|
|
|
Point{
|
|
|
|
float64(time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC).Unix()),
|
|
|
|
1.0,
|
|
|
|
},
|
|
|
|
nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
testutil.TestMetric(bool(false), "test8"),
|
|
|
|
Point{
|
|
|
|
float64(time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC).Unix()),
|
|
|
|
0.0,
|
|
|
|
},
|
|
|
|
nil,
|
|
|
|
},
|
2018-05-02 01:56:39 +00:00
|
|
|
{
|
|
|
|
testutil.TestMetric(int64(0), "test int64"),
|
|
|
|
Point{
|
|
|
|
float64(time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC).Unix()),
|
|
|
|
0.0,
|
|
|
|
},
|
|
|
|
nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
testutil.TestMetric(uint64(0), "test uint64"),
|
|
|
|
Point{
|
|
|
|
float64(time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC).Unix()),
|
|
|
|
0.0,
|
|
|
|
},
|
|
|
|
nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
testutil.TestMetric(true, "test bool"),
|
|
|
|
Point{
|
|
|
|
float64(time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC).Unix()),
|
|
|
|
1.0,
|
|
|
|
},
|
|
|
|
nil,
|
|
|
|
},
|
2015-08-12 20:15:34 +00:00
|
|
|
}
|
|
|
|
for _, tt := range tagtests {
|
2016-01-27 23:15:14 +00:00
|
|
|
pt, err := buildMetrics(tt.ptIn)
|
2015-08-12 20:15:34 +00:00
|
|
|
if err != nil && tt.err == nil {
|
2015-10-16 22:13:32 +00:00
|
|
|
t.Errorf("%s: unexpected error, %+v\n", tt.ptIn.Name(), err)
|
2015-08-12 20:15:34 +00:00
|
|
|
}
|
|
|
|
if tt.err != nil && err == nil {
|
2015-10-16 22:13:32 +00:00
|
|
|
t.Errorf("%s: expected an error (%s) but none returned", tt.ptIn.Name(), tt.err.Error())
|
2015-08-12 20:15:34 +00:00
|
|
|
}
|
2016-01-07 17:09:04 +00:00
|
|
|
if !reflect.DeepEqual(pt["value"], tt.outPt) && tt.err == nil {
|
|
|
|
t.Errorf("%s: \nexpected %+v\ngot %+v\n",
|
|
|
|
tt.ptIn.Name(), tt.outPt, pt["value"])
|
2015-08-12 20:15:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-22 15:07:01 +00:00
|
|
|
|
|
|
|
func TestVerifyValue(t *testing.T) {
|
|
|
|
var tagtests = []struct {
|
|
|
|
ptIn telegraf.Metric
|
|
|
|
validMetric bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
testutil.TestMetric(float32(11234.5), "test1"),
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
testutil.TestMetric("11234.5", "test2"),
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tagtests {
|
|
|
|
ok := verifyValue(tt.ptIn.Fields()["value"])
|
|
|
|
if tt.validMetric != ok {
|
|
|
|
t.Errorf("%s: verification failed\n", tt.ptIn.Name())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|