Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[query] Fix /m3query returning 500 on invalid query argument #2916

Merged
merged 2 commits into from
Nov 18, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 21 additions & 4 deletions src/cmd/tools/dtest/docker/harness/query_api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,14 @@ type urlTest struct {
func TestInvalidInstantQueryReturns400(t *testing.T) {
coord := singleDBNodeDockerResources.Coordinator()

instantQueryBadRequestTest := []urlTest{
urlPrefix := []string{"", "prometheus/", "m3query/"}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: make the name plural.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


instantQueryBadRequestTest := addPrefixes(urlPrefix, []urlTest{
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: make the name plural.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

{"missing query", queryURL("query", "")},
{"invalid query", queryURL("query", "@!")},
{"invalid time", queryURL("time", "INVALID")},
{"invalid timeout", queryURL("timeout", "INVALID")},
}
})

for _, tt := range instantQueryBadRequestTest {
t.Run(tt.name, func(t *testing.T) {
Expand All @@ -55,7 +57,9 @@ func TestInvalidInstantQueryReturns400(t *testing.T) {
func TestInvalidRangeQueryReturns400(t *testing.T) {
coord := singleDBNodeDockerResources.Coordinator()

queryBadRequestTest := []urlTest{
urlPrefix := []string{"", "prometheus/", "m3query/"}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: make the name plural.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


queryBadRequestTest := addPrefixes(urlPrefix, []urlTest{
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: make the name plural.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think these two tests only differ by their test table contents and so they can be safely merged. Having two separate test methods made me try figuring out what is the principal difference between them.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

{"missing query", queryRangeURL("query", "")},
{"invalid query", queryRangeURL("query", "@!")},
{"missing start", queryRangeURL("start", "")},
Expand All @@ -65,7 +69,7 @@ func TestInvalidRangeQueryReturns400(t *testing.T) {
{"missing step", queryRangeURL("step", "")},
{"invalid step", queryRangeURL("step", "INVALID")},
{"invalid timeout", queryRangeURL("timeout", "INVALID")},
}
})

for _, tt := range queryBadRequestTest {
t.Run(tt.name, func(t *testing.T) {
Expand All @@ -74,6 +78,19 @@ func TestInvalidRangeQueryReturns400(t *testing.T) {
}
}

func addPrefixes(prefixes []string, tests []urlTest) []urlTest {
res := make([]urlTest, 0)
for _, prefix := range prefixes {
for _, t := range tests {
res = append(res, urlTest{
fmt.Sprintf("%v %v", prefix, t.name),
fmt.Sprintf("%v%v", prefix, t.url),
})
}
}
return res
}

func queryURL(key, value string) string {
params := map[string]string{
"query": "foo",
Expand Down
2 changes: 1 addition & 1 deletion src/query/api/v1/handler/prometheus/native/read_common.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ func read(
parseOpts := engine.Options().ParseOptions()
parser, err := promql.Parse(params.Query, params.Step, tagOpts, parseOpts)
if err != nil {
return emptyResult, err
return emptyResult, xerrors.NewInvalidParamsError(err)
}

// Detect clients closing connections.
Expand Down