Updated test for json format

This commit is contained in:
alessandrodd 2016-11-11 10:16:33 +01:00 committed by GitHub
parent bd7567380b
commit 89cdeec055
1 changed files with 13 additions and 0 deletions

View File

@ -25,6 +25,19 @@ func TestFormatMetric(t *testing.T) {
}
require.NoError(t, err)
k := &KinesisOutput{
Format: "json",
}
valid_json := "{\"fields\":{\"value\":1},\"name\":\"docker\",\"tags\":{\"tag1\":\"value1\"},\"timestamp\":1257894000}"
func_json, err := FormatMetric(k, p)
if func_json != valid_json {
t.Error("Expected ", valid_json)
t.Error("Found ", func_json)
}
require.NoError(t, err)
k = &KinesisOutput{
Format: "custom",
}