2015-11-13 17:39:36 +00:00
|
|
|
package influxdb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
2016-07-14 04:33:21 +00:00
|
|
|
"time"
|
2015-11-13 17:39:36 +00:00
|
|
|
|
2016-01-20 18:57:35 +00:00
|
|
|
"github.com/influxdata/telegraf/testutil"
|
2015-11-13 17:39:36 +00:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestUDPInflux(t *testing.T) {
|
|
|
|
i := InfluxDB{
|
|
|
|
URLs: []string{"udp://localhost:8089"},
|
|
|
|
}
|
|
|
|
|
|
|
|
err := i.Connect()
|
|
|
|
require.NoError(t, err)
|
2016-01-27 23:15:14 +00:00
|
|
|
err = i.Write(testutil.MockMetrics())
|
2015-11-13 17:39:36 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHTTPInflux(t *testing.T) {
|
|
|
|
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
fmt.Fprintln(w, `{"results":[{}]}`)
|
|
|
|
}))
|
|
|
|
defer ts.Close()
|
|
|
|
|
|
|
|
i := InfluxDB{
|
|
|
|
URLs: []string{ts.URL},
|
|
|
|
}
|
|
|
|
|
|
|
|
err := i.Connect()
|
|
|
|
require.NoError(t, err)
|
2016-01-27 23:15:14 +00:00
|
|
|
err = i.Write(testutil.MockMetrics())
|
2015-11-13 17:39:36 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
}
|
2016-07-14 04:33:21 +00:00
|
|
|
|
2016-07-15 07:17:20 +00:00
|
|
|
/*
|
2016-07-14 04:33:21 +00:00
|
|
|
func TestInfluxDS(t *testing.T) {
|
|
|
|
downsampler := &DS{
|
|
|
|
TimeRange: time.Minute,
|
|
|
|
}
|
|
|
|
i := InfluxDB{
|
|
|
|
URLs: []string{"udp://localhost:8089"},
|
|
|
|
DS: downsampler,
|
|
|
|
}
|
|
|
|
|
|
|
|
err := i.Connect()
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
i.DS.Add(testutil.MockMetrics())
|
|
|
|
}
|
2016-07-15 07:17:20 +00:00
|
|
|
*/
|