-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a way to mark http requests as failed
This is done through running a callback on every request before emitting the metrics. Currently only a built-in metric looking at good statuses is possible, but a possibility for future JS based callbacks is left open. The implementation specifically makes it hard to figure out anything about the returned callback from JS and tries not to change any other code so it makes it easier for future implementation, but instead tries to do the bare minimum without imposing any limitations on the future work. Additionally because it turned out to be easy, setting the callback to null will make the http library to neither tag requests with `expected_response` nor emit the new `http_req_failed` metric, essentially giving users a way to go back to the previous behaviour. part of #1828
- Loading branch information
Showing
21 changed files
with
1,200 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
/* | ||
* | ||
* k6 - a next-generation load testing tool | ||
* Copyright (C) 2021 Load Impact | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
package http | ||
|
||
import ( | ||
"context" | ||
"errors" | ||
"fmt" | ||
|
||
"github.com/dop251/goja" | ||
"github.com/loadimpact/k6/js/common" | ||
) | ||
|
||
//nolint:gochecknoglobals | ||
var defaultExpectedStatuses = expectedStatuses{ | ||
minmax: [][2]int{{200, 399}}, | ||
} | ||
|
||
// expectedStatuses is specifically totally unexported so it can't be used for anything else but | ||
// SetResponseCallback and nothing can be done from the js side to modify it or make an instance of | ||
// it except using ExpectedStatuses | ||
type expectedStatuses struct { | ||
minmax [][2]int | ||
exact []int | ||
} | ||
|
||
func (e expectedStatuses) match(status int) bool { | ||
for _, v := range e.exact { | ||
if v == status { | ||
return true | ||
} | ||
} | ||
|
||
for _, v := range e.minmax { | ||
if v[0] <= status && status <= v[1] { | ||
return true | ||
} | ||
} | ||
return false | ||
} | ||
|
||
// ExpectedStatuses returns expectedStatuses object based on the provided arguments. | ||
// The arguments must be either integers or object of `{min: <integer>, max: <integer>}` | ||
// kind. The "integer"ness is checked by the Number.isInteger. | ||
func (*HTTP) ExpectedStatuses(ctx context.Context, args ...goja.Value) *expectedStatuses { //nolint: golint | ||
rt := common.GetRuntime(ctx) | ||
|
||
if len(args) == 0 { | ||
common.Throw(rt, errors.New("no arguments")) | ||
} | ||
var result expectedStatuses | ||
|
||
jsIsInt, _ := goja.AssertFunction(rt.GlobalObject().Get("Number").ToObject(rt).Get("isInteger")) | ||
isInt := func(a goja.Value) bool { | ||
v, err := jsIsInt(goja.Undefined(), a) | ||
return err == nil && v.ToBoolean() | ||
} | ||
|
||
errMsg := "argument number %d to expectedStatuses was neither an integer nor an object like {min:100, max:329}" | ||
for i, arg := range args { | ||
o := arg.ToObject(rt) | ||
if o == nil { | ||
common.Throw(rt, fmt.Errorf(errMsg, i+1)) | ||
} | ||
|
||
if isInt(arg) { | ||
result.exact = append(result.exact, int(o.ToInteger())) | ||
} else { | ||
min := o.Get("min") | ||
max := o.Get("max") | ||
if min == nil || max == nil { | ||
common.Throw(rt, fmt.Errorf(errMsg, i+1)) | ||
} | ||
if !(isInt(min) && isInt(max)) { | ||
common.Throw(rt, fmt.Errorf("both min and max need to be integers for argument number %d", i+1)) | ||
} | ||
|
||
result.minmax = append(result.minmax, [2]int{int(min.ToInteger()), int(max.ToInteger())}) | ||
} | ||
} | ||
return &result | ||
} | ||
|
||
// SetResponseCallback sets the responseCallback to the value provided. Supported values are | ||
// expectedStatuses object or a `null` which means that metrics shouldn't be tagged as failed and | ||
// `http_req_failed` should not be emitted - the behaviour previous to this | ||
func (h *HTTP) SetResponseCallback(ctx context.Context, val goja.Value) { | ||
if val != nil && !goja.IsNull(val) { | ||
// This is done this way as ExportTo exports functions to empty structs without an error | ||
if es, ok := val.Export().(*expectedStatuses); ok { | ||
h.responseCallback = es.match | ||
} else { | ||
//nolint:golint | ||
common.Throw(common.GetRuntime(ctx), fmt.Errorf("unsupported argument, expected http.expectedStatuses")) | ||
} | ||
} else { | ||
h.responseCallback = nil | ||
} | ||
} |
Oops, something went wrong.