fix: elasticsearch output float handling test (#11120)
This commit is contained in:
parent
b4b52d1a6f
commit
c8796a71ae
|
|
@ -159,8 +159,31 @@ func TestConnectAndWriteMetricWithNaNValueReplacement(t *testing.T) {
|
||||||
t.Skip("Skipping integration test in short mode")
|
t.Skip("Skipping integration test in short mode")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tests := []struct {
|
||||||
|
floatHandle string
|
||||||
|
floatReplacement float64
|
||||||
|
expectError bool
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
"none",
|
||||||
|
0.0,
|
||||||
|
true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"drop",
|
||||||
|
0.0,
|
||||||
|
false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"replace",
|
||||||
|
0.0,
|
||||||
|
false,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
urls := []string{"http://" + testutil.GetLocalHost() + ":9200"}
|
urls := []string{"http://" + testutil.GetLocalHost() + ":9200"}
|
||||||
|
|
||||||
|
for _, test := range tests {
|
||||||
e := &Elasticsearch{
|
e := &Elasticsearch{
|
||||||
URLs: urls,
|
URLs: urls,
|
||||||
IndexName: "test-%Y.%m.%d",
|
IndexName: "test-%Y.%m.%d",
|
||||||
|
|
@ -170,7 +193,8 @@ func TestConnectAndWriteMetricWithNaNValueReplacement(t *testing.T) {
|
||||||
OverwriteTemplate: false,
|
OverwriteTemplate: false,
|
||||||
HealthCheckInterval: config.Duration(time.Second * 10),
|
HealthCheckInterval: config.Duration(time.Second * 10),
|
||||||
HealthCheckTimeout: config.Duration(time.Second * 1),
|
HealthCheckTimeout: config.Duration(time.Second * 1),
|
||||||
FloatHandling: "3.1415",
|
FloatHandling: test.floatHandle,
|
||||||
|
FloatReplacement: test.floatReplacement,
|
||||||
Log: testutil.Logger{},
|
Log: testutil.Logger{},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -180,16 +204,20 @@ func TestConnectAndWriteMetricWithNaNValueReplacement(t *testing.T) {
|
||||||
testutil.TestMetric(math.Inf(-1)),
|
testutil.TestMetric(math.Inf(-1)),
|
||||||
}
|
}
|
||||||
|
|
||||||
// Verify that we can connect to Elasticsearch
|
|
||||||
err := e.Connect()
|
err := e.Connect()
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
// Verify that we can fail for metric with unhandled NaN/inf/-inf values
|
|
||||||
for _, m := range metrics {
|
for _, m := range metrics {
|
||||||
err = e.Write([]telegraf.Metric{m})
|
err = e.Write([]telegraf.Metric{m})
|
||||||
|
|
||||||
|
if test.expectError {
|
||||||
|
require.Error(t, err)
|
||||||
|
} else {
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestTemplateManagementEmptyTemplateIntegration(t *testing.T) {
|
func TestTemplateManagementEmptyTemplateIntegration(t *testing.T) {
|
||||||
if testing.Short() {
|
if testing.Short() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue