Like Prometheus, but for logs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
loki/pkg/logql/marshal/legacy/marshal_test.go

207 lines
4.4 KiB

package marshal
import (
"bytes"
"encoding/json"
"log"
"testing"
"time"
loghttp "github.com/grafana/loki/pkg/loghttp/legacy"
"github.com/grafana/loki/pkg/logproto"
"github.com/grafana/loki/pkg/logql"
"github.com/stretchr/testify/require"
)
// covers responses from /api/prom/query
var queryTests = []struct {
actual logql.Streams
expected string
}{
{
logql.Streams{
&logproto.Stream{
Entries: []logproto.Entry{
{
Timestamp: mustParse(time.RFC3339Nano, "2019-09-13T18:32:22.380001319Z"),
Line: "super line",
},
},
Labels: `{test="test"}`,
},
},
`{
"streams":[
{
"labels":"{test=\"test\"}",
"entries":[
{
"ts": "2019-09-13T18:32:22.380001319Z",
"line": "super line"
}
]
}
]
}`,
},
}
// covers responses from /api/prom/label and /api/prom/label/{name}/values
var labelTests = []struct {
actual logproto.LabelResponse
expected string
}{
{
logproto.LabelResponse{
Values: []string{
"label1",
"test",
"value",
},
},
`{"values": ["label1", "test", "value"]}`,
},
}
// covers responses from /api/prom/tail and /api/prom/tail
var tailTests = []struct {
actual loghttp.TailResponse
expected string
}{
{
loghttp.TailResponse{
Streams: []logproto.Stream{
{
Entries: []logproto.Entry{
{
Timestamp: mustParse(time.RFC3339Nano, "2019-09-13T18:32:22.380001319Z"),
Line: "super line",
},
},
Labels: "{test=\"test\"}",
},
},
DroppedEntries: []loghttp.DroppedEntry{
{
Timestamp: mustParse(time.RFC3339Nano, "2019-09-13T18:32:22.380001319Z"),
Labels: "{test=\"test\"}",
},
},
},
`{
"streams": [
{
"labels": "{test=\"test\"}",
"entries": [
{
"ts": "2019-09-13T18:32:22.380001319Z",
"line": "super line"
}
]
}
],
"dropped_entries": [
{
"Timestamp": "2019-09-13T18:32:22.380001319Z",
"Labels": "{test=\"test\"}"
}
]
}`,
},
}
func Test_WriteQueryResponseJSON(t *testing.T) {
for i, queryTest := range queryTests {
var b bytes.Buffer
err := WriteQueryResponseJSON(queryTest.actual, &b)
require.NoError(t, err)
testJSONBytesEqual(t, []byte(queryTest.expected), b.Bytes(), "Query Test %d failed", i)
}
}
func Test_WriteLabelResponseJSON(t *testing.T) {
for i, labelTest := range labelTests {
var b bytes.Buffer
err := WriteLabelResponseJSON(labelTest.actual, &b)
require.NoError(t, err)
testJSONBytesEqual(t, []byte(labelTest.expected), b.Bytes(), "Label Test %d failed", i)
}
}
func Test_MarshalTailResponse(t *testing.T) {
for i, tailTest := range tailTests {
// marshal model object
bytes, err := json.Marshal(tailTest.actual)
require.NoError(t, err)
testJSONBytesEqual(t, []byte(tailTest.expected), bytes, "Tail Test %d failed", i)
}
}
func Test_QueryResponseMarshalLoop(t *testing.T) {
for i, queryTest := range queryTests {
var r loghttp.QueryResponse
err := json.Unmarshal([]byte(queryTest.expected), &r)
require.NoError(t, err)
jsonOut, err := json.Marshal(r)
require.NoError(t, err)
testJSONBytesEqual(t, []byte(queryTest.expected), jsonOut, "Query Marshal Loop %d failed", i)
}
}
func Test_LabelResponseMarshalLoop(t *testing.T) {
for i, labelTest := range labelTests {
var r loghttp.LabelResponse
err := json.Unmarshal([]byte(labelTest.expected), &r)
require.NoError(t, err)
jsonOut, err := json.Marshal(r)
require.NoError(t, err)
testJSONBytesEqual(t, []byte(labelTest.expected), jsonOut, "Label Marshal Loop %d failed", i)
}
}
func Test_TailResponseMarshalLoop(t *testing.T) {
for i, tailTest := range tailTests {
var r loghttp.TailResponse
err := json.Unmarshal([]byte(tailTest.expected), &r)
require.NoError(t, err)
jsonOut, err := json.Marshal(r)
require.NoError(t, err)
testJSONBytesEqual(t, []byte(tailTest.expected), jsonOut, "Tail Marshal Loop %d failed", i)
}
}
func testJSONBytesEqual(t *testing.T, expected []byte, actual []byte, msg string, args ...interface{}) {
var expectedValue map[string]interface{}
err := json.Unmarshal(expected, &expectedValue)
require.NoError(t, err)
var actualValue map[string]interface{}
err = json.Unmarshal(actual, &actualValue)
require.NoError(t, err)
require.Equalf(t, expectedValue, actualValue, msg, args)
}
func mustParse(l string, t string) time.Time {
ret, err := time.Parse(l, t)
if err != nil {
log.Fatalf("Failed to parse %s", t)
}
return ret
}