mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
tests: fix minor typos
* rename vmsingle test to actually match the mask
* swap got/want arguments, as they were misplaced
Signed-off-by: hagen1778 <roman@victoriametrics.com>
(cherry picked from commit f553628f46
)
This commit is contained in:
parent
790eab3026
commit
da1e89e190
1 changed files with 4 additions and 4 deletions
|
@ -27,8 +27,8 @@ var docData = []string{
|
||||||
"foo_bar 4.00 1652170560000", // 2022-05-10T08:16:00Z
|
"foo_bar 4.00 1652170560000", // 2022-05-10T08:16:00Z
|
||||||
}
|
}
|
||||||
|
|
||||||
// TestVmsingleKeyConceptsQuery verifies cases from https://docs.victoriametrics.com/keyconcepts/#query-data
|
// TestSingleKeyConceptsQuery verifies cases from https://docs.victoriametrics.com/keyconcepts/#query-data
|
||||||
func TestVmsingleKeyConceptsQuery(t *testing.T) {
|
func TestSingleKeyConceptsQuery(t *testing.T) {
|
||||||
tc := apptest.NewTestCase(t)
|
tc := apptest.NewTestCase(t)
|
||||||
defer tc.Close()
|
defer tc.Close()
|
||||||
|
|
||||||
|
@ -109,7 +109,7 @@ func testInstantQuery(t *testing.T, q apptest.PrometheusQuerier, opts apptest.Qu
|
||||||
got := q.PrometheusAPIV1Query(t, "foo_bar", "2022-05-10T08:03:00.000Z", "5m", opts)
|
got := q.PrometheusAPIV1Query(t, "foo_bar", "2022-05-10T08:03:00.000Z", "5m", opts)
|
||||||
want := apptest.NewPrometheusAPIV1QueryResponse(t, `{"data":{"result":[{"metric":{"__name__":"foo_bar"},"value":[1652169780,"3"]}]}}`)
|
want := apptest.NewPrometheusAPIV1QueryResponse(t, `{"data":{"result":[{"metric":{"__name__":"foo_bar"},"value":[1652169780,"3"]}]}}`)
|
||||||
opt := cmpopts.IgnoreFields(apptest.PrometheusAPIV1QueryResponse{}, "Status", "Data.ResultType")
|
opt := cmpopts.IgnoreFields(apptest.PrometheusAPIV1QueryResponse{}, "Status", "Data.ResultType")
|
||||||
if diff := cmp.Diff(got, want, opt); diff != "" {
|
if diff := cmp.Diff(want, got, opt); diff != "" {
|
||||||
t.Errorf("unexpected response (-want, +got):\n%s", diff)
|
t.Errorf("unexpected response (-want, +got):\n%s", diff)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -157,7 +157,7 @@ func testRangeQuery(t *testing.T, q apptest.PrometheusQuerier, opts apptest.Quer
|
||||||
s[16] = apptest.NewSample(t, "2022-05-10T08:17:00Z", 4)
|
s[16] = apptest.NewSample(t, "2022-05-10T08:17:00Z", 4)
|
||||||
want.Data.Result[0].Samples = s
|
want.Data.Result[0].Samples = s
|
||||||
opt := cmpopts.IgnoreFields(apptest.PrometheusAPIV1QueryResponse{}, "Status", "Data.ResultType")
|
opt := cmpopts.IgnoreFields(apptest.PrometheusAPIV1QueryResponse{}, "Status", "Data.ResultType")
|
||||||
if diff := cmp.Diff(got, want, opt); diff != "" {
|
if diff := cmp.Diff(want, got, opt); diff != "" {
|
||||||
t.Errorf("unexpected response (-want, +got):\n%s", diff)
|
t.Errorf("unexpected response (-want, +got):\n%s", diff)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue