mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
cedbbdec30
This simplifies debugging tests and makes the test code more clear and concise.
See https://itnext.io/f-tests-as-a-replacement-for-table-driven-tests-in-go-8814a8b19e9e
While at is, consistently use t.Fatal* instead of t.Error* across tests, since t.Error*
requires more boilerplate code, which can result in additional bugs inside tests.
While t.Error* allows writing logging errors for the same, this doesn't simplify fixing
broken tests most of the time.
This is a follow-up for a9525da8a4
75 lines
1.6 KiB
Go
75 lines
1.6 KiB
Go
package vm
|
|
|
|
import (
|
|
"bytes"
|
|
"math"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestTimeSeriesWrite(t *testing.T) {
|
|
f := func(ts *TimeSeries, resultExpected string) {
|
|
t.Helper()
|
|
|
|
var b bytes.Buffer
|
|
_, err := ts.write(&b)
|
|
if err != nil {
|
|
t.Fatalf("error in TimeSeries.write: %s", err)
|
|
}
|
|
result := strings.TrimSpace(b.String())
|
|
if result != resultExpected {
|
|
t.Fatalf("unexpected result\ngot\n%v\nwant\n%v", result, resultExpected)
|
|
}
|
|
}
|
|
|
|
// one datapoint
|
|
f(&TimeSeries{
|
|
Name: "foo",
|
|
LabelPairs: []LabelPair{
|
|
{
|
|
Name: "key",
|
|
Value: "val",
|
|
},
|
|
},
|
|
Timestamps: []int64{1577877162200},
|
|
Values: []float64{1},
|
|
}, `{"metric":{"__name__":"foo","key":"val"},"timestamps":[1577877162200],"values":[1]}`)
|
|
|
|
// multiple samples
|
|
f(&TimeSeries{
|
|
Name: "foo",
|
|
LabelPairs: []LabelPair{
|
|
{
|
|
Name: "key",
|
|
Value: "val",
|
|
},
|
|
},
|
|
Timestamps: []int64{1577877162200, 15778771622400, 15778771622600},
|
|
Values: []float64{1, 1.6263, 32.123},
|
|
}, `{"metric":{"__name__":"foo","key":"val"},"timestamps":[1577877162200,15778771622400,15778771622600],"values":[1,1.6263,32.123]}`)
|
|
|
|
// no samples
|
|
f(&TimeSeries{
|
|
Name: "foo",
|
|
LabelPairs: []LabelPair{
|
|
{
|
|
Name: "key",
|
|
Value: "val",
|
|
},
|
|
},
|
|
}, ``)
|
|
|
|
// inf values
|
|
f(&TimeSeries{
|
|
Name: "foo",
|
|
LabelPairs: []LabelPair{
|
|
{
|
|
Name: "key",
|
|
Value: "val",
|
|
},
|
|
},
|
|
Timestamps: []int64{1577877162200, 1577877162200, 1577877162200},
|
|
Values: []float64{0, math.Inf(-1), math.Inf(1)},
|
|
}, `{"metric":{"__name__":"foo","key":"val"},"timestamps":[1577877162200,1577877162200,1577877162200],"values":[0,-Inf,+Inf]}`)
|
|
}
|